如何用T_SQL语句创建一个与已知表的表结构相同的表

2020-05-22 科技 114阅读
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)
最后希望可以帮上你的忙!(以上的俩种方法,选其一都可以实现你的目的)
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com