Mysql sets a unique field

Source: Internet
Author: User


Mysql sets a field to be unique. 1. When creating a table, add the uniqueness constraint.
Create table 't_user' ('id' int (11) not null AUTO_INCREMENT, 'username' varchar (18) not null unique, 'Password' varchar (18) not null, primary key ('id') www.2cto.com) ENGINE = InnoDB AUTO_INCREMENT = 1018 default charset = gbk; 2. ADD the unique constraint alter table 't_ user' ADD unique ('username') to the created TABLE; mysql primary key index and unique index 1. the primary key must be a unique index, and the unique index is not necessarily a primary key; 2. A table can have multiple unique indexes, but only one primary key. 3. the primary key column does not allow null values, while the unique index column does. Author k45hifz

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.