SQL UNIQUE constraint The UNIQUE constraint uniquely identifies each record in a database table. Note that you can have multiple UNIQUE constraints per table, but you can have only one PRIMARY KEY constraint per table. The following SQL creates a UNIQUE constraint on the "Id_P" column when the "Persons" table is created: CREATE TABLE Persons ( Id_P int NOT NULL, LastName varchar(255) NOT NULL, FirstName varchar(255), Address varchar(255), City varchar(255), UNIQUE (Id_P) ) If you need to name a UNIQUE constraint and define a UNIQUE constraint for multiple columns, use the following SQL syntax: CREATE TABLE Persons ( Id_P int NOT NULL, LastName varchar(255) NOT NULL, FirstName varchar(255), Address varchar(255), City varchar(255), CONSTRAINT uc_PersonID UNIQUE (Id_P,LastName) ) When the table has been created, to create a UNIQUE constraint on the "Id_P" column, use the following SQL: To name a UNIQUE constraint and define a UNIQUE constraint on multiple columns, use the following SQL syntax: To drop a UNIQUE constraint, use the following SQL: In this way, every time you insert a duplicate record, MySQL will prompt Duplicate entry value1-value2 for key uni_que. Of course, you can add ignore to ignore when inserting. Now that there are no duplicate records, we want to start inserting if the record does not exist and updating if it exists. This statement means to insert a value. If there is no record, execute In this section, if the record exists, execute You may also be interested in:
|
<<: WeChat applet realizes multi-line text scrolling effect
>>: How to show or hide common icons on the desktop in Windows Server 2012
There is a requirement for a list containing mult...
Find the problem I wrote a simple demo before, bu...
MAC installs mysql8.0, the specific contents are ...
vue-router has two modes hash mode History mode 1...
Download Download address: https://dev.mysql.com/...
The scroll-view of WeChat applet has more bugs wh...
1. Target environment Windows 7 64-bit 2. Materia...
Due to the limitation of CPU permissions, communi...
This article example shares the specific code of ...
If you want to install some 64-bit applications (...
Written in front Sometimes you need to install so...
Table of contents Preface: accomplish: Summarize:...
Table of contents Preface 1. Iceraven Browser (Fi...
Table of contents Install Docker on CentOS 8 1. U...
1. Download MySQL URL: https://dev.mysql.com/down...