Questions on SQL Part2
Part 2 – Questions on SQL and SQL *Plus 1. A user is setting up a join operation between tables EMP and DEPT. There are some employees in the EMP table that the user wants returned by the query, but the employees are not assigned to departments yet. Which SELECT statement is most appropriate for this user? A. select e.empid, d.head from emp e, dept d; B. select e.empid, d.head from emp e, dept d where e.dept# = d.dept#; C. select e.empid, d.head from emp e, dept d where e.dept# = d.dept# (+); D. select e.empid, d.head from emp e, dept d where e.dept# (+) = d.dept#; 2. Developer ANJU executes the following statement: CREATE TABLE animals AS SELECT * from MASTER.ANIMALS; What is the effect of this statement? A. A table named ANIMALS will be created in the MASTER schema with the same d...