MyBatis
文章平均质量分 61
MyBatis相关文章
汉东哥
这个作者很懒,什么都没留下…
展开
-
MyBatis
项目 #{} ${} 执行顺序 动态解析 -> 预编译 -> 执行 动态解析 -> 编译 -> 执行 变量替换 DBMS外 DBMS内 加单引号 自动加 不加 防止sql注入 可以 不行 假设传入参数为1 select * from t_user where uid = #{uid}select * from t_user where uid= ?select * from t_user where uid= '1’ select * from t_u...原创 2021-12-29 16:21:17 · 565 阅读 · 0 评论 -
MyBatis基本使用
1、mybatis <=或这个>=提示错误Tag name expecte 使用转义 DATE_SUB(CURDATE(), INTERVAL 31 DAY) <= DATE(created) 转义对照表 常见转义对照表 < < > > & & ' , " " 2、select语句示范 <select id="getResult" result原创 2021-12-02 10:48:26 · 1525 阅读 · 0 评论