Meta Interview Question

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

Interview Answer

Anonymous

Sep 25, 2021

Select Top 1 FROM ... Order by 1 Desc