我的 SQL 查询遇到了一些问题。我得到了这张桌子:
insert into Table1 (date, personssn)
insert ('2012-01-21 12:01:33', '123456789');
insert into Table1 (date, personssn)
insert ('2012-02-22 12:01:33', '123456789');
问题是我想选择日期最接近当前日期的personsn。我一直在使用“CURDATE()”,但似乎无法让它工作。任何人都可以帮助我朝着正确的方向前进吗?
谢谢。