tabl_priceList:
+--------+------+------+------+-------
| ProductID| price1 | price2 | price3 |
+--------+--------+------+------+------
| 10001 | 30 | 56 | 23 |
| 10002 | 650 | 560 | 675 |
| 10003 | 57 | 50 | 60 |
| 10004 | 300 | 305 | 3009 |
+--------+------+------+------+-------
I need to find out minimum column value for each row.
its look like.
-----+------+------+---
| ProductID| smallest |
+--------+--------+-----
| 10001 | 23 |
| 10002 | 560 |
| 10003 | 50 |
| 10004 | 300 |
+--------+------+------
Please help me to solve the problem