1. Identify the capabilities of SELECT statement.
Answer: A, B. The SELECT statement can be used for selection, projection and joining.
2. Determine the capability of the SELECT statement demonstrated in the given query.
SELECT e.ename, d.dname FROM emp e, dept d WHERE e.deptno = d.deptno AND e.sal > 1000;
Answer: A, C, D. Projection is including only the required columns in query, while Selection is selecting only the required data. Joining means combining two tables together through a connecting column.
3. Which of the following clause is used to suppress duplicates in a SELECT statement?
Answer: C, D. Duplicate data can be restricted with the use of DISTINCT or UNIQUE in the SELECT statement.
4. Chose the statements which correctly specify a rule to write a SQL statement
Answer: C.SQL statements are not case sensitive.
5. Determine the output of the below query -
SELECT '5+7' FROM dual;
Answer: B.Oracle treats the values within double quotes as string expressions.
6. Write a query to display employee details (Name, Department, Salary and Job) from EMP table.
SELECT ename, deptno, sal, job FROM emp;
SELECT * FROM emp;
SELECT DISTINCT ename, deptno, sal, job FROM emp;
SELECT ename, deptno, sal FROM emp;
Answer A.Select the required from the tables each separated by a comma.
7. Which of the below queries displays employees' name and new salary after the increment of 1000?
SELECT ename, sal FROM emp;
SELECT ename, sal=sal+1000 FROM emp;
SELECT ename, sal+1000 FROM emp;
SELECT ename, 1000 FROM emp;
Answer: C. Basic arithmetic calculations can be done using the columns in SELECT statements.
8. Determine the output of the below query
SELECT 36/2-5*10 FROM dual;
Answer: B. Multiplication and Division occur before addition and subtraction.
9. Determine the output of the below query
SELECT (100-25)/15*(20-3) FROM dual;
Answer: D. Expression within the brackets are executed before the divisions and multiplications in the expression.
10. Chose the statements which correctly define a NULL value.
Answer: B, D.NULL is NO VALUE but neither same as zero nor as blank or space character.
11. Determine the output of the below query
SELECT sal + NULL FROM emp WHERE empno = 7369;
Answer: B. Any arithmetic operation with NULL results in NULL.
12. Which of the below statements define column alias correctly?
Answer: A, D. Column Alias can be used to name an expression in the SELECT statement.
13. Specify the column alias NEWSAL for the expression containing salary in the below SQL query
SELECT ename, job, sal + 100 FROM emp;
Answer: A, B.Use 'AS' to signify new alias to a column expression.
14. Specify the column alias "New Salary" for the expression containing salary in the below SQL query
SELECT ename, job, sal + 100 FROM emp;
Answer: B, D. Column alias with space and special characters must be enquoted within double quotes.
15. Which command is used to display the structure of a table?
Answer: C.DESCRIBE is used to show the table structure.
16. Predict the output when below statement is executed in SQL* Plus?
DESC emp
Answer: C. DESCRIBE is used to show the table structure along with table columns, their data type and nullity
17. Which of the below statements are true about the DESCRIBE command?
Answer: B.
18. Which of the below alphanumeric characters are used to signify concatenation operator in SQL?
Answer: B.In SQL, concatenation operator is represented by two vertical bars (||).
19. Which of the below statements are correct about the usage of concatenation operator in SQL?
Answer: B, D. Concatenation operator joins two values as an expression.
20. Predict the output of the below query
SELECT ename || NULL FROM emp WHERE empno = 7369
Answer: A. Concatenation with NULL results into same value.
21. Predict the output of the below query
SELECT 50 || 0001 FROM dual
Answer: C. The leading zeroes in the right operand of expression are ignored by Oracle.
22. You execute the below query
SELECT e.ename||' departments's name is:'|| d.dname FROM emp e, dept d where e.deptno=d.deptno;
And get the exception - ORA-01756: quoted string not properly terminated. Which of the following solutions can permanently resolve the problem?
Answer: B. The [q] operator is used to enquote character literals with a quote.
23. Which of the below SELECT statement shows the correct usage of [q] operator?
SELECT e.ename || q'[department's name is]'|| d.dname FROM emp e, dept d WHERE e.deptno = d.deptno;
SELECT e.ename || q['department's name is']|| d.dname FROM emp e, dept d WHERE e.deptno = d.deptno;
SELECT e.ename || q[department's name is]|| d.dname FROM emp e, dept d WHERE e.deptno = d.deptno;
SELECT e.ename || q'(department's name is)'|| d.dname FROM emp e, dept d WHERE e.deptno = d.deptno;
Answer: A
24. Which of the below SELECT statement is used to select all columns of EMP table?
SELECT ALL FROM emp
SELECT # FROM emp
SELECT * FROM emp
SELECT empno,ename,deptno,sal,job,mgr,hiredate FROM emp
Answer: C. The character '*' is used to select all the columns of the table.
25. Which of the below SQL query will display employee names, department, and annual salary?
SELECT ename, deptno, sal FROM emp;
SELECT ename, deptno, sal + comm FROM emp;
SELECT ename, deptno, (sal * 12) Annual_Sal FROM emp;
Answer: C. Use numeric expressions in SELECT statement to perform basic arithmetic calculations.