随笔- 298
文章- 4
评论- 35
阅读-
96万
05 2023 档案
postgresql 某字段用逗号分隔,查询某个值是否在其中,以及关联表查询
摘要:1. postgresql 某字段用逗号分隔,查询某个值是否在其中 比如有个字段值是 1,2,3 查看1是否在里面 select id, gate_type, gate_name from yg_gate_base_b where '1' = ANY ( STRING_TO_ARRAY( gate_
阅读全文
springboot 切面注解方式 记录日志
摘要:1.定义GateOpLog import java.lang.annotation.*; /** * 操作日志记录 * @author codefulture */ @Target({ElementType.METHOD,ElementType.TYPE}) @Retention(Retention
阅读全文