Oracle数据库自学的基本操作
create table student_djz (stuId integer)select * from student_djz;--创建用户create user test identified by test;--角色授权grant connect,resource to test;--创建角色create role TESTROLE;--查询角色select * from role_sys_privs where role='TESTROLE';--查询角色selec...