Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 id INTEGER PRIMARY KEY AUTOINCREMENT 列和 NAME VARCHAR 列的表。而且我知道 NAME 列的值。
如何检索包含该值的行的 id?
我的 SQLite 生锈了,但是这些方面的东西应该可以工作:
SELECT id FROM table WHERE name IS myVar
希望这可以帮助。
如果您正在使用 a ContentProvider,您将按照以下方式做一些事情
ContentProvider
getContentResolver().query(CONTENT_URI, null, "name_col = ?", new String[] { "name" }, null);