1、创建约束
    主键约束、外键约束、unique约束、check约束、default约束

    1. 1、在建表的过程中创建约束
    2. --主键约束
    3. primary key
    4. --外键约束
    5. foreign key reference 主表名(主键列名)
    6. --unique约束
    7. 列名之后加unique
    8. --check约束
    9. 列之后加checkprice1000
    10. --default约束
    11. 列之后加default''
    12. 2、在创建完表之后再创建约束
    13. --主键Id
    14. alter table productinfos add constraint
    15. PK_productinfos primary key(id)
    16. --外键 typeid
    17. alter table productinfos add constraint
    18. FK_productinfos foreign key(typeid) references productType(Typeid)
    19. --unique约束
    20. alter table productinfos add constraint
    21. IX_productinfos_prono unique(prono)
    22. --check约束
    23. alter table productinfos add constraint
    24. CK_productinfos_price check(price<10000)
    25. --default约束
    26. alter table productinfo add constraint
    27. DF_procount default(0) for procount
    28. alter table 表名 add constraint 约束名
    29. primary key(列名)
    30. foreign key(列名) reference 主表(列名)
    31. unique(列名)
    32. check(逻辑表达式)
    33. default(缺省值) for 列名