how we can do multiplication of maximum emp_salary and emp_month in sql?
Answers
Answered by
1
Answer:
Notice that all aggregate functions except COUNT(*) ignore the NULL Rating for the ID=5 row. COUNT(*) counts rows, whereas COUNT(col) counts non-null values. So to answer your question, just go ahead and use SUM() and MAX() in the same query.
Similar questions