利用sql语句复制一条或多条记录
更新时间:2008年08月01日 23:50:10 作者:
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为数字类型,则去掉单引号.
如果id为自动编号,就把改为:
insert into article (class,title,content) select '2',title,content from article where class='1'
如果class为数字类型,则去掉单引号.
相关文章
编写可以打开文本文件并打乱在该文件中所找到的单词顺序的vbs脚本
编写可以打开文本文件并打乱在该文件中所找到的单词顺序的vbs脚本...2007-03-03
最新评论