Answers for "mysql - find in comma separated string of values"

SQL
0

mysql - find in comma separated string of values

SELECT * FROM table WHERE FIND_IN_SET(table_column, string_of_comma_separated_values);

SELECT * FROM Students WHERE FIND_IN_SET('John, Jake, Micheal, Alan, Aaron');
Posted by: Guest on March-04-2022

Code answers related to "mysql - find in comma separated string of values"

Code answers related to "SQL"

Browse Popular Code Answers by Language