Answers for "multi value column mysql"

SQL
0

multi value column mysql

select * from celebrities 
where professions='002'          -- The only item in the list
or    professions like '002 %'   -- it might be first of several
or    professions like '% 002'   -- it could be the last of several
or    professions like '% 002 %' -- or in the middle
Posted by: Guest on December-07-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language