appinfo表中有一个字段名字叫做owner_id,这个字段里面存的值是用逗号隔开的多个人的工号,那么我想随便拿一个工号,按照owner_id这个字段去进行查询,就可以使用以下sql语句:
select * from appinfo where concat (',',owner_id,',') regexp ',123123,'
ibatis中用法: select * from appinfo concat (',',owner_id,',') regexp concat(',', #ownerId#, ',')
希望你的博客如这个夏天一样火热。
大神,oracle里面执行不了啊
哈哈,这个是Mysql的
为啥不直接用【like】呢?