MySQL - 操作数应包含 1 列

MySQL - Operand should contain 1 column(s)

我有 运行 这个查询通过 SQL 在线验证等等,它说它是有效的......但是 运行 在我的机器上查询本身......它一直给我错误:#1241 - Operand should contain 1 column(s)

SELECT i.pmt_status, i.profile_id, GROUP_CONCAT( DISTINCT (ut.toolid) SEPARATOR  ',' ) AS tools
FROM profile_login i
LEFT JOIN profile_usertools ut ON i.profile_id = ut.profile_id
WHERE i.inactive =0
AND ut.enabled =1
AND i.profile_id = ( 5633, 5665, 5652, 5638, 5641, 5614, 5614, 5632, 5634, 5614, 5650, 5614, 5599 ) 
GROUP BY ut.profile_id

而且我不确定如何解决这个问题。我以为我没看错。

您可以更改查询

AND i.profile_id in ( 5633, 5665, 5652, 5638, 5641, 5614, 5614, 5632, 5634, 5614, 5650, 5614, 5599 )