Oracle使用工具PL/SQL Developer建立id自增表步驟

1、建立表:web create table users( id number(12) not null primary key, //設id爲主鍵 username varchar(30) not null, password varchar(50) not null ) 2、建立序列:緩存 create sequence users_seq start with 1 //從1
相關文章
相關標籤/搜索