Mysql,SqlServer,Oracle主键自动增长的设置_MySQL
程序员文章站
2024-01-21 11:52:34
...
bitsCN.com
参考文献
http://blog.csdn.net/andyelvis/article/details/2446865
1、把主键定义为自动增长标识符类型
MySql
在mysql中,如果把表的主键设为auto_increment类型,数据库就会自动为主键赋值。例如:
create table customers(id int auto_increment primary key not null, name varchar(15));insert into customers(name) values("name1"),("name2");select id from customers;bitsCN.com
上一篇: allow_url_include的应用和解释_PHP
下一篇: [PHP]实用函数9