[snip]
The same way you do it inother SQL's.

SELECT MAX(col2) FROM table GROUP BY col1;
[/snip]

Oops;

SELECT col1, MAX(col2), col3 FROM table GROUP BY col1;

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to