1、创建表
    2、删除表

    1. use product
    2. go
    3. --创建表
    4. create table ProductInfos
    5. (
    6. id int identity(1001,1) primary key not null,
    7. prono varchar(50) not null,
    8. proname varchar(50) not null,
    9. typeid int not null,
    10. price decimal(18,2) default (0.0) not null,
    11. procount int default (0) null
    12. )
    13. go
    14. create table ProductType
    15. (
    16. typeid int identity(1,1) primary key not null,
    17. typename nvarchar(20) not null
    18. )
    19. --删除表
    20. drop table ProductInfos