MySQL SELECT 查询 PHP 数组
我有一个 PHP 数组,我想做的是在 MySQL 查询中使用它来仅选择数组中的数组。
我有这个:
SELECT * FROM table IN ('.implode(',', $array).')
我想需要发生的是我需要在每个数组项周围加上引号才能使其工作。现在它只有一、二、三、四,而它应该是“一”、“二”、“三”、“四”
我该怎么做?或者还有其他方法可以实现我正在寻找的功能吗?
谢谢!
I have a PHP array and what I am trying to do is use that in my MySQL query to select only the ones that are in the array.
I have this:
SELECT * FROM table IN ('.implode(',', $array).')
I guess what needs to happen is I need quotes around each array item for this to work. Right now it just has one, two, three, four where it should be "one", "two", "three", "four"
How could I do that? Or is there another way to do what I am looking for?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这样就可以了,
This would do it,