Primary key constraint PRIMARY KRY The primary key is unique. A table can only have one primary key. ##No constraintsCreate table stu0( Id int Name varcahr(50) ) Insert into stu0(name)value("Zhang Sanfeng"); ##Method 1: Create a table and add a primary key constraintCreate table stu1( Id int primary key; Name varchar(50) ) ##Method 2: Create table stu2( Id int, Name varchar(50), Primary key(name) ) Success: insert intostu1(in,name)value("2,张三丰"); Success Test 1: insert into stu(id,name)value(null,"张三丰"); #Failed, prompt cannot be empty Test 2: Unique ConstraintUNIQUE KEY unique constraint can ensure the uniqueness of data. Each data table can have multiple unique constraints. Unique constraint ##Add a unique constraint to the name Create table stu3( Id int primary key, Name varchar(50) unique ) Insert into stu3(id,name)value(1,"Zhang Sanfeng"); Insert into stu3(id,name)value(2,"Zhang Sanfeng"); ERROR 1062(23000):Duplicate entry '张三丰' for key 'name' Insert into stu3(id,name)value(2,"张三"); This concludes this article on the difference between MYSQL primary key constraints and unique constraints. For more information about MYSQL primary key constraints and unique constraints, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the relationship between Vue and VueComponent
>>: Nginx reverse proxy learning example tutorial
Table of contents 1. Optional chaining operator [...
Here is a brief summary of the installation and c...
During the Olympic Games, IE 8 Beta 2 will be rele...
Overview Prometheus is an open source service mon...
environment Linux 3.10.0-693.el7.x86_64 Docker ve...
This article records the process of upgrading MyS...
Preface: Docker port mapping is often done by map...
When you are working on a shared system, you prob...
Preface In the process of writing code, we will i...
Preface In MySQL, InnoDB belongs to the storage e...
Table of contents background accomplish 1. Encaps...
Table of contents 1. Event Processing Model 1. Ev...
MySQL 5.7 MySQL command line client using command...
Table of contents 1. Auxiliary functions 2. Examp...
need: Implement dynamic display of option values ...