This gives me just one row (the first one):
SELECT BLA FROM BLA WHERE BLA AND ROWNUM < 2
However, I want the most recent date val; I can
In 12c, here's the new way:
select bla from bla where bla order by finaldate desc fetch first 1 rows only;
How nice is that!