1、创建表
2、删除表
use productgo--创建表create table ProductInfos(id int identity(1001,1) primary key not null,prono varchar(50) not null,proname varchar(50) not null,typeid int not null,price decimal(18,2) default (0.0) not null,procount int default (0) null)gocreate table ProductType(typeid int identity(1,1) primary key not null,typename nvarchar(20) not null)--删除表drop table ProductInfos
