「PostgreSQL」シーケンス(sequence)のサンプル
環境
PostgreSQL 9.6.5
Windows 10 Home 64bit
操作方法
1.シーケンスの作成
create sequence cft start with 1;
2.シーケンスの確認
select nextval('cft');
Coding Changes the World
環境
PostgreSQL 9.6.5
Windows 10 Home 64bit
操作方法
1.シーケンスの作成
create sequence cft start with 1;
2.シーケンスの確認
select nextval('cft');