thinkphp框架下读取数据库中的数据前100条数据

WBOY
Release: 2016-06-23 13:49:11
Original
1735 people have browsed it

	$list = M("bor_inv i")->field($field)->where($map)->join("{$pre}bor_info b ON b.id=i.bor_id")->join( "{$pre}members m ON m.id=b.bor_uid")->join("{$pre}bor_change c ON i.id=c.tender_id")->order("c.status DESC,c.id DESC")->limit($Lsql)->select();
Copy after login


我想读取前100条数据,这个查询里面的limit($Lsql)是分页的读取条数,就是每页读取几条。我想总共读取100条数据,不想这样全部读取,怎么修改, 求指点。


回复讨论(解决方案)

limit('0, 100')

limit('0, 100')


不可以使用,这个查询里面的limit($Lsql)是分页的读取条数,就是每页读取几条,就是说这个limit($Lsql)是每页的条数

    $Data = M('Data'); // 实例化Data数据对象    import('ORG.Util.Page');// 导入分页类    $count      = $Data->where($map)->count();// 查询满足要求的总记录数 $map表示查询条件    $Page       = new Page($count);// 实例化分页类 传入总记录数    $show       = $Page->show();// 分页显示输出    // 进行分页数据查询    $list = $Data->where($map)->order('create_time')->limit($Page->firstRow.','.$Page->listRows)->select();    $this->assign('list',$list);// 赋值数据集    $this->assign('page',$show);// 赋值分页输出    $this->display(); // 输出模板
Copy after login
Copy after login

不是你这样写的。
$count = $member->where($map)->count(); //这个是写总共多少条记录
$Page = new Page($count,5); //这个是没写几条,5条
然后用limit('0,100')

    $Data = M('Data'); // 实例化Data数据对象    import('ORG.Util.Page');// 导入分页类    $count      = $Data->where($map)->count();// 查询满足要求的总记录数 $map表示查询条件    $Page       = new Page($count);// 实例化分页类 传入总记录数    $show       = $Page->show();// 分页显示输出    // 进行分页数据查询    $list = $Data->where($map)->order('create_time')->limit($Page->firstRow.','.$Page->listRows)->select();    $this->assign('list',$list);// 赋值数据集    $this->assign('page',$show);// 赋值分页输出    $this->display(); // 输出模板
Copy after login
Copy after login



谢谢指点

不是你这样写的。
 $count      = $member->where($map)->count(); //这个是写总共多少条记录
            $Page       = new Page($count,5);  //这个是没写几条,5条
然后用limit('0,100')


谢谢指点
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template