I want to be able to return the last date, e.g.
(select Max(DateColumn) From Table)
However if any of the DateColumn fields are null I want to return a
null, is there a simple way to do this?
(select Max(DateColumn) From Table)
However if any of the DateColumn fields are null I want to return a
null, is there a simple way to do this?
Comment