1.
If a table named MY_TAB contains 100 rows and the following statement is executed: What will happen?
2.
Given an EMPLOYEES table and a SALES table, a user wants to produce a list of all employees and their associated revenue, even if no revenue exists. Which SQL statement will produce the desired list?
3.
Which command will delete all rows from a table without generating log records?
4.
Which function can be used to obtain values from XML documents that are to be inserted into one or more tables?
5.
User USER1 wants to retrieve records from a table named EMPLOYEE that satisfy at least one of the following criteria: -The employee's hire date (HIREDATE) is before 1999 and the employee's salary (SALARY) is less than $40,000.00 a year. -The employee has attended university Which SQL statement will accomplish this?
6.
Which SQL statement will retrieve the employee number (EMPNO), hire date (HIREDATE), and salary (SALARY) for each employee from a table named EMPLOYEE who was hired before 1998 and earns a salary of less than $35,000.00 per year?
7.
If the following result set is desired: Which SQL statement must be executed?
8.
Which statement about INSERT operations is true?
9.
Which statement about application-period temporal tables is true?
10.
Which SQL statement should be used to select the minimum and maximum salaries (SALARY), by job code (JOB), from a table EMPLOYEE?