MySQL database learning-4, integrity constraints

Source: Internet
Author: User
Primary Key Create Table Feng (

Teamno int not null, playerno int not null, Division char (6) Not null, Primary Key (teamno) )

Create Table Feng (

Teamno int not null Primary Key , Playerno int not null, Division char (6) Not null,) composite primary key create table Feng (

Teamno int not null, playerno int not null, Division char (6) Not null, Primary Key (teamno, Playerno ) ) Alternative key (candidate key) Create Table Feng (

Teamno int not null Primary Key , Playerno int not null, Division char (6) Not null, Unique (playerno) ) Create Table Feng (

Teamno int not null Primary Key , Playerno int not null, Division char (6) Not null, Unique (playerno, Division ) ) Foreign key (used in InnoDB) The foreign key Declaration consists of three parts: 1. The column or column combination is a foreign key 2. Specify tables and columns for foreign key reference 3. For details, refer to [cascade (cascade operation), restrict (reject operation), set null (set to null), no action, set default]. If no reference action is specified, the default value is On update restrict On Delete restrict Create Table Feng (

Teamno int not null primary key, playerno int not null, Division char (6) Not null, Foreign key (Division) References othertable (column) On update restrict Unique (playerno ))   Check integrity constraints Create Table players (playerno int not null, sex char (1) not null, check (sex in ('M', 'F '))) create Table players (playerno int not null, birth_date date, sex char (1) not null, check (sex in ('M', 'F ')) Joined smallint not null, Check (Year (birth_date) <joined ), Check (joined <1880 ), ) Create Table players (playerno int not null, birth_date date, sex char (1) not null, Check (sex in ( Select sex from wholetab ) )
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.