⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 create_sequence.sql

📁 通过串口连接短信猫进行短信的群发、单发、接收;管理群发订单、用户账户等
💻 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 + -