What would be the query to select one row with lowest numeric value of one column?
You can use it
SELECT * FROM `YourTable` ORDER BY YourColumn LIMIT 1
try this
SELECT * FROM `table` ORDER BY `column` ASC LIMIT 1;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With