我有一個示例表ExampleTable
(Name
和Code
是VARCHAR
):MySQL的使用 '喜歡' 和 'IN' 一起
Name Code
test1 2016/554
test2 2016/13554
test3 2015/9893
test4 2015/74584
,我在Visual Studio中的工作查詢:
select * from Example_Table where code LIKE '%' + '2016' + '%'
但我希望該用戶可以定義包含部分代碼的字符串。這些部分由',
'分隔。
例如:string = 2016,745
我想要得到test1,test2,test4
。
select * from Example_Table where code LIKE IN (string with elements)
這是MySQL或SQL服務器?請適當標記。 –
這是mySQL。 – Pepe