Using a set function as a value in the WHERE clause  

  • Introductory query:

    • Find the average salary of all employees in the company

    Solution:

       select avg(salary)              
       from employee
    
       avg(salary)   
       ------------- 
        36500.500000