摘要:
遇到 XXX情况 就 XXX 遇不到就 XXX 结束case when …… then …… else …… end 例如一个3条件取值的字段: case when 条件1 then 取值1 when 条件2 then 取值2 else 取值3 end when后接条件语句,then后为字段取值(数 阅读全文
摘要:
int a=1; if(a==1){System.out.println("1");} if(a==2){System.out.println("2");} if(a==3){System.out.println("3");} if(a==1){System.out.println("1");} e 阅读全文