谁能告诉我如何在android SQLite中使用LIKE命令?示例我有一个包含3列名称,电子邮件和位置的表格,我想在电子邮件列中获取雅虎电子邮件地址。 谢谢
答案 0 :(得分:1)
使用极长的方法:
SQLiteQueryBuilder.buildQueryString(boolean distinct, String tables, String[] columns, String where, String groupBy, String having, String orderBy, String limit)
并在String where
中将其设置为类似于"column_name LIKE pattern"
的字符串
请注意,您不会(也不能)在此字符串中包含单词“where”,因为它将内置在其中。
http://developer.android.com/reference/android/database/sqlite/SQLiteQueryBuilder.html