对于sql server 来说如果是新的表,那么这样做select * into newtable from ta;如果是已有的表insert into newtable select * from ta;如果是oracle如果是新的表,那么这样做create table newtable select * from ta;如果是已有的表insert into newtable select * from ta;