SQL PRIMARY KEY Instance Tutorial

Source: Internet
Author: User
Tags sql primary key

SQL PRIMARY KEY Instance Tutorial

Database PRIMARY KEY constraint
The PRIMARY KEY constraint uniquely identifies each record in a database table.

The primary key must contain unique values.

Primary key columns cannot contain null values.

Each table should have a primary key, and each table can have only one primary key.


-------------------------------------------------- ------------------------------

Database primary KEY constraint creation table
When the following SQL creates a "p_id" column on a primary key, "person" is creating a table:

MySQL's:

CREATE TABLE Persons
(
p_id int not null,
LastName varchar (255) is not null 
 , FirstName varchar (255), Address
varchar (255), City
varchar (255),
PRIMARY KEY (p_id)
)
 
   
   
Database primary KEY constraint changes table
to create a primary key constraint, the table is already established, using the following sql:

p_id;

Pre>alter TABLE Persons ADD CONSTRAINT pk_personid PRIMARY KEY (p_id,lastname)
   
 look at mysql<
   /pre> 
 

MySQL:

 ALTER table P Ersons DROP PRIMARY KEY 

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.