Which two statements are true about sequences created in a single instance database? (Choose two.)
The ORDERS TABLE belongs to the user OE. OE has granted the SELECT privilege on the ORDERS table to the user HR.Which statement would create a synonym ORD so that HR can execute the following query successfully?SELECT * FROM ord;
Evaluate this SQL statement:SELECT e.emp_name, d.dept_name -FROM employees e -JOIN departments d -USING (department_id)WHERE d.department_id NOT IN (10, 40)ORDER BY dept_name;The statement fails when executed. Which change fixes the error?
Examine the statement:Create synonym emp for hr.employees;What happens when you issue the statement?
Which two statements are true regarding single row functions? (Choose two.)
Evaluate the following SQL statement:Which statement is true regarding the outcome of the above query?