我想查找从特殊记录到最后记录的最后记录数。 Exp:
id name
1 a
2 b
3 c
4 d
名称为b的最后记录数为2
姓名为a的最后记录数为3
答案 0 :(得分:0)
如果您的表按名称排序:
select count(*) from table where name > ?
else如果按其他字段排序,如Id:
select count(*) from table where Id > ?
select count(*) from table where Id > (select Id from table where name = ?)