数据库
首页 > 数据库> > c# 取sqlite库分组的第一行不对

c# 取sqlite库分组的第一行不对

作者:互联网

在项目中采用 select No,TestName from TestItem group by TestName order by No  取每个分组的第一条数据,在sqlite环境中运行语句,能得到正确结果,但在C#程序中得到的是最大行号数据

从而排序也不对,ESR排在最前。

参考此博文:https://www.jb51.cc/sqlite/197642.html

select No,TestName from TestItem group by TestName having min(rowid) order by rowid

采用这个 having 和 order by 就可以得到正确的结果。

 

标签:sqlite,第一行,No,c#,TestName,rowid,order,select
来源: https://www.cnblogs.com/xihong2014/p/15516030.html