select * from vis_provider where
FIND_IN_SET(('German'),CONCAT(
DoctarLanguage1,',',
DoctarLanguage2,',',
DoctarLanguage3,',',
DoctarLanguage4,',',
DoctarLanguage5,',',
DoctarLanguage6))
this Mysql query is working I want something like this
select * from vis_provider where
FIND_IN_SET(('German','French'),CONCAT(
DoctarLanguage1,',',
DoctarLanguage2,',',
DoctarLanguage3,',',
DoctarLanguage4,',',
DoctarLanguage5,',',
DoctarLanguage6));