adspace
Answer Posted / Rohit Kumar Chaudhary
The SQL functions `HAVING`, `GROUP BY`, and `GROUP` are used together to filter and group data in a query. Here's an example:n```sqlnSELECT department, COUNT(employee_id) AS total_employeesnFROM employeesnGROUP BY departmentnHAVING total_employees > 50;n``` In this example, the `GROUP BY` clause groups the data by department, and the `HAVING` clause filters the groups that have more than 50 employees.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain system functions or built-in functions? What are different types of system functions?
Does view occupy space?
What are wait types?
Equi join and non equi join is possible with sql server?
what is the Ticketing tool used in Wipro technologies at Bangalore...???
Why use identity in sql server?
How do I create a trace in sql server?
How can we solve concurrency problems?
What is subquery? Explain the properties of a subquery?
Why and when do stored procedure recompile?
do you know how to configure db2 side of the application? : Sql server database administration
What is a scheduled job or what is a scheduled task?
Explain “row_number()” in sql server with an example?
What is sql or structured query language?
What is the difference between for xml raw and for xml auto?