mysql find max value row
SELECT t1.*
FROM employees t1
INNER JOIN (
SELECT id, max(salary) AS salary FROM employees GROUP BY id
) t2 ON t1.id = t2.id AND t1.salary = t2.salary;
mysql find max value row
SELECT t1.*
FROM employees t1
INNER JOIN (
SELECT id, max(salary) AS salary FROM employees GROUP BY id
) t2 ON t1.id = t2.id AND t1.salary = t2.salary;
mysql query to select the highest value
mysql> select Number from DemoTable order by Number desc limit 0,1;
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us