SQL Tutorial ROLLUP and CUBE

rollup( ), cube( ) clause are used to calculate subtotal, grand total. it will generate subtotals for all combinations of the dimensions specified.

SQL Having Clause

The HAVING clause used because we are not allowed to use WHERE clause after GROUP BY clause. If we want to restrict something in a table then we are using HAVING clause followed by GROUP BY clause.

SQL GROUP BY clause

Group by clause is used to arrange similar data items into set of logical groups. If a column having same values in multiple rows then it will arrange those rows into a group. We can also use group by clause without using group functions.