如何使用 SQlite Random()

发布于 2024-10-21 05:27:46 字数 323 浏览 0 评论 0原文

我知道要在 SQlite 中选择随机行我需要命令

SELECT * FROM 表 ORDER BY RANDOM() LIMIT X

但如何在 xcode 中使用它来设置和显示给定值?

我正在 Apple 示例代码 iPhoneCoreDataRecipes 上进行练习,以便更好地感受 Random() 命令。对于本例,我想找到一个随机食谱,然后使用 nameLabel.text 将其显示给用户。

关于如何设置这个有什么想法吗?

I'm aware that to select a random row in SQlite I need the command

SELECT * FROM table ORDER BY RANDOM() LIMIT X

but how do I use this within xcode to set and display the given value?

I'm practicing this on the Apple sample code iPhoneCoreDataRecipes to get a better feel of the Random() command. For this instance, I want to find a random recipe and then display it to the user with a nameLabel.text.

Any thoughts on how to set this up?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那小子欠揍 2024-10-28 05:27:46

我不知道这是否正确,但你可以尝试

int randomNumber = arc4random() % Limit;
"SELECT * FROM table ORDER BY randomNumber  LIMIT X"

i don't know this is correct or not but you can try

int randomNumber = arc4random() % Limit;
"SELECT * FROM table ORDER BY randomNumber  LIMIT X"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文