带有逗号的MySQL LIKE子句

时间:2010-08-03 10:35:00

标签: mysql

以下SQL语句中的逗号是什么意思(使用MySQL)?

[...] LIKE '%,cat233,%'

4 个答案:

答案 0 :(得分:3)

逗号不是要匹配的字符串的一部分吗?例如“fred,bill,cat233,joe,harry”会匹配。

答案 1 :(得分:2)

检查comma separated values.

中的cat233

答案 2 :(得分:1)

它没有特别的意义。它只查找字符串,cat233,,前面有0个或更多字符,后面有0个或更多字符。

答案 3 :(得分:1)

看起来它也会与逗号匹配;这样:

匹配

"My text,cat233,some other stuff"
"My text ,cat233, some other stuff"
"My text,cat233,"
",cat233,"

不匹配:

"My text cat233 some other stuff"
"My text cat233, some other stuff"
"My text, cat233, some other stuff"