Skip to content
Advertisement

sql select everything with maximum date (that that is smaller than a specific date) without subqueries

I would like to write a sql query where I choose all rows grouped by id where the column date is the latest date for this id but still smaller than for example 16-JUL-2021. I would like to do this without using subqueries (in oracle), is that possible? I tried the below but it doesn’t work.

Advertisement

Answer

You can find the maximum date without sub-queries.

You need a sub-query to filter to only show the row(s) with the maximum date:

However, you are still only querying the table once using this technique even though it uses a sub-query.

Note DATE and TABLE are reserved words and cannot be used as unquoted identifiers; it would be better practice to use different names for those identifiers.

You could, equivalently use the RANK or DENSE_RANK analytic functions instead of MAX; ROW_NUMBER, however, does not give the same output as it will only return a single row and will not return all tied rows.

But you still need a sub-query to filter the rows.


If you want to not use a sub-query then you can use:

However, that is not quite the same as it will only get a single row per id and will not return multiple rows tied for the greatest date per id.

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