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.
我如何知道某个特定名称是否存在于我的表中,以及它存在于哪一行(行号)?
我不知道你的数据库结构,但这里是简单的例子
Cursor c = database.query(TABLE,new String[]{_ID,NAME},NAME + "in(" + queryName + ")",null,null,null};
现在这将返回那些名称与 the 匹配queryName并queryName包含 like的行('abc','pqr'),现在在第二个参数中,我首先传递了列名 is ROW ID,另一个NAME现在通过迭代器。
queryName
('abc','pqr')
ROW ID
NAME