Sacheveral
Technical User
What is the most efficient method to find the minimum/maximum value of a number of date fields in a single record? For example I would like something like:
select
field1,
field2,
field3,
field4,
(lowest of fields 1 to 4),
(highest of fields 1 to 4)
from
table1
select
field1,
field2,
field3,
field4,
(lowest of fields 1 to 4),
(highest of fields 1 to 4)
from
table1