--请以自己的姓名创建表空间,用sql语句创建如下表,将该表保存到以自己姓名命名的表空间中。
create tablespace my
datafile 'C:\test.dbf'
size 100M
autoextend on next 50M
maxsize 1G;
create table my_table(
name varchar2(20),
age number(2),
sex varchar2(20))
tablespace my;
03-06
1992