select aa,bb
from table
显示出来的不是aa,bb吗?!你说的是这个意思吗?

解决方案 »

  1.   

    select top 条数 * from testbig
      

  2.   

    select top x percent * from testbig //返回前面百分之x的纪录
      

  3.   

    rst.MaxRecords = xx
    rst.open str,cnn,1,3
      

  4.   

    oracle:
    select * from table where rownum < 数量
      

  5.   

    我在Access中使用
    select top 条数 * from testbig 
    好象不行的?
      

  6.   

    OK,
    是我搞错了
    select top 条数 * from testbig 行的
      

  7.   

    未用过access,不知,继续学习。
      

  8.   

    应该可以,我在我的程序中用了这样一句“SELECT TOP 1 * FROM COMPANYS”,也是ACCESS的数据库,执行无误,你再试试看。或者,你把错误提示贴出来看看。
      

  9.   

    原来access和ms sql的语法这么像。