表Employee
行的T-SQL返回數包含四列:,最大價值和最高價值本身新創建的列
employee_id, name, salary, months
任務:與salary * months
最大值行返回數而這個最大值,我的最後一次嘗試是:
SELECT
加入
months*salary FROM employee WHERE salary*months = (SELECT MAX(months*salary) FROM Employee)COUNT(months*salary)
不起作用