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
お役に立てれば。
を使用している場合はContentProvider、の線に沿って何かをします
ContentProvider
getContentResolver().query(CONTENT_URI, null, "name_col = ?", new String[] { "name" }, null);