从 SQLite 数据库中选择选定的部分

发布于 2024-12-01 01:47:49 字数 92 浏览 0 评论 0原文

我有一个数据库,其中有一列,其中每行包含“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 技术交流群。

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

发布评论

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

评论(1

一向肩并 2024-12-08 01:47:49
SELECT your_column, other_col
FROM your_table
WHERE your_column = ?

可以与 rawQuery()-method,它将用您的值替换 ? 以防止 SQL 注入。

SELECT your_column, other_col
FROM your_table
WHERE your_column = ?

Can be used with a rawQuery()-method, which will replace the ? with your value to prevent you from SQL-injections.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文