I have a table
studentId Classes
1 Auto CAD,Electronics
2 Instrumentation,Chemical,IT,English
3 Computer,Math,Hindi
4 Physics,Accountancy
5 Bengali,Geography
Now I want to search using single string "Instrumentation,Geography,Physics"
it will show the following
studentId Classes
2 Instrumentation,Chemical,IT,English
4 Physics,Accountancy
5 Bengali,Geography
because studentid 2 contains Instrumentation, studentid 4 contains Physics and studentid 5 contains Geography
How can I do it using a SELECT statement ? not like Classes like '%Instrumentation%'
or like '%Geography%' or Classes like '%Physics%' because i want to use single variable to string "Instrumentation,Geography,Physics" or any combination of string separated by comma.