📄 create_sequence.sql
字号:
DROP SEQUENCE TOrdersID_SEQ;
DROP SEQUENCE TPhoNumID_SEQ;
DROP SEQUENCE TUserID_SEQ;
DROP SEQUENCE TSendID_SEQ;
DROP SEQUENCE TRecID_SEQ;
create sequence TOrdersID_SEQ
start with 1
increment by 1
maxvalue 999999
nocycle
cache 20
/
create sequence TPhoNumID_SEQ
start with 1
increment by 1
maxvalue 999999
nocycle
cache 20
/
create sequence TUserID_SEQ
start with 1
increment by 1
maxvalue 999999
nocycle
cache 20
/
create sequence TSendID_SEQ
start with 1
increment by 1
maxvalue 999999
nocycle
cache 20
/
create sequence TRecID_SEQ
start with 1
increment by 1
maxvalue 999999
nocycle
cache 20
/
COMMIT;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -