在 MySQL 中,SERIAL 和 AUTO_INCREMENT 之間有什麼區別?
在 MySQL 中,SERIAL 和 AUTO_INCREMENT 用於定義一個欄位的預設值序列。但它們在技術上是不同的。
AUTO_INCREMENT 屬性支援除了 BIT 和 DECIMAL 以外的所有數值資料型別。每個表只能有一個 AUTO_INCREMENT 欄位,並且在某個表中由 AUTO_INCREMENT 欄位生成的序列不能在任何其他表中使用。
此屬性要求在該欄位上存在唯一索引,以確保該序列沒有重複值。此序列預設從 1 開始,每次插入時增加 1。
示例
mysql> Create Table Student(Student_id INT PRIMARY KEY NOT NULL AUTO_INCREMENT, Name Varchar(20)); Query OK, 0 rows affected (0.18 sec)
以上查詢宣告 Student_id AUTO_INCREMENT。
mysql> Insert Into Student(Name) values('RAM'),('SHYAM');
Query OK, 2 rows affected (0.06 sec)
Records: 2 Duplicates: 0 Warnings: 0
mysql> Select * from Student;
+------------+-------+
| Student_id | Name |
+------------+-------+
| 1 | RAM |
| 2 | SHYAM |
+------------+-------+
2 rows in set (0.00 sec)
mysql> Show Create Table Student\G
*************************** 1. row ***************************
Table: Student
Create Table: CREATE TABLE `student` (
`Student_id` int(11) NOT NULL AUTO_INCREMENT,
`Name` varchar(20) DEFAULT NULL,
PRIMARY KEY (`Student_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1
1 row in set (0.00 sec)另一方面,SERIAL DEFAULT VALUE 是 NOT NULL AUTO_INCREMENT UNIQUE KEY 的縮寫。整型數值型別(例如 TINYINT、SMALLINT、MEDIUMINT、INT 和 BIGINT)支援 SERIAL DEFAULT VALUE 關鍵字。
示例
mysql> Create Table Student_serial(Student_id SERIAL, Name VArchar(20));
Query OK, 0 rows affected (0.17 sec)
mysql> Insert into Student_serial(Name) values('RAM'),('SHYAM');
Query OK, 2 rows affected (0.12 sec)
Records: 2 Duplicates: 0 Warnings: 0
mysql> Select * from Student_serial;
+------------+-------+
| Student_id | Name |
+------------+-------+
| 1 | RAM |
| 2 | SHYAM |
+------------+-------+
2 rows in set (0.00 sec)
mysql> Show Create Table Student_serial\G
*************************** 1. row ***************************
Table: Student_serial
Create Table: CREATE TABLE `student_serial` (
`Student_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`Name` varchar(20) DEFAULT NULL,
UNIQUE KEY `Student_id` (`Student_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1
1 row in set (0.00 sec)
廣告
資料結構
網路
關係型資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP