如何用sql语句查询表中的数据,同时把查询到的数据再插入到该表中? 就是把表中的数据再表中复制。

2024-11-13 04:20:13
推荐回答(2个)
回答1:

insert into [table] select * from [table] where 条件

回答2:

insert into table

select * from table