摘要: List<Map<String, Object>> list = new ArrayList<>(); Map<String, Object> map1 = new HashMap<>(); map1.put("name", "苹果"); map1.put("code", "apple"); lis 阅读全文
posted @ 2024-04-15 14:29 一隅桥畔 阅读(26) 评论(0) 推荐(0) 编辑
摘要: -- extract只能从date类型中提取年、月、日 -- 年 select extract(year from sysdate) from dual; -- 月 select extract(month from sysdate) from dual; -- 日 select extract(d 阅读全文
posted @ 2024-04-15 14:19 一隅桥畔 阅读(79) 评论(0) 推荐(0) 编辑