如何使用 SQlite Random()
我知道要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道这是否正确,但你可以尝试
i don't know this is correct or not but you can try