同一字段,多个值删除操作
使用 字段 in
<foreach collection="stationIds" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
模糊搜索
使用 字段 like
concat('%', #{chargeDate}, '%')
多条件查询,不确定条件是否存在
使用if标签 (if条件根据需求变换)
<if test="stationIds != null and stationIds.size() > 0">
#条件内容
</if>
mysql函数:date_format(date,format) ----根据format字符串格式化date值
now()当前时间 后面字符串是时间格式
SELECT DATE_FORMAT(NOW(), '%Y-%m-%d %H:%i:%S');
%M 月名字(January……December)
%W 星期名字(Sunday……Saturday)
%D 有英语前缀的月份的日期(1st, 2nd, 3rd, 等等。)
%Y 年, 数字, 4 位
%y 年, 数字, 2 位
%a 缩写的星期名字(Sun……Sat)
%d 月份中的天数, 数字(00……31)
%e 月份中的天数, 数字(0……31)
%m 月, 数字(01……12)
%c 月, 数字(1……12)
%b 缩写的月份名字(Jan……Dec)
%j 一年中的天数(001……366)
%H 小时(00……23)
%k 小时(0……23)
%h 小时(01……12)
%I 小时(01……12)
%l 小时(1……12)
%i 分钟, 数字(00……59)
%r 时间,12 小时(hh:mm:ss [AP]M)
%T 时间,24 小时(hh:mm:ss)
%S 秒(00……59)
%s 秒(00……59)
%p AM或PM
%w 一个星期中的天数(0=Sunday ……6=Saturday )
%U 星期(0……52), 这里星期天是星期的第一天
%u 星期(0……52), 这里星期一是星期的第一天
%% 一个文字“%”。
动态SQL的时候,但是出现不识别大于小于
方式一:转义字符
符号 | 转义 | 说明 |
> | > | 大于 |
< | < | 小于 |
& | & | 和 |
’ | ' | 单引号 |
" | " | 双引号 |
方式二:
<![CDATA[ ……]]>
-
大于等于 <![CDATA[ >= ]]>
-
小于等于 <![CDATA[ <= ]]>
重复sql代码引用
首先定义个<sql id="Base_Column_List"></sql>
然后在需要这个的地方根据id引用
<include refid="Base_Column_List" />
group_concat分组,将对应的分组中的内容使用字符串拼接起来
不加distinct的话,不会去重
group_concat(distinct student separator '%')
后面的separator是用来指定分隔的字符是什么
sql 符号区分:
gt:表示大于>。即greater than
ge:表示大于等于>=。即greater than or equals to
lt:表示小于<。即less than
le:表示小于等于<=。即less than or equals to
eq:表示等于=。即equals
ne:表示不等于!=。即not equals