本帖最后由 t236846681 于 2011-02-18 10:37:48 编辑

解决方案 »

  1.   

    几W到几十W的智能提示?????????????????????????
    一般都select top多少的吧....
    按照数据库里面的热度.搜索量等来综合查询
      

  2.   

    你只能按照一定的条件 来搜索最接近的条数不能输入后 显示一打排那样好丑啊。。像楼上几位说的也对。。用TOP。。搜索 10行或者15行
      

  3.   

    select * from fmovie where f_uid is not null
    select top 10* from fmovie where f_uid is not null
    为什么下面的查询快很多,2个语句不是都遍历了所有的数据吗
      

  4.   

    select * from fmovie where f_uid is not null
    select top 10* from fmovie where f_uid is not null
    为什么下面的查询快很多,2个语句不是都遍历了所有的数据吗
      

  5.   

    select top 10* from fmovie where f_uid is not null
    但是他也是要遍历每一条,判断f_uid is not null
      

  6.   

    select top 10* from fmovie where f_uid is not null
    他取到f_uid is not null的前十条就不查了 不遍历的
      

  7.   

    肯定是要分页获取数据数据3   不过不建议用select top    建议用row number() 分页
      

  8.   

    is not null是全文遍历的吧,不会使用索引吧