A brief discussion on the difference between MYSQL primary key constraint and unique constraint

A brief discussion on the difference between MYSQL primary key constraint and unique constraint

Primary key constraint

PRIMARY KRY The primary key is unique. A table can only have one primary key.
AUTO_INCREMENT must be used with the primary key. The primary key must be NOT NULL.
Features: cannot be empty, no duplication

##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:
Insert duplicate value: error
Duplicate entry'2' for key 'PRIMARY'
Select *from stu1;

Unique Constraint

UNIQUE KEY unique constraint can ensure the uniqueness of data. Each data table can have multiple unique constraints.

Unique constraint
No repetition, can be empty

##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:
  • How to create and delete foreign key constraints in MySQL
  • Specific method to add foreign key constraints in mysql
  • MySQL database constraints and data table design principles
  • Detailed explanation of whether the MySQL database should use foreign key constraints
  • MySQL learning: five major constraints of database tables explained in detail for beginners
  • Detailed explanation of the six common constraint types in MySQL
  • MySQL Constraints Super Detailed Explanation
  • MySQL not null constraint case explanation
  • How to set constraints for tables in MySQL database

<<:  Detailed explanation of the relationship between Vue and VueComponent

>>:  Nginx reverse proxy learning example tutorial

Blog    

Recommend

Share some tips on using JavaScript operators

Table of contents 1. Optional chaining operator [...

Installation and configuration method of Zabbix Agent on Linux platform

Here is a brief summary of the installation and c...

Is your website suitable for IE8?

During the Olympic Games, IE 8 Beta 2 will be rele...

Detailed steps for setting up host Nginx + Docker WordPress Mysql

environment Linux 3.10.0-693.el7.x86_64 Docker ve...

Upgrade MySQL 5.1 to 5.5.36 in CentOS

This article records the process of upgrading MyS...

How to dynamically modify container port mapping in Docker

Preface: Docker port mapping is often done by map...

How to lock a virtual console session on Linux

When you are working on a shared system, you prob...

Teach you a trick to achieve text comparison in Linux

Preface In the process of writing code, we will i...

A Deep Dive into the MySQL InnoDB Storage Engine

Preface In MySQL, InnoDB belongs to the storage e...

Practice of dynamically creating dialog according to file name in vue+el-element

Table of contents background accomplish 1. Encaps...

Detailed explanation of Javascript event capture and bubbling methods

Table of contents 1. Event Processing Model 1. Ev...

MySQL 5.7 mysql command line client usage command details

MySQL 5.7 MySQL command line client using command...

About Vue's 4 auxiliary functions of Vuex

Table of contents 1. Auxiliary functions 2. Examp...

Vue + element to dynamically display background data to options

need: Implement dynamic display of option values ...