如何有中括号怎么比较?
如果我要查找文章内容中包含 [xxx] 这样的字串的文章。还怎么查找呢?
select * from article where articlecotent like '%[[101]]% '
上面SQL语句要查找 [101], 它会把包含[102]、[103]的文章也列出来,查找不正确,希望改改。
------解决方案--------------------select * from article where articlecotent like '%[101]% '