摘要:
@JsonFormat(pattern = DatePattern.NORM_DATE_PATTERN) private Date time; 阅读全文
posted @ 2021-07-26 21:03
myEsn2E9
阅读(154)
评论(0)
推荐(0)
摘要:
MybatisPlus:使用SQL保留字(关键字)的操作 必须要手动在 entity 的字段上加注解,否则最终会报错,因为 mybatis 或者 mybatis plus 不会自动处理 阅读全文
posted @ 2021-07-26 21:02
myEsn2E9
阅读(347)
评论(0)
推荐(0)
摘要:
【Mybatis】如何在Mybatis XML文件中使用枚举变量 阅读全文
posted @ 2021-07-26 18:31
myEsn2E9
阅读(625)
评论(0)
推荐(0)
摘要:
union 会删除重复数据 union all 不会删除重复数据 select * from ( select *,'a' as kind from tablea where name is not null union all select *, 'b' as kind from tableb w 阅读全文
posted @ 2021-07-26 18:18
myEsn2E9
阅读(66)
评论(0)
推荐(0)