Question 1
Which clause is used to ensure that only specific rows are deleted in a DELETE statement?
Question 2
What will the following query do?
SELECT employee_id, salary
FROM employees
WHERE salary > (SELECT AVG(salary) FROM employees);
Question 3
What is a sequence in Oracle Database?
Question 4
How can you ensure that data is sorted in descending order in a SQL query?
Question 5
Which type of INSERT statement allows inserting rows into multiple tables using a single SELECT query?
