概述
I have the following table images:
+----+--------------+
| id | img_path |
+----+--------------+
| 1 | abc_1.jpg |
| 2 | abc_2.jpg |
| 3 | abcde_1.jpg |
| 4 | abcde_2.jpg |
| 5 | abcdef_1.jpg |
+----+--------------+
I would like to select the entries that img_path starts with abc_, so I use the following query:
SELECT id FROM images WHERE img_path LIKE 'abc_%'
But it returns all 5 rows. How do I only returns id = 1 & 2 ( which img_path starts with abc_) ?
解决方案
Found out that _ is a special character. Have to escape with backslashes.
SELECT id FROM images WHERE img_path LIKE 'abc_%'
which returns 2 rows as expected
最后
以上就是清爽夏天为你收集整理的mysql like下划线,带下划线的MySQL LIKE查询的全部内容,希望文章能够帮你解决mysql like下划线,带下划线的MySQL LIKE查询所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复