DB2_SQL_Interview_Questions_Experienced
DB2_SQL_Interview_Questions_Experienced
Page 1
Important DB2 SQL Query Interview Questions & Answers for Experienced Professionals
14. Employees earning above average salary:
SELECT emp_id, salary FROM employee WHERE salary > (SELECT AVG(salary) FROM employee);
Page 2