您希望在跑步时获得什么?
select *, max(col1) from table1;
你期望获得什么
不同的数据库之间是否存在差异?
答案 0 :(得分:2)
如果您想要一行的最大值为col1
,请使用order by
和limit
:
select t1.*
from table1 t1
order by col1 desc
limit 1;
在MySQL中,您的查询将返回一行,其中包含*
所代表的所有列的不确定值,最大值为col1
。在其他数据库中,它会返回错误。