Android SQLite 搜索一栏

发布于 2024-10-28 02:53:25 字数 151 浏览 2 评论 0原文

我的代码可以给我一个数字,并且我有一个 Android SQLite 表。

第一列有很多数字,我需要将从代码中获得的数字与表中的这些数字进行比较,并找到与从代码中获得的数字相匹配的数字。一旦找到它,我需要更新该行......

最好的方法是什么......?

I have code that gives me a number, and I have an Android SQLite table.

The first column has a lots of numbers and I need to compare the number that I got from the code to these numbers in the table and find the one that matches my number that I got from the code. Once I find it, I need to update the row.....

what is the best way to do it.....?

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

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

发布评论

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

评论(1

此岸叶落 2024-11-04 02:53:25

您的问题缺乏详细信息,例如保存数值的列的名称以及找到记录时更新的列,但您将使用类似于以下内容的内容:

UPDATE your_table
   SET column_1 = ?,
       column_2 = ?
 WHERE number_column = number_from_code

Your question lacks details, like the name of the column holding the number value and the column(s) being updated when the record is found, but you'll be using something that resembles:

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