Skip to content
Advertisement

groupby to check each of their date in oracle sql

I have a table ISIN_TBL which has two fields IDENTIFIER and ALLT_DATE which are of datatype varchar and Date respectively.

There are many ALLT_DATE for each IDENTIFIER in the table. Normally for each IDENTIFIER the ALLT_DATE should be the same. But just to confirm i want to write a sql query to list IDENTIFIER which has has different ALLT_DATE.

I want to modify my below sql query:

Advertisement

Answer

You can use GROUP BY and HAVING to get the exceptsion

If you want the list of dates — and it is not too long — you can use LISTAGG():

Or if there are lots of rows, uses SELECT DISTINCT to get distinct values:

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