亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

將表數(shù)據(jù)生成Insert腳本 比較好用的生成插入語(yǔ)句的SQL腳本

 更新時(shí)間:2010年05月13日 19:49:44   作者:  
比較好用的生成插入語(yǔ)句的SQL腳本 將表數(shù)據(jù)生成Insert腳本
復(fù)制代碼 代碼如下:

set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
-- =============================================
-- Author: 華嶺
-- Create date: 2008-10-28
-- Description: 將表數(shù)據(jù)生成Insert腳本
-- Demo : exec pCreateInsertScript 'BexmCodeType','dictypeid = 61'
-- =============================================
alter proc [dbo].pCreateInsertScript (@tablename varchar(256),@con nvarchar(400))
as
begin
set nocount on
declare @sqlstr varchar(4000)
declare @sqlstr1 varchar(4000)
declare @sqlstr2 varchar(4000)
select @sqlstr='select ''insert '+@tablename
select @sqlstr1=''
select @sqlstr2='('
select @sqlstr1='values (''+'
select @sqlstr1=@sqlstr1+col+'+'',''+' ,@sqlstr2=@sqlstr2+name +',' from (select case
when a.xtype =173 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar('+convert(varchar(4),a.length*2+2)+'),'+a.name +')'+' end'
when a.xtype =104 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(1),'+a.name +')'+' end'
when a.xtype =175 then 'case when '+a.name+' is null then ''NULL'' else '+'''''''''+'+'replace('+a.name+','''''''','''''''''''')' + '+'''''''''+' end'
when a.xtype =61 then 'case when '+a.name+' is null then ''NULL'' else '+'''''''''+'+'convert(varchar(23),'+a.name +',121)'+ '+'''''''''+' end'
when a.xtype =106 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar('+convert(varchar(4),a.xprec+2)+'),'+a.name +')'+' end'
when a.xtype =62 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(23),'+a.name +',2)'+' end'
when a.xtype =56 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(11),'+a.name +')'+' end'
when a.xtype =60 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(22),'+a.name +')'+' end'
when a.xtype =239 then 'case when '+a.name+' is null then ''NULL'' else '+'''''''''+'+'replace('+a.name+','''''''','''''''''''')' + '+'''''''''+' end'
when a.xtype =108 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar('+convert(varchar(4),a.xprec+2)+'),'+a.name +')'+' end'
when a.xtype =231 then 'case when '+a.name+' is null then ''NULL'' else '+'''''''''+'+'replace('+a.name+','''''''','''''''''''')' + '+'''''''''+' end'
when a.xtype =59 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(23),'+a.name +',2)'+' end'
when a.xtype =58 then 'case when '+a.name+' is null then ''NULL'' else '+'''''''''+'+'convert(varchar(23),'+a.name +',121)'+ '+'''''''''+' end'
when a.xtype =52 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(12),'+a.name +')'+' end'
when a.xtype =122 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(22),'+a.name +')'+' end'
when a.xtype =127 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(6),'+a.name +')'+' end'
when a.xtype =48 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar(6),'+a.name +')'+' end'
when a.xtype =165 then 'case when '+a.name+' is null then ''NULL'' else '+'convert(varchar('+convert(varchar(4),a.length*2+2)+'),'+a.name +')'+' end'
when a.xtype =167 then 'case when '+a.name+' is null then ''NULL'' else '+'''''''''+'+'replace('+a.name+','''''''','''''''''''')' + '+'''''''''+' end'
else '''NULL'''
end as col,a.colid,a.name
from syscolumns a where a.id = object_id(@tablename)
and a.xtype <>189 and a.xtype <>34 and a.xtype <>35 and a.xtype <>36
)t order by colid
select @sqlstr=@sqlstr+left(@sqlstr2,len(@sqlstr2)-1)+') '+left(@sqlstr1,len(@sqlstr1)-3)+')'' from '+@tablename + ' where 1=1 and ' + isnull(@con,'')
print @sqlstr
exec( @sqlstr)
set nocount off
end

