I'm fairly new to SQL Server and would really appreciate some help with this.

I have 4 columns in the same db table each with differing numerical values e.g.

col1 - 8, 6, 7 
col2 - 9, 8, 5
col3 - 12, 15, 2   
col4 - 3, 1, 11

What I would like to do is pick the lowest value from each row and place it within a 5th column such that the result for the above would be:

col5 - 3, 1, 2

I have tried using a select subquery but with no luck. I feel like this should be easy but can't either work it out or find anything similar elsewhere!

Many thanks.

link|improve this question
1  
You can use the anser from this question stackoverflow.com/questions/7995945/… – Mikael Eriksson Nov 9 '11 at 20:23
thanks, this looks interesting, I will give it a try – KnightMair Nov 9 '11 at 20:40
feedback

1 Answer

up vote 4 down vote accepted
UPDATE T
SET    col5 = (SELECT MIN(col)
               FROM   (VALUES (col1),
                              (col2),
                              (col3),
                              (col4)) T(col))  
link|improve this answer
+1 - I prefer this way for sure – Andrew Nov 9 '11 at 20:40
ah, that's not the way I tried it! will give it a go, thanks – KnightMair Nov 9 '11 at 20:44
perfect, works like a charm! thank you – KnightMair Nov 9 '11 at 22:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.