Hi all.
I have a query which gives me a bunch of dates
select trunc(logs.DATETIME) from Logs logs where logs.Id = 123 order by logs.DATETIME
I need this query to get each other table with an offset of 1
what would get date of the next record and get this:
the query that is giving me my request
21.04.2016 22.04.2016 23.04.2016 24.04.2016
want to get this:
21.04.2016 22.04.2016 22.04.2016 23.04.2016 23.04.2016 24.04.2016 24.04.2016 *sysdate*
If I have ORACLE