SELECT
column FROM
table WHERE
column is largest开发者_开发技巧?
Try:
SELECT MAX(column) FROM table;
MAX
is an aggregate function; see the documentation.
SELECT
column FROM
table WHERE
column is largest开发者_开发技巧?
Try:
SELECT MAX(column) FROM table;
MAX
is an aggregate function; see the documentation.
精彩评论