Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 DBFlow 中的表中获取随机行?
在 SQLite 中,我只需将查询编写为:
select * from table_name ORDER BY RANDOM() LIMIT 1;
它的等价物是什么?我找不到任何东西,OrderBy 只接受列值。谢谢你。
我的问题是关于 Android 的 DBFlow ORM,而不是 SQLite。