上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: 1、创建物化视图 CREATE MATERIALIZED VIEW "view_xxx“ as select * from 表 2、刷新物化视图 refresh materialized view view_xxx; 3、删除物化视图 drop materialized view view_xxx; 阅读全文
posted @ 2022-12-13 13:32 懂得归零 阅读(729) 评论(0) 推荐(0)
摘要: 在Terminal终端中输入 git config user.name git config --global user.name "xl" 阅读全文
posted @ 2022-12-13 10:59 懂得归零 阅读(826) 评论(0) 推荐(0)
摘要: // 获得总共有多少行int rowNum = 0;//存在样式的空行。会被统计进来。所以主要的问题是要判断是否是空行。for (int num = 1; num <= sheet.getLastRowNum(); num++) {//跳过第一行,看个人需求 HSSFRow row = sheet. 阅读全文
posted @ 2022-12-05 15:29 懂得归零 阅读(3217) 评论(0) 推荐(0)
摘要: //递归插入public void add(List<Object> all, long start, long limit){ //截取 List<Object> collect = all.stream().skip(start).limit(limit).collect(Collectors. 阅读全文
posted @ 2022-12-05 11:20 懂得归零 阅读(1620) 评论(0) 推荐(0)
摘要: 1、前置条件(合并前的单元格边框必须存在) 2、设置合并单元格样式 XSSFSheet sheet;CellRangeAddress cellRangeAddress = new CellRangeAddress(startRow, overRow, startCol, overCol);sheet 阅读全文
posted @ 2022-11-23 14:01 懂得归零 阅读(760) 评论(1) 推荐(0)
摘要: public static XSSFColor fine = new XSSFColor(new Color(146, 208, 80)); XSSFCellStyle cloneStyle = ht.getWorkbook().createCellStyle();cloneStyle = (XSS 阅读全文
posted @ 2022-11-23 14:01 懂得归零 阅读(90) 评论(0) 推荐(0)
摘要: -- 基于ig.start_pile,ig.end_pile 字段去重 with ete as ( SELECT * from (SELECT ROW_NUMBER() OVER(PARTITION by ig.start_pile,ig.end_pile ORDER BY ig.start_pil 阅读全文
posted @ 2022-10-28 11:25 懂得归零 阅读(1121) 评论(0) 推荐(0)
摘要: with ete as ( SELECT * from table_name ) SELECT * from ete 阅读全文
posted @ 2022-10-28 11:24 懂得归零 阅读(81) 评论(0) 推荐(0)
摘要: alter table "pavement_damage_dtl_temp" rename to "pavement_damage_dtl"; 搜索 复制 阅读全文
posted @ 2022-09-26 09:16 懂得归零 阅读(219) 评论(0) 推荐(0)
摘要: ALTER TABLE pavement_damage_dtl_temp add PRIMARY key(id); ALTER table pavement_damage_dtl_temp alter is_manual_work set DEFAULT FALSE; 搜索 复制 阅读全文
posted @ 2022-09-26 09:15 懂得归零 阅读(814) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 13 下一页