MySQL database makes a field that is not the primary key unique

Source: Internet
Author: User

In the process of using MySQL DATA, sometimes we need a field that is not the primary key and does not repeat it. In this case, we need to use the SQL UNIQUE constraint.

The following is an introduction from w3school:

The UNIQUE constraint uniquely identifies each record in the database table.

UNIQUE and primary key constraints provide uniqueness guarantee for columns or column sets.

Primary key has automatically defined UNIQUE constraints.

Note that each table can have multiple UNIQUE constraints, but each table can have only one primary key constraint.

The following creates a UNIQUE constraint in the "Id_P" column when creating a "Persons" table:

MySQL:
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))
Details: SQL UNIQUE constraints

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.