时间:2024-02-07 12:09作者:下载吧人气:28
序列绑定字段与不绑定字段的区别
drop sequence if exists test_id_seq;
create sequence test_id_seq;
drop table if exists test;
create table test(id int default nextval(‘test_id_seq’), name text);
alter sequence test_id_seq owned by test.id;
网友评论