2010-05-12 88 views

回答

8

因为它们是相同的结构,那么你可以做


insert into table1 select colum1, column2,... from table2 
6

离开了值关键字

insert into tbl1 
select * from tbl2 
+3

你不想让数据库引擎假定场序,是明确的 – 2010-05-12 18:11:11

15
insert into tablea(id,name) select id,name from tableb; 
4
insert into blacklist 
select * 
from newblacklist 

上传任何单一的数量

insert into blacklist 
select * 
from newblacklist 
where numbers ='123456' 
相关问题