我有一个带有GROUP_CONCAT的mysql脚本
SELECT msg_id, uid_fk, message, message_type,
GROUP_CONCAT(DISTINCT message_type
SEPARATOR ';' )
FROM messages
WHERE status = '1'
GROUP_CONCAT message_type根据需要返回(A; B; A; C;)。现在我想提出一个条件,如果说
if(message_type == 'A')
{
do that......
}
elseif(message_type == 'B')
{
do this......
}
但是我得到的只是message_type的第一个值