码迷,mamicode.com
首页 > 其他好文 > 详细

Mybatis中传递参数时,会加上引号

时间:2020-02-08 00:19:25      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:rom   bsp   order   ati   name   strong   select   sel   参数   

当参数需要加上引号的时候,用#{}。  

例:select * from user_user where name= #{name}   

SQL:select * from user_user where name= "name"

 

当参数不需要加上引号的时候,用${}

例:select * from user_user order by ${id} 

 SQL:select * from user_user order by id

Mybatis中传递参数时,会加上引号

标签:rom   bsp   order   ati   name   strong   select   sel   参数   

原文地址:https://www.cnblogs.com/WINTER-KING/p/12275131.html

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