I have a question about SQL - this is my code so far:
SELECT ename,sal,comm
FROM emp
ORDER BY sal,comm desc;
WHERE comm>0;
I need to display the name, salary and commission for all employees who earn commission, and sort the data out in descending order of salary and commission.
selectstatement should go. – Martin Smith Oct 11 '11 at 12:32