Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to set a field unique in Mysql

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article is about how to set a field in Mysql is unique, the editor feels very practical, so share with you to learn, I hope you can learn something after reading this article, do not say much, follow the editor to have a look.

Mysql sets a field that is unique

1. Add uniqueness constraints when building tables

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

two。 Add uniqueness constraints to tables that have already been built

ALTER TABLE `t _ user` ADD unique (`username`)

Primary key index and unique index

1. The primary key must be the unique index, and the unique index is not necessarily the primary key.

two。 There can be multiple unique indexes in a table, but only one primary key

3. Null values are not allowed for primary key columns, while null values are allowed for unique index columns.

The above is the only way to set a certain field in Mysql, and the editor believes that there are some knowledge points that we may see or use in our daily work. I hope you can learn more from this article. For more details, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report