I have two tables:
Suppliers:
+-------+------+---------------+
| supid | prid | supplier_name |
+-------+------+---------------+
| 2 | 2 | Supplier 1 |
| 3 | 2 | Supplier 2 |
| 4 | 2 | Supplier 3 |
+-------+------+---------------+
Supplier_items:
+-----------+------+-------+--------+------------+
| supitemid | prid | supid | itemid | prod_tcost |
+-----------+------+-------+--------+------------+
| 3 | 2 | 2 | 3 | 6200 |
| 4 | 2 | 2 | 4 | 810 |
| 5 | 2 | 3 | 3 | 5900 |
| 6 | 2 | 3 | 4 | 807 |
| 7 | 2 | 4 | 3 | 6680 |
| 8 | 2 | 4 | 4 | 825 |
+-----------+------+-------+--------+------------+
Please help me to achieve this result getting the min value with supplier_name from Suppliers: (where prid = 2, group by itemid)
+--------+---------------+----------------+
| itemid | supplier_name | min(prod_tcost) |
+--------+---------------+----------------+
| 3 | Supplier 2 | 5900 |
| 4 | Supplier 2 | 807 |
+--------+---------------+----------------+