相關(guān)文章

  • 數(shù)據(jù)庫(kù)中的內(nèi)容字段被掛馬的替換方法 SQL注入

    數(shù)據(jù)庫(kù)中的內(nèi)容字段被掛馬的替換方法 SQL注入

    有時(shí)候有些數(shù)據(jù)庫(kù)被掛馬了,如果是sqlserver數(shù)據(jù)庫(kù),就可以用下面的方法,不過(guò),這樣的方法比較適合懂sqlserver的朋友,不過(guò)不懂的朋友也可以用,一些數(shù)據(jù)庫(kù)的在線管理程序替換。
    2009-08-08
  • SQL2000 全文索引完全圖解

    SQL2000 全文索引完全圖解

    全文索引是解決海量數(shù)據(jù)模糊查詢(xún)的較好解決辦法。
    2010-03-03
  • VS自帶的SQL server修改密碼并連接使用

    VS自帶的SQL server修改密碼并連接使用

    本文主要介紹了VS自帶的SQL server修改密碼并連接使用,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2023-04-04
  • SQL將一個(gè)表中的數(shù)據(jù)插入到另一個(gè)表中的方法

    SQL將一個(gè)表中的數(shù)據(jù)插入到另一個(gè)表中的方法

    這篇文章介紹了SQL將一個(gè)表中的數(shù)據(jù)插入到另一個(gè)表中的方法,對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2022-02-02
  • 利用sql函數(shù)生成不重復(fù)的訂單號(hào)的代碼

    利用sql函數(shù)生成不重復(fù)的訂單號(hào)的代碼

    利用sql函數(shù)生成不重復(fù)的訂單號(hào)的代碼,需要的朋友可以參考下。
    2011-12-12
  • SQL Server三種鎖定模式的知識(shí)講解

    SQL Server三種鎖定模式的知識(shí)講解

    今天小編就為大家分享一篇關(guān)于SQL Server三種鎖定模式的知識(shí)講解,小編覺(jué)得內(nèi)容挺不錯(cuò)的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來(lái)看看吧
    2019-01-01
  • 理解SQL SERVER中的邏輯讀,預(yù)讀和物理讀

    理解SQL SERVER中的邏輯讀,預(yù)讀和物理讀

    在我的上一篇關(guān)于SQL SERVER索引的博文,有圓友問(wèn)道關(guān)于邏輯讀,預(yù)讀和物理讀的概念.我覺(jué)的還是寫(xiě)一篇博文能把這個(gè)問(wèn)題解釋清楚
    2011-12-12
  • sqlserver 存儲(chǔ)過(guò)程分頁(yè)代碼

    sqlserver 存儲(chǔ)過(guò)程分頁(yè)代碼

    sqlserver 存儲(chǔ)過(guò)程分頁(yè)代碼并說(shuō)明了用vc#調(diào)用上面的存儲(chǔ)過(guò)程
    2010-06-06
  • SQL Server中Check約束的學(xué)習(xí)教程

    SQL Server中Check約束的學(xué)習(xí)教程

    這篇文章主要介紹了SQL Server中Check約束的學(xué)習(xí)教程,包括對(duì)啟用Check約束來(lái)提升性能的介紹,需要的朋友可以參考下
    2015-12-12
  • 和表值函數(shù)連接引發(fā)的性能問(wèn)題分析

    和表值函數(shù)連接引發(fā)的性能問(wèn)題分析

    最近調(diào)優(yōu)過(guò)程中遇到一個(gè)問(wèn)題,就是表值函數(shù)作為連接中的一部分時(shí),可能會(huì)引起麻煩,本文會(huì)簡(jiǎn)單闡述表值函數(shù)是什么,以及為什么使用表值函數(shù)進(jìn)行連接時(shí)會(huì)引發(fā)性能問(wèn)題
    2015-02-02

最新評(píng)論