Hi,
I have a question. Are these "equivalent" statements?
Note: table "h" is defined futher down in the query, which is not shown here. This is just a snippet of the code.
Thank you
I have a question. Are these "equivalent" statements?
Note: table "h" is defined futher down in the query, which is not shown here. This is just a snippet of the code.
Code:
SELECT TOP 1 x.AsOfDate FROM myTable x WHERE x.AsOfDate < h.AsOfDate ORDER BY x.AsOfDate DESC
SELECT MAX(x.AsOfDate) FROM myTable x WHERE x.AsOfDate < h.AsOfDate