谁能告诉我~谢谢前辈门

解决方案 »

  1.   

    order by 时间字段 desc
      

  2.   

    select * from tb order by 7 desc
    ?
      

  3.   

    晕~我的意思是找出 表中 第 7 行 数据~
    sql语句怎么写???就是为了完成一些想去看哪行数据就看哪行数据的程序
      

  4.   

    select * from (
    select *,cnt=(select count(*) from tb where [date]<=t.[date])
    from tb t)
    where cnt=7
      

  5.   

    --少別名
    select * from ( 
    select *,
           cnt=(select count(*) 
    from tb 
    where [date] <=t.[date]) 
    from tb t)t 
    where cnt=7
      

  6.   

    cnt 从哪来~我在access中调试~出现cnt输入框
      

  7.   

    我没有多少次提问机会了
    上面给我的代码~我在access里面调试~就会 出现 cnt输入框谁能给我圆满回答~谢谢