Computer Science, asked by anchalbhandari003, 2 months ago

how we can do multiplication of maximum emp_salary and emp_month in sql?​

Answers

Answered by itzloveaman
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