i want to query a table where one column is run_date. I want to only retrieve results where run_date is the latest run_date in run_date column. is it possible to have a dynamic query like this. something like:
Select * from Order where DateUpdated = Max(DateUpdated)
This will return you all results with the latest DateUpdated.