mysql
Jkcc
这个作者很懒,什么都没留下…
展开
-
delete报错整理
delete报错整理 delete from order_express oe where TO_DAYS(NOW()) - TO_DAYS(oe.create_time) = 1 ; 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'oe where TO_DAYS(NO原创 2021-04-30 15:06:14 · 553 阅读 · 1 评论 -
#{}和${}的区别(sql演示)
#{}和${}的区别 1、#{}是预编译处理:mybatis在处理#{}时,会将sql中的#{}替换为?号,调用PreparedStatement的set方法来赋值 2、$ {}是字符串替换:$符号一般用来当做占位符,mybatis在处理 $ { } 时,就是把 ${ } 替换成变量的值 使用 #{} 可以有效的防止SQL注入,提高系统安全性。 ...原创 2020-04-03 21:12:30 · 135 阅读 · 0 评论