从 SQLite 数据库中选择选定的部分
我有一个数据库,其中有一列,其中每行包含“true”或“false”。游标是否可以仅选择该列中值为“true”的行。您将如何编写数据库查询来获得它?
谢谢
I have a database in which I have a column in which each row contains either "true" or "false". Is it possible for a cursor to only select the rows which have the value "true" in that column. How would you write the database query to get that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以与
rawQuery()
-method,它将用您的值替换?
以防止 SQL 注入。Can be used with a
rawQuery()
-method, which will replace the?
with your value to prevent you from SQL-injections.