摘要:
###语法: select * from 表名 where 条件1 start with 条件2 connect by 条件3; 条件2: 是根结点的限定语句,当然可以放宽限定条件,以取得多个根结点,实际就是多棵树。 条件3: 是连接条件,其中用PRIOR表示上一条记录,比如 CONNECT BY 阅读全文
摘要:
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); List<TestVO> list = new ArrayList<>(); for (int i = 0; i < 10; i++) { TestVO te 阅读全文
摘要:
@DateTimeFormat是spring的注解,只对入参有效, @JsonFormat 是Jackson的,请求入参和出参都生效 //@DateTimeFormat(pattern = "yyyy:MM:dd HH:mm:ss") @JsonFormat(pattern = "yyyy:MM:d 阅读全文
摘要:
将手机号加密为base64格式的密文: utl_raw.cast_to_varchar2(utl_encode.base64_encode(utl_raw.cast_to_raw(#{mobile}))) 解密: utl_raw.cast_to_varchar2(utl_encode.base64_ 阅读全文