Ok so I\'m working on my homework and am having trouble figuring out how to multiply with SQL and how to get this to order correctly.
I am supposed to \"create a que
Why use GROUP BY at all?
SELECT player_name, player_salary, player_salary*1.1 AS NewSalary FROM players ORDER BY player_salary DESC