我有一個表的Sql Sever的查找部分字符串在另一個字符串
studentId Classes
1 Auto CAD,Electronics
2 Instrumentation,Chemical,IT,English
3 Computer,Math,Hindi
4 Physics,Accountancy
5 Bengali,Geography
現在我要搜索使用單一字符串「儀器儀表,地理,物理」
它會顯示以下
studentId Classes
2 Instrumentation,Chemical,IT,English
4 Physics,Accountancy
5 Bengali,Geography
因爲studentid 2包含儀表,studentid 4包含物理和studentid 5包含地理
如何使用SELECT
聲明來執行此操作?不像'%Instrumentation%'類或類似於'%Geography%'的類或像'%Physics%'類那樣的類,因爲我想使用單個變量來將字符串「Instrumentation,Geography,Physics」或用逗號分隔的任何字符串組合在一起。