I want to select data from a table in MySQL where a specific field has the minimum value, I\'ve tried this:
SELECT * FROM pieces WHERE MIN(price)
To make it simpler
SELECT *,MIN(price) FROM prod LIMIT 1