Hello,
I have a table contains data like following:
Qty1 Qty2 Qty3 Qty4 Qty5
Item1 1 1 4
Item2 3
Item3 2 -1 0 4
Item4 4 2 -2 3 5
Is it possible using query to return the minimum value for each item, as:
Qty
Item1 1
Item2 3
Item3 -1
Item4 -2
I Google this question before posting, and seems the only answer is here: http://support.microsoft.com/kb/209857
However, I don't understand it at all since I am lack of knowledge of SQL.
Any help is appreciated. Thank you.