当前位置:网站首页>MySQL constraint_ Primary key constraint primary key
MySQL constraint_ Primary key constraint primary key
2022-07-22 17:27:00 【Camellia——】
-- Primary key constraint primary key( characteristic not null+unqiue) Non empty and unique
-- Primary key constraints apply to non business fields : Number id
-- Add a primary key when creating a table
CREATE TABLE stu(
id INT PRIMARY KEY, -- Primary key
NAME VARCHAR(20)
);
-- insert data
INSERT INTO stu(id,NAME)VALUES(1,' Zhang San '),(2,' Li Si ');
-- Delete primary key drop PRIMARY KEY: Can be repeated but still cannot be empty ,not null Constraints will not repeat with the deletion of the primary key
ALTER TABLE stu DROP PRIMARY KEY;
边栏推荐
- 深度解决npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead.
- Polygon chain matic concept and underlying mechanism
- ABAQUS realizes modal calculation of two degree of freedom vibration system
- matlab混频器的实现
- mysql约束之_非空约束
- What if only the mouse displays when win11 is turned on?
- Pytoch deep learning practice lesson 11 (CNN)
- Comparison between symmetric encryption and asymmetric encryption
- Breadth first search
- 论文阅读【6】Autoaugment: Learning augmentation strategies from data
猜你喜欢
Breadth first search
MVC模式和三层架构
Write a sequencer plug-in sequence subtitle (1)
"New capabilities" of rongyun Super Group
DOF depth of field Foundation
Web3流量聚合平台Starfish OS,给玩家元宇宙新范式体验
注意力机制的分类
NFS network file system
How to solve the problem of uncontrollable win11 flashing white screen?
重装Win11系统如何在线一键进行?
随机推荐
How to reinstall win11 system online with one click?
STL resize容量规律集合
GMT 0009-2012数据格式-GO语言操作
GMT 0009-2012 data format go language operation
Network Security Learning (Qianfeng network security notes) 5 -- NTFS security permissions
Activity recommendation | Apache pulsar's exploration and practice in vivo will be broadcast soon
Domain Driven Design
mysql约束之_唯一约束
Win11开机只有鼠标显示怎么办?
微信营销策略,微信营销的优势是什么?
信息安全CISP认证-大家关心哪些问题?
服务器buffer/cache 的产生原因和释放buffer/cache
Force deduction problem: DFS recursion to solve binary tree pruning
Write a sequencer plug-in sequence subtitle (1)
Server network performance tuning cases
This competition is a bit against the sky! Kunpeng application innovation competition openeuler track is fully opened
unity3d-GameObject组件
Cause du tampon / cache du serveur et libération du tampon / cache
ruoyi-antd使用yarn install 报错 : 无法加载文件 C:\Users\Administrator\AppData\Roaming\npm\yarn.ps1
JS的DOM操作——事件代理