Which query will return a list of all construction businesses that have made more than $8 million, in order from the largest number of employees to the fewest?
a. 1 SELECT *
2 FROM 'Company_data'
3 WHERE Business = 'Construction'
4 WHERE Revenue < 8000000 5 ORDER BY number_of_employees DESC
b. 1 SELECT *
2 FROM 'Company_data'
3 WHERE Business = 'Construction'
4 AND Revenue > 8000000
5 ORDER BY number _of_employees DESC
c. 1 SELECT *
2 FROM 'Company_data'
3 WHERE Business = 'Construction', Revenue < 800000θ
4 ORDER BY number_of_employees ASC
d. 1 SELECT
2 FROM 'Company_data'
3 WHERE Business = 'Construction'
4 AND Revenue > 8000000
5 ORDER BY number_of_employees ASC