摘要:
一个微服务通常有两个子module,module-rpc写实体类和接口 module-server一个写实现方法含有主启动类 打包编译module-rpc时候发现maven install报错 Unable to find main class 它本身是不需要主启动类的,需要排除 <build> < 阅读全文
摘要:
mysql 连表使用like 查询 统计字典表 字典值使用的数量 SELECT p.id, p.name, b.release_status, count(b.paper_id) AS total_count FROM jeecg.products p INNER JOIN xinguoren_pa 阅读全文
摘要:
mybatis ResultHandler使用 业务代码 public void exportUserStudyCardUsageRecords(UserStudyCardUsageRecordParam po, Long startCreateTime, Long closeCreateTime, 阅读全文
摘要:
sql: ## asset 是数据库名 sale_code 是表字段 SELECT TABLE_NAME AS '表名', COLUMN_NAME AS '字段名', DATA_TYPE AS '数据类型', IS_NULLABLE AS '是否可为空' FROM information_schem 阅读全文
摘要:
字符串切割STRING_TO_ARRAY UNNEST获取一个ARRAY,然后平铺成一个表,表中的每一行都是该ARRAY中的元素。 -- 查询id是1 2 13 14的学生信息 select * from student where student_id in (select num from un 阅读全文