用SQL语句建立一个与已有自由表相同结构的自由表,要怎么做呢?急~

如题所述

第1个回答  2011-09-03
如果是sqlserver ,语句:select * into newtable from oldtable;
如果是oracle ,语句:
create table newtable as
select * from oldtable本回答被提问者采纳
第2个回答  2011-09-03
select into 语句
相似回答