(in)函数不能处理mysql中的连接

zqry0prt  于 2021-06-24  发布在  Mysql
关注(0)|答案(1)|浏览(332)
SELECT mp.institute_id,
    mp.category_id,
    mp.mapp_branch_id,
    mp.mapp_product_id
FROM mapping_with_products mp
LEFT JOIN categories cat ON cat.id = mp.category_id
WHERE mp.mapp_product_id IN ( 5 ,12 ,34 ,90 ,123 )
ORDER BY mp.category_id DESC

(in)函数不使用联接,执行查询但不显示数据,我已经选中了,数据Map为给定的id

pvcm50d1

pvcm50d11#

in函数没有问题,只需在不使用where子句的情况下运行查询,然后检查是否获得mp.mapp\u product\u id.5、12、34、90、123的以下值

相关问题