码迷,mamicode.com
首页 > 其他好文 > 详细

主键约束 primary key

时间:2018-06-13 21:42:18      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:例子   sql   特性   var   出现   not   mys   null   alt   

主键的作用: 可以唯一标识 一条数据,每张表里面只能有一个主键,。
主键特性: 非空且唯一。当表里没有主键的时,第一个出现的非空且为唯一的列,被当成主键。

例子:
create table tb3(
    id int primary key,
    name varchar(20) not null
);


唯一标识 一条数据

#删除主键约束
mysql -> alter table tb3
           -> drop primary key

#添加主键约束
mysql> alter table tb3
         -> add primary key(id);

主键约束 primary key

标签:例子   sql   特性   var   出现   not   mys   null   alt   

原文地址:https://www.cnblogs.com/mariobear/p/9180164.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!