-- 用户登录表create table LOGINUSER( loginid NUMBER not null, pwd VARCHAR2(30) not null, isonline VARCHAR2(30) default 'false' not null)tablespace USERS pctfree 10 initrans 1 maxtrans 255;