Meta interview question

SQL question: given a table find the most recent transaction in the table.

Interview Answer

Anonymous

25 Sept 2021

Select Top 1 FROM ... Order by 1 Desc