1、创建表
2、删除表
use product
go
--创建表
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
)
go
create table ProductType
(
typeid int identity(1,1) primary key not null,
typename nvarchar(20) not null
)
--删除表
drop table ProductInfos