BillLumbergh
Programmer
Assume I have a table with columns A, B, and C, all of which are of a numeric datatype. I want to write a select that will bring back the lowest value of the three. The idea is similar to using the MIN() function, but instead of choosing the minimum value out of a series of rows, want the min of a series of columns. So, If I have 10 rows, I would get a recordset with one column and 10 records. Is this possible? I imagine it could be done with a union of some sort, but I'm looking for a SQL function similar to MIN() that will do it for me.
Thanks in advance for any help.
Thanks in advance for any help.