0

我通过 PHP 运行了下面的 MySQL 查询,但它没有执行——返回 colume1=MAX(colume1)不正确

以下查询有什么问题

select colume from table_name where colume1=MAX(colume1);
4

2 回答 2

1
SELECT colume
    FROM table_name
    WHERE colume1 = (SELECT MAX(colume1) FROM table_name);
于 2013-05-24T19:02:30.973 回答
0
SELECT `colume`, MAX(column1) as column1 FROM table_name
于 2013-05-24T19:12:19.673 回答