sql 复制记录 利用sql语句复制一条或多条记录
人气:5想了解利用sql语句复制一条或多条记录的相关内容吗,在本文为您仔细讲解sql 复制记录的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:sql,复制一条或多条记录,下面大家一起来学习吧。
insert into article (id,class,title,content) select id,'2',title,content from article where class='1' 如果id为自动编号,就把改为:
insert into article (class,title,content) select '2',title,content from article where class='1'
如果class为数字类型,则去掉单引号.
加载全部内容