Mysql
 sql >> Database >  >> RDS >> Mysql

argomento separato da virgole per l'operatore IN, MySQL

Potresti cercare FIND_IN_SET() funzione.

select * 
from session_actions 
where find_in_set(`action_type`,'login_failed,channel_recorded');

SAMPLE FIDDLE