select top 10 * from table

解决方案 »

  1.   

    前100条:
    1. select top 100 * from tablename
    2.
    set rowcount 100
    select * from tablename
    set rowcount 0
      

  2.   

    select top 100 * from table
      

  3.   

    如果在Paradox表中好像有点问题?
    如:select top 100 * from "table.db",系统会提示100为非法值。
      

  4.   

    Paradox数据库?不懂
    以上是MSSQLSERVER得:)
      

  5.   

    是BDE的Paradox7的表格建立的数据库,select top * from "table.db"好像有问题,请帮忙。