使用oracle concat 函数拼接字符 再进行like 操作

<if test="searchContent!=null and searchContent!=''"> CONCAT(CONCAT(CONCAT(CONCAT(venderDesc,purcher),demandOrg),contactInfo),materialDesc) like#{searchContent}

</if>

注:venderDesc,purcher,demandOrg,contactInfo,materialDesc为表的字段,想要拼接哪个字段就拼哪个字段

有些作者说 CONCAT(venderDesc,purcherdemandOrg,demandOrg,contactInfo,materialDesc) 这样也能实现,但本人经测试这个是不行的,会报参数错误,可能是跟数据库的版本有关。