标签: android sql sqlite
我想在我的数据库中提取一个已下载值为0的随机条目。我该怎么做?
答案 0 :(得分:1)
SELECT * FROM table WHERE downloaded=0 ORDER BY RANDOM() LIMIT 1;