Oracle 中  :
 怎样建立表空间。
         表序列。
         表这样写哪里错啦啊。
create tablespace xiaoxiao
datafile 'e:\oracle\xiaoxiao.dbf'
size=50M
autoextend on;
//创建一个序列
create sequence Car_Guid increment by 1;//创建一个表create table fp_xiao(guid number not null primary key,
id  varchar2(50) not null,
zfbz varchar2(10),
qdbz varchar2(10),
fplbdm varchar2(20),);//提交
commit;