I have a scenario where the max function should work as follows in PostgreSQL:
select max(3,null) from table
should return 3
whereas,
select max(null) from table
should return null.
Suggestions are welcomed!
I have a scenario where the max function should work as follows in PostgreSQL:
select max(3,null) from table
should return 3
whereas,
select max(null) from table
should return null.
Suggestions are welcomed!