在试验schema作用时,随便建立了如下的程序。
SQL> create schema authorization scott
  2  create table dept(
  3  deptno number not null,
  4  dname varchar2(20),
  5  location varchar2(15),
  6  avg_salary number(9,2))
  7  create table emp(ename varchar2(20),
  8  deptno number,
  9  sal number(7,2),
 10  comm number(7,2))
 11  create view deptview as select deptno,dname,location from dept;
方案以创建。
现在请问,成功执行后,想删除创建的这个schema怎么操作,谢谢!