A.假设我们使用数据库temp
use temp
create table stu(
age int not null,
score int not null)
//上面就是我已建好的表!
可以使用数据库表的备份,就可以得到与已知表相同表结构拉!代码如下:
insert age,score into newstu from stu
//newstu为新表名!是可以根据你的需要而定拉!
B.create table 新表名(newstu) as select * from 已知表 (stu)
最后希望可以帮上你的忙!(以上的俩种方法,选其一都可以实现你的目的)