select * from tablename t where not exists(select 1 from tablename where e>t.e)

解决方案 »

  1.   

    select * from [table] where e=(select min(e) from [table])
      

  2.   

    select * from  a where e=(select min(e) from a)
      

  3.   

    select top 1 * 
    from table
    order by E asc
      

  4.   

    select top 1 a,b,c,d,min(e) as e from abcde where e!=0 group by a,b,c,d
      

  5.   

    select a,b,c,d,min(e) e from table group by a,b,c,d
      

  6.   

    select *  from tbl where e=(select min(e) from tbl)
      

  7.   

    select top 1 A,B,C,D,E from table order by E asc
    這種方案應該校率最高,如果 E不重復的話.(字段的值最小的那条[一條還是多條?]记录)