Greetings, please help me work with the Least function and Nulls.
select least (table1.DATE,table1.TIMESTAMP) as FIRST from table1.
I need to select from a dataset that includes nulls. but I need to find the LEAST of two fields.
Bot date and timestamp field include nulls.
When date field(populated) is in least function with timestamp field(null) I need the First field to show what is in the date field.
Thank you,