我有一张这样的桌子
id type type_id cust ip_address datetime
395 Category 5 0 119.63.196.29 2012-11-27 00:34:21
394 Cart 812 0 84.208.217.178 2012-11-27 00:31:48
393 Cart 812 0 84.208.217.178 2012-11-27 00:31:41
392 Cart 812 0 84.208.217.178 2012-11-27 00:31:35
391 Product 812 0 84.208.217.178 2012-11-27 00:31:34
我想选择 4 行,按 id desc 排序,它们具有不同的 type+type_id 数据。
因此查询的结果将删除 id 393 和 392,因为 type 和 type_id 组合已经在 id 394 中。
伪代码: select * from table where type and type_id is distinct from resultset, order by id desc limit 4