Question 66
Which two statements are true regarding subqueries? (Choose two.)
Question 67
Examine the commands used to create DEPARTMENT_DETAILSand COURSE_DETAILS:
SQL>CREATE TABLE DEPARTMENT_DETAILS
( DEPARTMENT_ID NUMBER PRIMARY KEY,
DEPARTMENT_NAME VARCHAR2(50),
HOD VARCHAR2(50));
SQL>CREATE TABLE COURSE_DETAILS
(COURSE_ID NUMBER PRIMARY KEY,
COURSE_NAME VARCHAR2(50),
DEPARTMENT_ID VARCHAR2(50));
You want to generate a list of all department IDs along with any course IDs that may have been assigned to them.
Which SQL statement must you use?
Question 68
Examine the description of the EMP_DETAILS table given below:
Which two statements are true regarding SQL statements that can be executed on the EMP_DETAIL TABLE?
Question 69
Examine this query:
SELECT TRUNC (ROUND(156.00,-2),-1) FROM DUAL; What is the result?
Question 70
Which two statements are true regarding the COUNT function? (Choose two.)
