码迷,mamicode.com
首页 > 其他好文 > 详细

23、序列使用 auto_increment

时间:2019-10-15 09:27:54      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:unsigned   into   arch   primary   char   syn   key   auto   incr   

序列使用 auto_increment

  • MySQL 序列是一组整数:1, 2, 3, ...,
  • 一张数据表只能有一个字段自增主键, 如果你想实现其他字段也实现自动增加,就可以使用MySQL序列来实现。
  • 使用序列的方法就是使用 AUTO_INCREMENT 来定义列
  • 使用auto_increment定义的字段,必须同时也定义为primary key

实例:

create table test_increment(
id int unsigned not null auto_increment,
name varchar(20) not null,
date date not null,
primary key (id)
);

insert into test_increment values
(1,‘张三‘,‘2001-09-10‘),
(null,‘李四‘,‘2001-09-10‘);

mysql> select * from test_increment;
+----+------+------------+
| id | name | date       |
+----+------+------------+
|  1 | 张三 | 2001-09-10 |
|  2 | 李四 | 2001-09-10 |
+----+------+------------+
2 rows in set

(1,‘王五‘,‘2001-09-10‘);
1064 - You have an error in your SQL syntax;...

23、序列使用 auto_increment

标签:unsigned   into   arch   primary   char   syn   key   auto   incr   

原文地址:https://www.cnblogs.com/Stephanie-boke/p/11675202.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!