PHP 和 MySQL 的大小写敏感问题
我正在尝试通过 PHP 从 MySQL 数据库返回 XML 列表,但遇到了区分大小写的问题。这是我正在使用的当前代码
$query = "SELECT * FROM FOO WHERE FOO LIKE '%$term%' ORDER BY FOO";
在我的数据库中,我的名字列为“Joe”,因此为了返回 XML,我必须输入 $term 作为“Joe”。我不能使用“joe”或“JOE”,但我想使用。我不确定是否可以直接通过 PHP 完成此操作,或者是否需要调整 MySQL 表。
I am trying to return an XML list from a MySQL database via PHP and am having issues with case sensitivity. Here is the current code I'm using
$query = "SELECT * FROM FOO WHERE FOO LIKE '%$term%' ORDER BY FOO";
In my database I have first names listed as "Joe" so in order to return the XML I have to enter $term as "Joe". I can't use "joe" or "JOE" but would like to. I'm not sure if I can accomplish this directly through the PHP or whether I need to adjust the MySQL table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有点作弊的答案,但其他人已经不厌其烦地把这个写出来了。
http://dev.mysql.com/doc/refman/5.0 /en/case-sensitivity.html
A bit of a cheaty answer, but someone else went to the trouble of writing this out already.
http://dev.mysql.com/doc/refman/5.0/en/case-sensitivity.html