Hey,
So if I had a table in my database with the values
1
2
3
4
NULL
And I executed the query
SELECT MAX(col1) FROM <table>
I'd get 4. Is there any way to change this so Null would be treated as the maximum as oppose to the minimum?
Thanks!