i cannot find whats the issue here and why i am getting the error of #1241 - Operand should contain 1 column(s)
SELECT COUNT(*) FROM `User` `t`
INNER JOIN
(
SELECT cv.relatedId
FROM CustomValue cv
WHERE (cv.customFieldId=9 AND (cv.fieldValue = '1')) OR
(cv.customFieldId=8 AND (cv.fieldValue = '1'))
GROUP BY cv.relatedId
HAVING count(*) > 1
) tblcv
ON tblcv.relatedId = t.id
WHERE (firstName LIKE '%Jea%') AND (keywords like 52,53,54)