码迷,mamicode.com
首页 > 数据库 > 详细

sql like模糊查询的条件拼接

时间:2017-12-26 21:55:28      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:dna   clear   拼接   rac   where   gpo   like   pos   post   

 

被坑了两次,记录加深记忆

oracle :

  select * from table_name where 1=1 

 <#if secondName?? && secondName?has_content> 

  and second_name like ‘%‘||:secondName||‘%‘

</#if>

 

mysql:

 select * from table_name where 1=1 

 <#if secondName?? && secondName?has_content> 

  and second_name like concat(‘%‘, :second_name ,‘%‘)

</#if>

sql like模糊查询的条件拼接

标签:dna   clear   拼接   rac   where   gpo   like   pos   post   

原文地址:https://www.cnblogs.com/dudadi/p/8120056.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!