创建表空间
creat tarblespace 表空间名字 datefile 'd:......' size 100M autoextend on next 10M maxsize unliited
建表语法
create table 表名( stu_no varchar(20), stu_no num(3,0) )
常用系统预定角色
connect 临时用户
resource 更为可靠和正式的用户
dba 数据库管理员用它拥有数据库最高权限
数据库对象-表
表用来存放数据:存放同一种数据
设计表时:
1)有哪些属性 ---列
2)列所述的数据类型
例如
学生表:
名字:students
列:
stu_id
stu_name
stu_addr