Mybatis中传递参数时,会加上引号
Posted WinterAndRain
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis中传递参数时,会加上引号相关的知识,希望对你有一定的参考价值。
当参数需要加上引号的时候,用#{}。
例: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中传递参数时,会加上引号的主要内容,如果未能解决你的问题,请参考以下文章