摘要:
create table if not exists auto_increase_id ( id serial, name varchar(10) ); -- alter table auto_increase_id drop function if exists func_trigger_auto 阅读全文
摘要:
创建父表: create table test_id ( id integer ); 创建触发器函数: 说明:触发器每隔1000笔数据会插入一个新表中,当然id 需要是连续不重复的情况. drop function if exists func_trigger_insert_test_id; cre 阅读全文