sqlite 找出分组后时间最晚的完整记录
有表如下 CREATE TABLE test ( id INTEGER PRIMARY KEY ,groupid INTEGER DEFAULT 0 ,t INTEGER DEFAULT 0 ,x INTEGER DEFAULT 0 ,y INTEGER DEFAULT 0 )
内容
REPLACE INTO test (id,groupid, t ,x,y)
select 1,1,100,8,8
union all select 2,1,80 ,7,7
union all select 3,1,50,6,6
union all select 4,2,100,5,5
要求结果,找到每个groupid中t最大的记录的完整展示(即id 1,4) 1 1 100 8 8 4 2 100 5 5
现在使用 select * from test group by groupid order by t desc
无法达到要求,
跪求正确的方法
八云★黑岩
11 years, 10 months ago