SQL数据库中同一张表内数据怎么复制?

2025-03-20 17:52:13
推荐回答(1个)
回答1:

insert into table (字段列表,可省略)
select (字段列表,可省略)
from table where 条件;

很少见过同一张表内复制数据的