如何在 SQLite android 中使用 Like 查询
谁能告诉我如何在 android SQLite 中使用 LIKE 命令?示例 我有一个包含 3 列“名称”、“电子邮件”和“职位”的表,我想在“电子邮件”列中获取 yahoo 电子邮件地址。 谢谢
Can anyone tell me how to use LIKE command in android SQLite?. Example I have a table with 3 columns Name, Email and Position and I want to get yahoo Email addresses in Email column.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用非常长的方法:
并在
String where
中将其设置为类似于“column_name LIKE pattern”
的字符串请注意,您不会(也不能)在此字符串中包含单词“where”,因为它将被内置到其中。
http://developer.android.com/reference/android/database/sqlite /SQLiteQueryBuilder.html
Use the enormously long method:
And in the
String where
set it to a string similar to"column_name LIKE pattern"
Note that you don't (and can't) include the word "where" in this string because it is going to be built into it.
http://developer.android.com/reference/android/database/sqlite/SQLiteQueryBuilder.html