Scott issues the SQL statements:<br /> CREATE TABLE dept<br /> (deptno NUMBER(2),<br /> dname VARCHAR2(14),<br /> loc VARCHAR2(13)};<br /> GRANT SELECT<br /> ON DEPT<br /> T0 SUE;<br /> If Sue needs to select from Scott's DEPT table, which command should she use?()<p> Scott issues the SQL statements:<br /> CREATE TABLE dept<br /> (deptno NUMBER(2),<br /> dname VARCHAR2(14),<br /> loc VARCHAR2(13)};<br /> GRANT SELECT<br /> ON DEPT<br /> T0 SUE;<br /> If Sue needs to select from Scott's DEPT table, which command should she use?()</p>
A、A.SELECT*FROMDEPT;
B、B.SELECT*FROMSCOTT.DEPT;
C、C.SELECT*FROMDBASCOTTDEPT;
D、D.SELECT*FROMALL_USERSWHEREUSER_NAME=';SCOTT';ANDTABLENAME=';DEPT';;