首页 > 编程 > VBScript > 正文

利用sql语句复制一条或多条记录

2020-07-26 11:55:37
字体:
来源:转载
供稿:网友
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为数字类型,则去掉单引号.
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表