PRIMARY KEY
概述
- 主键约束用于唯一标识表中的每一行记
- 每个表只能有一个主键,主键列的值不能重复且不能为空
特点
- 主键列中的每个值必须是唯一的,不允许重复
- 主键列不能包含NULL值
- 每个表只能有一个主键
- 但是,主键可以由单个列或多个列组成(复合主键)
- 数据库系统会自动为主键列创建索引,以加速基于主键的查询操作
- 这个索引通常是一个
B+
树索引
- 这个索引通常是一个
- 主键通常用于定义外键(
Foreign Key
)约束,以维护数据库表之间的参照完整性- 外键引用主键,确保数据的完整性和一致性
- 如果没有显式命名主键约束,数据库系统会自动为主键生成一个默认名称
语法
1 2 3 4 5 6 7 8 9 |
CREATE TABLE table_name ( column1 datatype PRIMARY KEY, column2 datatype, ... ); -- 或者在表创建后添加主键约束 ALTER TABLE table_name ADD PRIMARY KEY (column1); |
1 2 3 4 5 6 |
CREATE TABLE employees ( emp_id INT PRIMARY KEY, emp_name VARCHAR(255), dept_id INT, salary DECIMAL(10, 2) ); |
1 2 3 4 5 6 |
//列级写法 drop table if exists t_usr; create table t_usr( id int(10) primary key, name varchar(32) not null unique ); |
复合主键
- 方法一
1 2 3 4 5 6 7 |
//表级写法-多个字段联合生成复合主键 drop table if exists t_usr; create table t_usr( id int(10), name varchar(32) not null unique, primary key(id,name) ); |
- 方法二
- 显式地为主键约束命名为
t_usr_id_name_pk
- 命名约束有助于在将来修改或删除约束时更容易引用
- 显式地为主键约束命名为
1 2 3 4 5 6 7 |
//生成约束 生成复合主键 drop table if exists t_usr; create table t_usr( id int(10), name varchar(32) not null unique, constraint t_usr_id_name_pk primary key(id,name) ); |
自动主键
1 2 3 4 5 6 7 8 |
//自动主键 drop table if exists t_usr; create table t_usr( id int(10) primary key auto_increment, name varchar(32) not null unique ); insert into t_user(name) values('lifwang'); |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 表_约束-外键10/27
- ♥ 数据处理函数:多行处理函数10/24
- ♥ 表操作_查询-分组 || 分组筛选10/24
- ♥ 表_修改表结构10/26
- ♥ 表_创建 && 操作10/26
- ♥ 表操作_查询-结果去重10/24