>  기사  >  데이터 베이스  >  decode与case when的区别_MySQL

decode与case when的区别_MySQL

WBOY
WBOY원래의
2016-06-01 13:38:091560검색

bitsCN.com


decode与case when的区别

 

求和:sum(decode(sign(xingji - 6),'',h.real_count,1,h.real_count,0)) 

decode相较于case when,函数里面不能使用and连接多个条件,只能使用函数嵌套 

 

例如:sum(decode(sign(xingji - 6),-1,decode(hh.quxian,18,h.real_count,19,h.real_count,20,h.real_count,24,h.real_count,
34,h.real_count,35,h.real_count,0),0))

求和:sum(case when start_time = '24' then quantity else 0 end) 

case when显得有些臃肿,但是在多个条件连接时比较方便,例如:sum(case when
start_time = '24' and city_code = '010' then quantity else 0 end) 

 

另说明:sum()函数用于求和,sign()函数用于返回参数是大于0,还是小于0或者等于0,
一个例外是返回空:''; 

例如:sign(1)--->1,sign(-1)--->-1,sign(0)--->0,sign(null)--->'';
 

bitsCN.com
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.