日期:2014-05-16  浏览次数:20430 次

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

SQL文如下:

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