PostgreSQL MySQL 兼容性之 - 自增值
程序员文章站
2022-07-13 10:30:48
...
AUTO_INCREMENT , sequence
MySQL
AUTO_INCREMENT
The AUTO_INCREMENT attribute can be used to generate a unique identity for new rows.
When you insert a new record to the table, and the auto_increment field is NULL or DEFAULT, the value will automatically be incremented.
This also applies to 0, unless the NO_AUTO_VALUE_ON_ZERO SQL_MODE is enabled.
PostgreSQL
serial4
create table test(id serial4);
or
serial8
create table test(id serial8);
or
create sequence seq;
create table test(id int default nextval('seq'::regclass));
上一篇: tensorflow dropout
下一篇: 谈谈Tensorflow的dropout
推荐阅读
-
Mybatis 示例之 SelectKey ,mysql数据库设置自增也需连用生产主键
-
PostgreSQL MySQL 兼容性之 - 时间类型
-
PostgreSQL MySQL 兼容性之 - Gis类型
-
PostgreSQL MySQL 兼容性之 - 自增值
-
PostgreSQL Oracle 兼容性之 - PL/SQL DETERMINISTIC 与PG函数稳定性(immutable, stable, volatile)...
-
MySQL 8 新特性之自增主键的持久化
-
Mysql数据库高级用法之视图、事务、索引、自连接、用户管理实例分析
-
mysql自增值 auto_invrement_increment的查看和修改
-
MySQL使用AUTO_INCREMENT列的表注意事项之update自增列篇_MySQL
-
MySQL使用AUTO_INCREMENT列的表注意事项之update自增列篇_MySQL