sql server根据表中数据生成insert语句

本文涉及的产品
云数据库 RDS SQL Server,基础系列 2核4GB
RDS SQL Server Serverless,2-4RCU 50GB 3个月
推荐场景:
简介: 几个收藏的根据数据库生成Insert语句的存储过程[修正版]-- ======================================================--根据表中数据生成insert语句的存储过程--建立存储过程,执行spGenInsertSQL 表名--...
几个收藏的根据数据库生成Insert语句的存储过程[修正版]
复制代码
 
   
-- ======================================================
--
根据表中数据生成insert语句的存储过程
--
建立存储过程,执行spGenInsertSQL 表名
--
感谢playyuer
--
--感谢szyicol
--
======================================================
CREATE proc [ dbo ] . [ spGenInsertSQL ]
(
@tablename varchar ( 256 ))
as
begin
declare @sql varchar ( 8000 )
declare @sqlValues varchar ( 8000 )

set @sql = ' ( '
set @sqlValues = ' values ( '' + '
select @sqlValues = @sqlValues + cols + ' + '' , '' + ' , @sql = @sql + ' [ ' + name + ' ], '
from
(
select case
when xtype in ( 48 , 52 , 56 , 59 , 60 , 62 , 104 , 106 , 108 , 122 , 127 )
then ' case when [ ' + name + ' ] is null then '' NULL '' else ' + ' cast([ ' + name + ' ] as varchar) ' + ' end '
when xtype in ( 58 , 61 )
then ' case when [ ' + name + ' ] is null then '' NULL '' else ' + ''''''''' + ' + ' cast([ ' + name + ' ] as varchar) ' + ' + ''''''''' + ' end '
when xtype in ( 167 )
then ' case when [ ' + name + ' ] is null then '' NULL '' else ' + ''''''''' + ' + ' replace([ ' + name + ' ], '''''''' , '''''''''''' ) ' + ' + ''''''''' + ' end '
when xtype in ( 231 )
then ' case when [ ' + name + ' ] is null then '' NULL '' else ' + ''' N '''''' + ' + ' replace([ ' + name + ' ], '''''''' , '''''''''''' ) ' + ' + ''''''''' + ' end '
when xtype in ( 175 )
then ' case when [ ' + name + ' ] is null then '' NULL '' else ' + ''''''''' + ' + ' cast(replace([ ' + name + ' ], '''''''' , '''''''''''' ) as Char( ' + cast (length as varchar ) + ' ))+ ''''''''' + ' end '
when xtype in ( 239 )
then ' case when [ ' + name + ' ] is null then '' NULL '' else ' + ''' N '''''' + ' + ' cast(replace([ ' + name + ' ], '''''''' , '''''''''''' ) as Char( ' + cast (length as varchar ) + ' ))+ ''''''''' + ' end '
else ''' NULL '''
end as Cols,name
from syscolumns
where id = object_id ( @tablename )
) T
set @sql = ' select '' INSERT INTO [ ' + @tablename + ' ] ' + left ( @sql , len ( @sql ) - 1 ) + ' ) ' + left ( @sqlValues , len ( @sqlValues ) - 4 ) + ' ) '' from ' + @tablename
-- print @sql
exec ( @sql )
end

-- ======================================================
--
根据表中数据生成insert语句的存储过程
--
建立存储过程,执行proc_insert 表名
--
感谢Sky_blue
--
感谢szyicol
--
======================================================
CREATE proc [ dbo ] . [ proc_insert ] ( @tablename varchar ( 256 ))
as
begin
set nocount on
-- declare @tablename varchar(256)
-- set @tablename = 'AD'
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 = 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
-- print @sqlstr
exec ( @sqlstr )
set nocount off
end
复制代码

原文:几个收藏的根据数据库生成Insert语句的存储过程

修正了表中的字段如果是SQL中的关键字(如Order)时,生成的脚本执行会出错的bug

相关实践学习
使用SQL语句管理索引
本次实验主要介绍如何在RDS-SQLServer数据库中,使用SQL语句管理索引。
SQL Server on Linux入门教程
SQL Server数据库一直只提供Windows下的版本。2016年微软宣布推出可运行在Linux系统下的SQL Server数据库,该版本目前还是早期预览版本。本课程主要介绍SQLServer On Linux的基本知识。 相关的阿里云产品:云数据库RDS&nbsp;SQL Server版 RDS SQL Server不仅拥有高可用架构和任意时间点的数据恢复功能,强力支撑各种企业应用,同时也包含了微软的License费用,减少额外支出。 了解产品详情:&nbsp;https://www.aliyun.com/product/rds/sqlserver
目录
相关文章
|
20天前
|
SQL 存储 缓存
SQL Server 数据太多如何优化
11种优化方案供你参考,优化 SQL Server 数据库性能得从多个方面着手,包括硬件配置、数据库结构、查询优化、索引管理、分区分表、并行处理等。通过合理的索引、查询优化、数据分区等技术,可以在数据量增大时保持较好的性能。同时,定期进行数据库维护和清理,保证数据库高效运行。
|
1月前
|
SQL 移动开发 Oracle
SQL语句实现查询连续六天数据的方法与技巧
在数据库查询中,有时需要筛选出符合特定时间连续性条件的数据记录
|
1月前
|
SQL 存储 关系型数据库
添加数据到数据库的SQL语句详解与实践技巧
在数据库管理中,添加数据是一个基本操作,它涉及到向表中插入新的记录
|
1月前
|
SQL 数据挖掘 数据库
SQL查询每秒的数据:技巧、方法与性能优化
id="">SQL查询功能详解 SQL(Structured Query Language,结构化查询语言)是一种专门用于与数据库进行沟通和操作的语言
|
1月前
|
SQL 监控 数据处理
SQL数据库数据修改操作详解
数据库是现代信息系统的重要组成部分,其中SQL(StructuredQueryLanguage)是管理和处理数据库的重要工具之一。在日常的业务运营过程中,数据的准确性和及时性对企业来说至关重要,这就需要掌握如何在数据库中正确地进行数据修改操作。本文将详细介绍在SQL数据库中如何修改数据,帮助读者更好
235 4
|
1月前
|
SQL 关系型数据库 MySQL
SQL批量插入测试数据的几种方法?
SQL批量插入测试数据的几种方法?
95 1
|
1月前
|
SQL 分布式计算 关系型数据库
Hadoop-24 Sqoop迁移 MySQL到Hive 与 Hive到MySQL SQL生成数据 HDFS集群 Sqoop import jdbc ETL MapReduce
Hadoop-24 Sqoop迁移 MySQL到Hive 与 Hive到MySQL SQL生成数据 HDFS集群 Sqoop import jdbc ETL MapReduce
87 0
|
1月前
|
SQL 分布式计算 关系型数据库
Hadoop-23 Sqoop 数据MySQL到HDFS(部分) SQL生成数据 HDFS集群 Sqoop import jdbc ETL MapReduce
Hadoop-23 Sqoop 数据MySQL到HDFS(部分) SQL生成数据 HDFS集群 Sqoop import jdbc ETL MapReduce
40 0
|
1月前
|
SQL 分布式计算 关系型数据库
Hadoop-22 Sqoop 数据MySQL到HDFS(全量) SQL生成数据 HDFS集群 Sqoop import jdbc ETL MapReduce
Hadoop-22 Sqoop 数据MySQL到HDFS(全量) SQL生成数据 HDFS集群 Sqoop import jdbc ETL MapReduce
48 0
|
1月前
|
SQL
使用SQL进行集合查询和数据维护
使用SQL进行集合查询和数据维护
38 0
下一篇
无影云桌面