数据库
首页 > 数据库> > MySQL – 创建表时一起使用时“PRIMARY KEY”,“UNIQUE KEY”和“KEY”的含义

MySQL – 创建表时一起使用时“PRIMARY KEY”,“UNIQUE KEY”和“KEY”的含义

作者:互联网

任何人都可以解释PRIMARY KEY,UNIQUE KEY和KEY的用途,如果它在MySQL中的一个CREATE TABLE语句中放在一起?

CREATE TABLE IF NOT EXISTS `tmp` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `uid` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `tag` int(1) NOT NULL DEFAULT '0',
  `description` varchar(255),
  PRIMARY KEY (`id`),
  UNIQUE KEY `uid` (`uid`),
  KEY `name` (`name`),
  KEY `tag` (`tag`)
) ENGINE=InnoDB AUTO_INCREMENT=1 ;

如何将此查询转换为MSSQL?

解决方法:

密钥只是一个普通的索引.简化的一种方法是将其视为图书馆的卡片目录.它指向正确的方向MySQL.

唯一键也用于提高搜索速度,但它有一个约束,即不能有重复项(没有两个x和y,其中x不是y,x == y).

manual解释如下:

A UNIQUE index creates a constraint such that all values in the index
must be distinct. An error occurs if you try to add a new row with a
key value that matches an existing row. This constraint does not apply
to NULL values except for the BDB storage engine. For other engines, a
UNIQUE index permits multiple NULL values for columns that can contain
NULL. If you specify a prefix value for a column in a UNIQUE index,
the column values must be unique within the prefix.

主键是“特殊”唯一键.它基本上是一个唯一的密钥,除了它用于识别某些东西.

该手册解释了索引的使用方式:here.

在MSSQL中,概念是相似的.有索引,唯一约束和主键.

未经测试,但我相信MSSQL等价物是:

CREATE TABLE tmp (
  id int NOT NULL PRIMARY KEY IDENTITY,
  uid varchar(255) NOT NULL CONSTRAINT uid_unique UNIQUE,
  name varchar(255) NOT NULL,
  tag int NOT NULL DEFAULT 0,
  description varchar(255),
);

CREATE INDEX idx_name ON tmp (name);
CREATE INDEX idx_tag ON tmp (tag);

编辑:上面的代码测试是正确的;但是,我怀疑这样做有更好的语法.我已经使用过SQL服务器了一段时间,显然我已经忘记了很多:).

标签:sql-server,mysql,primary-key,unique-key
来源: https://codeday.me/bug/20190925/1817380.html