Postgresql – Is there a function to return the first null value of a row?
I have the following table: create table table1 ( id serial, workdate date, col1 varchar, col2 varchar, col3 varchar ); And I have inserted the following data: insert into table1(id, workdate) values (DEFAULT, '01/12/2023'); Now I updated it, looking to…