MySQL中對錶的約束-----主鍵

用主鍵primary key來約束的字段裏的數據不能重複,不能爲空,一張表中最多隻能有一個主鍵web 主鍵能夠在建立表的時候指定,也能夠在建立表完成後追加。 例:建立表的時候直接在字段上指定主鍵 create table tt1( id int unsigned primary key comment '學號不能爲空', name varchar(20) not null); 若是
相關文章
相關標籤/搜索