摘要: 1、 java8 localDateTime 转 Date public static Date localDateToDate(LocalDateTime localDateTime){ ZoneId zone = ZoneId.systemDefault(); Instant instant = 阅读全文
posted @ 2021-02-23 16:46 当个胖子 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 1、备份整表数据 create table [备份名] as select * from [表名]; 2、数字格式化 select to_char(123666666.21,'FM999,999,999,999,999.00') from dual ; 阅读全文
posted @ 2021-02-23 16:38 当个胖子 阅读(37) 评论(0) 推荐(0) 编辑