Mybatis ${} 与#{} 区别

来源:互联网 发布:网络诈骗的方式 编辑:程序博客网 时间:2024/06/14 00:26

select * from table where name = #{name}

select * from table where name = ‘小李’

如果你要做动态的排序,比如  order by   column,这个时候务必要用${},

select * from table order by  'name'  ,这样是没用


0 0
原创粉丝点击