表格格式
id time_stamp
3 2013-09-05 12:00:00
5 2013-09-06 12:00:00
12 2013-09-07 12:00:00
2 2013-09-08 12:00:00
5 2013-09-09 12:00:00
8 2013-09-10 12:00:00
从上表中,我想在单个 mysql 选择查询语句中选择 min(id)、max(id)、last id、last time_stamp
需要的输出是:
min max last(val) last(time_stamp)
2 12 8 2013-09-09 12:00:00
我使用了以下查询
select id, min(id),max(id), time_stamp from table order by time_stamp limit 1
我弄错了最新的 id 值 3 而不是 8
如果在 SQL fiddle
http://www.sqlfiddle.com/#!2/e9cb1/2/0下面检查这个