博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL复制表
阅读量:5318 次
发布时间:2019-06-14

本文共 714 字,大约阅读时间需要 2 分钟。

View Code
--创建test_employee_info临时表结构,不保留关联关系 select * into test_employee_info from employee_info where 1<>1; declare @num int set @num=1 while @num<6 begin insert into test_employee_info select employee_code+'p'+cast(@num as varchar(1)),employee_name,department_code,entry_date,transfer_date,leaving_date,post,post_status,status,change_post_date,margin_total_amount,margin_settlement_date,margin_status,employee_margin_approve_id,updated_by,updated_date,create_by,create_date from employee_info set @num=@num+1 end go --将临时表的数据导入到employee_info insert into employee_info select * from test_employee_info; --DROP临时表 drop table test_employee_info

转载于:https://www.cnblogs.com/sumflower/archive/2012/03/13/2394151.html

你可能感兴趣的文章
Linux无线工具详解(Wireless tools for Linux)
查看>>
RSS阅读器
查看>>
微信电脑版不断崩溃
查看>>
js链式调用
查看>>
数字统计
查看>>
20180620小测
查看>>
聊聊setTimeout和setInterval线程
查看>>
归并排序(转)
查看>>
Python_Xlrd&Xlwt
查看>>
项目执行过程
查看>>
SCM基础之过程描述
查看>>
不喜欢写测试的朋友看过来,与你分享写测试的经验 做一个爱写测试的程序员...
查看>>
介绍一下Objective-c常用的函数,常数变量
查看>>
windows编译libevent时报告“缺少print_winsock_errors.obj”的解决
查看>>
.cue 文件格式
查看>>
【转】基于 Android NDK 的学习之旅-----数据传输(引用数据类型)
查看>>
点击User Profile Service Application 报错
查看>>
VS2010插件之NuGet
查看>>
1.单机部署hadoop测试环境
查看>>
[设计模式]桥接模式
查看>>