You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 25, 2022. It is now read-only.
select*from info where platform='ios'group by bundleID order by uploadTime desclimit0,5
这条语句无法正确执行.
根据代码观察
应该替换成如下sql
select*from (select id,
guid,
bundleID,
version,
build,
name,
uploadTime,
platform,
changelog,
row_number() over (partition by bundleID order by uploadTime desc) numberfrom info
where platform = ?) t
wherenumber between ? and ?
更新了sqlite3以后 首页展示数据发生错误.
sqlite3更新到3.24以后
首页展示数据通过
这条语句无法正确执行.
根据代码观察
应该替换成如下sql