标签:
①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;
学习SQL日记(五)
原文地址:http://www.cnblogs.com/xxx-xxx/p/4200981.html