Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/lsp4you/public_html/connect.php on line 2 LSP4YOU - Learner's Support Publications

Select Query - 3

Q:8
Display the details of the employee with Total salary is greater than the average salary.


SQL> SELECT EMPNO,NAME, TOTAL FROM EMPLOYEE WHERE TOTAL > (SELECT AVG(TOTAL) FROM EMPLOYEE);

     EMPNO NAME                           TOTAL
---------- ------------------------- ----------
         1 SAYAN                          70000
         5 MURUGAN R                      84000