In the table below, how do I get just the most recent record of id=1 based on the signin column and not all 3 records?
id=1
+----+--
SELECT * FROM (SELECT * FROM tb1 ORDER BY signin DESC) GROUP BY id;