Accumulate SQL Server---SQL statement action constraints

Source: Internet
Author: User

Description

--PRIMARY KEY constraint (Primary key constraint): The data of the primary key column is required to be unique and is not allowed to be empty.

--Unique Constraint: Requires the column to be unique, allowed to be empty, but only one null value can occur.

--Check Constraint: A column value range limit, formatting restrictions, and so on, such as age-related constraints.

--Default Constraint: The default value of a column, such as our male classmates more, gender default is male.

--FOREIGN KEY constraint (Foreign key): The column that references the primary table is required to establish a relationship between the two tables.

Grammar:

Alter Table Add constraint constraint name constraint type specific constraint description

Example:

--Add a PRIMARY KEY constraintAlter TableStuinfoAdd constraintPk_stunoPrimary Key(Stuno)--add unique key constraintAlter TableStuinfoAdd constraintUq_stuidUnique(Stuid)--Add a DEFAULT constraintAlter TableStuinfoAdd constraintDf_stuaddressdefault('Address Unknown') forstuaddress--Add a Check constraintAlter TableStuinfoAdd constraintCk_stuageCheck(Stuagebetween  the  and  +)--Add a FOREIGN KEY constraintAlter TableStuinfoAdd constraintFk_stunoForeign Key(Stuno)Referencesstuinfo (Stuno)Delete ConstraintAlter TableTable nameDrop constraintConstraint name

Accumulate SQL Server---SQL statement action 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.