如何获得多列的最小日期,不包括空值?

时间:2015-11-10 21:31:44

标签: mysql sql null coalesce

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 个答案:

答案 0 :(得分:1)

唉,least()现在返回NULL,如果有任何参数是NULL。你可以使用一个巨大的合并:

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'
             )