Microsoft SQL Server 表创建,查看,修改及删除 创建表 创建普通表 use 数据库名称 go create table 表名称( 列1 ) not null, 列2 ) not null, 列3 ) not null, 列4 ), 列5 smalldatetime not null, 列6 text) Go 复制表结构 select * into ta3 from ta1 where 1<>1; select top 0 * into tb4 from ta1; 创建临时表…