sql语句将查询结果作为新表插入

2024-11-07 18:30:25
推荐回答(2个)
回答1:

首先创建好新表,然后
insert into new_table
select * from old_table where

回答2:

create table newTable select * from oldTable where ....