Skip to content
Advertisement

How to replace the NULL value of the last row of a column with ‘Grand total’ while retaining ‘Total’ replacing NULL value in the same column?

Below is the table created and inserted values in it:

Now I ran the following query:

When you look at the query result, the last row of the Gender column has the value ‘Total’ in it.

I want to replace ‘Total’ with ‘Grand Total’ only in the last row of Gender column while keeping ‘Total’ text in the other rows of Gender column.

Is there any possibility to achieve that ?

If so, then what is the simplest possible way to achieve it ?

Advertisement

Answer

You can use GROUPING_ID() for it:

DBFIDDLE

EDIT: In the comment of the question is noted that the order of the result should be specified, to make sure it is correct.

This query can be ordered like this, to make sure totals are below the details.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement