我试图找到一种方法来显示事件表中举行的最后一个事件(最后日期和时间),同时显示该事件的所有列而不使用 ORDER BY。
例如:
SELECT * from Events
where dateheld in (select max(dateheld) from events)
AND starttime in (select max(starttime) from events)
当我输入 MAX starttime 时,它什么也不显示。当我输入 MIN starttime 时,它可以工作,但会显示该日期的最早时间而不是最晚时间。