select * 
from tablename
where shu=(select max(shu) from tablename)

解决方案 »

  1.   

    select * from table1 where shu in (select max(shu)as shu from table1)
      

  2.   

    select * from table where yue=(select max(yue) from table)
      

  3.   

    select * from table where shu in (select max(shu) from table)
    写的丑陋点哈哈
      

  4.   

    select * 
    from tablename
    where shu=(select max(shu) from tablename)
      

  5.   

    select * from table where yue = ( select max(yue) from table )