欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用SQL语句复制记录 博客分类: SQL sql

程序员文章站 2024-03-21 12:13:46
...

insert into person  select * from person where id='21'



如果id为自动编号,就把改为:


insert into person  select deptid,dept,salary,indate,othersalary from person where id='21'

 

相关标签: sql