摘要: 1.not null(非空约束) 2.unique(唯一约束) 唯一约束不可重复,但是可以为NULL,因为NULL不是值,可以认为NULL是不同的 mysql> create table t_test( → id int, → code varchar(255) unique #列级约束 ); my 阅读全文
posted @ 2021-06-02 22:52 tingshu 阅读(93) 评论(0) 推荐(0)