how to use group by with offset and fetch rows only on oracle
I want to to make sum of amount of certain rows using offset clause and fetch next rows only and using group by but it gives error, i used the below query select sum(amount), column1 from table1 where column1 = ‘000000000’ and column2 =0 group by column1 order by transaction_date desc offset 12 rows fetch… Read More how to use group by with offset and fetch rows only on oracle