我通过PHP运行以下MySQL查询,但未执行-返回错误的colume1=MAX(colume1)

以下查询有什么问题

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

最佳答案

SELECT colume
    FROM table_name
    WHERE colume1 = (SELECT MAX(colume1) FROM table_name);

10-04 10:35