multi value column mysql

Solutions on MaxInterview for multi value column mysql by the best coders in the world

showing results for - "multi value column mysql"
Lucien
11 Feb 2017
1select * from celebrities 
2where professions='002'          -- The only item in the list
3or    professions like '002 %'   -- it might be first of several
4or    professions like '% 002'   -- it could be the last of several
5or    professions like '% 002 %' -- or in the middle
6