①where 子句里面根据传入参数 决定使用哪一个条件
SQL> select 1 from dual where decode(1,1,1,0)=1;
SQL> select 1 from dual where (case when 1=1 then 1 else 0 end) = 1;
时间: 2024-10-31 00:49:04
①where 子句里面根据传入参数 决定使用哪一个条件
SQL> select 1 from dual where decode(1,1,1,0)=1;
SQL> select 1 from dual where (case when 1=1 then 1 else 0 end) = 1;