Answers for "group by is always tied together with an aggrigate function in sql"

SQL
0

group by is always tied together with an aggrigate function in sql

SELECT SUBJECT, YEAR, Count(*)
FROM Student
GROUP BY SUBJECT, YEAR;
Posted by: Guest on March-13-2021
0

group by is always tied together with an aggrigate function in sql

SELECT NAME, SUM(SALARY) FROM Employee 
GROUP BY NAME
HAVING SUM(SALARY)>3000;
Posted by: Guest on March-13-2021

Code answers related to "group by is always tied together with an aggrigate function in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language