服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - 利用sql语句复制一条或多条记录

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

2020-07-24 17:51SQL教程网 Sql Server

本文主要讲解利用sql语句复制一条或多条记录的实现方法,有需要的朋友可以参考下

  1. insert into article (id,class,title,content) select id,'2',title,content from article where class='1'   

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

  1. insert into article (class,title,content) select '2',title,content from article where class='1'   

如果class为数字类型,则去掉单引号.

延伸 · 阅读

精彩推荐