当前位置: 代码迷 >> SQL >> 用SQL话语复制记录
  详细解决方案

用SQL话语复制记录

热度:61   发布时间:2016-05-05 13:41:39.0
用SQL语句复制记录

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



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


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

?

  相关解决方案