gpt4 book ai didi

MySql 将 'LIKE' 和 'IN' 一起使用

转载 作者:行者123 更新时间:2023-11-29 07:15:14 25 4
gpt4 key购买 nike

我有一个示例表ExampleTable(NameCodeVARCHAR):

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)

最佳答案

select * from [ExampleTable] where code LIKE '%2016%' or code LIKE '%745%';

这将完成工作,并得到答案 test1,test2,test4

使用 OR 运算符。

引用 http://dev.mysql.com/doc/refman/5.7/en/logical-operators.html

关于MySql 将 'LIKE' 和 'IN' 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38210283/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com