06 2021 档案
摘要:特殊字符 * ^ : | . \ 需要用\\转义 一、单个符号作为分隔符 String address="北京.北京市.海淀区.普天大厦"; String[] splitAddress=address.split("\\."); System.out.println(splitAddress[0]+
阅读全文
摘要:方法一:一般用法 select * from orcl_test t<where> <if test="query == 0"> and t.status = 1 </if> <if test="query != 0"> and t.status NOT IN (2,3,4) </if> and t
阅读全文
摘要:首先创建sequence: create sequence TEST_SEQ //序列名(TEST_SEQ 为序列名,自定义命名)increment by 1 //每次增加1start with 1 //从1开始minvalue 1 //最小值1nomaxvalue //没有最大值 或者
阅读全文
摘要:BigDecimal 的加减乘除: BigDecimal bignum1 = new BigDecimal("10"); BigDecimal bignum2 = new BigDecimal("5"); BigDecimal bignum3 = null; //加法 bignum3 = bignu
阅读全文

浙公网安备 33010602011771号