Answers for "sql select WHERE max"

SQL
6

sql display max value

SELECT MAX(<numeric column>) FROM <table>;
SELECT MAX(<numeric column>) FROM <table> GROUP BY <other column>;
Posted by: Guest on April-01-2020
1

sql select max where

SELECT MAX(salary), MIN(salary) FROM employees WHERE genre = 'MALE';
Posted by: Guest on June-19-2021
0

mysql find the row ites of the hoghest value at on column

SELECT tt.*
FROM topten tt
INNER JOIN
    (SELECT home, MAX(datetime) AS MaxDateTime
    FROM topten
    GROUP BY home) groupedtt 
ON tt.home = groupedtt.home 
AND tt.datetime = groupedtt.MaxDateTime
Posted by: Guest on May-05-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language