02 2021 档案
摘要:1、 java8 localDateTime 转 Date public static Date localDateToDate(LocalDateTime localDateTime){ ZoneId zone = ZoneId.systemDefault(); Instant instant =
阅读全文
摘要:1、备份整表数据 create table [备份名] as select * from [表名]; 2、数字格式化 select to_char(123666666.21,'FM999,999,999,999,999.00') from dual ;
阅读全文