PHP/mySQL - 选择关联数组中的 WHERE 多个值
$skuArray = array(00240=>123,00241=>456);
$getSkus = mysql_query("SELECT sku FROM data WHERE sku IN($skuArray)");
我的上面的代码不起作用,我怎样才能让它从数据中选择所有 sku,其中 sku = $skuArray 中的任何键名称? (本例中为 00240 和 00241)
希望这是有道理的,谢谢。
$skuArray = array(00240=>123,00241=>456);
$getSkus = mysql_query("SELECT sku FROM data WHERE sku IN($skuArray)");
My above code doesn't work, how can I make it SELECT all sku's FROM data WHERE sku = any of the key names in $skuArray? (00240 and 00241 in this case)
Hope this makes sense, Thank You.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
您需要将键作为字符串,然后需要将它们括在括号中以进行 SQL 查询。
Try this:
You need to have the keys as strings and you then need to wrap them in parentheses for the SQL query.