用一条话语取出DB最大值的数据

用一条语句取出DB最大值的数据SQL文如下:select * from testMax where score(select MAX(score) from tes

用一条语句取出DB最大值的数据

SQL文如下:

select * from testMax where score=(select MAX(score) from testMax)
?说白了就是用嵌套。