Difference between revisions of "MAX"
From SQLZOO
(Created page with "<h3>MAX</h3> <table align='right' border='1'> <caption>Compatibility</caption> <caption>ABS(f)</caption> <tr><th>Engine</th><th>OK</th><th>Alternative</th></tr> <tr><td align=...") |
|||
| (7 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | |||
<table align='right' border='1'> | <table align='right' border='1'> | ||
<caption>Compatibility</caption> | <caption>Compatibility</caption> | ||
| − | < | + | <tr><th colspan='3'>MAX(f)</th></tr> |
| − | <tr>< | + | <tr><td align='center'>'''Engine'''</td><td align='center'>'''OK'''</td><td align='center'>'''Alternative'''</td></tr> |
| − | <tr><td align='left'>mysql</td><td>Yes</td><td> | + | <tr><td align='left'>ingres</td><td>Yes</td><td></td></tr> |
| − | <tr><td align='left'>oracle</td><td> | + | <tr><td align='left'>mysql</td><td>Yes</td><td></td></tr> |
| − | <tr><td align='left'>postgres</td><td> | + | <tr><td align='left'>oracle</td><td>Yes</td><td></td></tr> |
| − | <tr><td align='left'>sqlserver</td><td> | + | <tr><td align='left'>postgres</td><td>Yes</td><td></td></tr> |
| + | <tr><td align='left'>sqlserver</td><td>Yes</td><td></td></tr> | ||
</table> | </table> | ||
<p>MAX finds the highest values in a column or part of a column</p> | <p>MAX finds the highest values in a column or part of a column</p> | ||
| Line 24: | Line 24: | ||
FROM bbc | FROM bbc | ||
GROUP BY region | GROUP BY region | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
</source> | </source> | ||
</div> | </div> | ||
| Line 37: | Line 29: | ||
<p>See also</p> | <p>See also</p> | ||
<ul> | <ul> | ||
| − | <li>[[EXTRACT function]]</li> | + | <li>[[EXTRACT |EXTRACT function]]</li> |
| − | <li>[[SUM function]]</li> | + | <li>[[SUM |SUM function]]</li> |
| − | <li>[[MIN function]]</li> | + | <li>[[MIN |MIN function]]</li> |
</ul> | </ul> | ||
| + | |||
| + | {{Languages}} | ||
Latest revision as of 20:45, 22 October 2012
| MAX(f) | ||
|---|---|---|
| Engine | OK | Alternative |
| ingres | Yes | |
| mysql | Yes | |
| oracle | Yes | |
| postgres | Yes | |
| sqlserver | Yes | |
MAX finds the highest values in a column or part of a column
MAX is an aggregate function it is normally used with GROUP BY.
SELECT region, MAX(name)
FROM bbc
GROUP BY region
With a GROUP BY region statement each region shows up just once.
The MAX column gives the "largest" name in the region in the context of strings this is the last name alphabetically.
SELECT region, MAX(name) FROM bbc GROUP BY region
See also
| Language: | English • Deutsch |
|---|