2015-11-10 60 views
0
insert into table (col1, col2, col3, col4) values ('2015-01-01','2014-01-01', NULL, '2013-01-01') 

我正在尋找這樣的功能:如何獲得幾列的最短日期,不包括空值?

select least_but_no_nulls(col1, col2, col3, col4) from table 

結果:「2013-01-01」

我怎樣才能得到幾列的最小日期,不包括空?

回答

1

唉,least()現在返回NULL如果有任何參數是NULL。您可以使用一個巨大的COALESCE:

select least(coalesce(col1, col2, col3, col3), 
      coalesce(col2, col3, col4, col1), 
      coalesce(col3, col4, col1, col2), 
      coalesce(col4, col1, col2, col3) 
      ) 

或者,你可以在未來nullif()使用一些不太值:

select nullif(least(coalesce(col1, '9999-01-01'), 
        coalesce(col2, '9999-01-01'), 
        coalesce(col3, '9999-01-01'), 
        coalesce(col4, '9999-01-01'), 
        ), '9999-01-01' 
      ) 
相關問題