表table1,字段content,值0|2|2|1|0
select id from table where split(content,'|')(1) = '0'.....................
这样写正确吗?
表table1,字段content,值0|2|2|1|0
select id from table where split(content,'|')(1) = '0'.....................
这样写正确吗?
split 是编程语言的函数,sql应该不能识别。可以这样解决
select id from table where content like '0|%'
或者用left right之类函数截断字符串进行比较
不对
为什么要这么判断?