博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ThinkPHP里面用原生SQL
阅读量:5060 次
发布时间:2019-06-12

本文共 1082 字,大约阅读时间需要 3 分钟。

public function rewardlog(){        $adminNav = C('ADMIN_NAV');        $adminNav[1]['class'] = 'cur';        $this->assign('adminNav',$adminNav);        $where = 'And 1=1';        if($_POST){            $input = trim($_POST['input']);            if($input != ''){            $where = 'AND u.nickname like \'%'.$input.'%\' OR r.message_code like \'%'.$input.'%\' group by r.id';            }        }        $sql ="SELECT r.id,u.nickname,p.pname,r.choosetime,r.message_code,r.gettime FROM `1008_reward` r,`1008_user` u,`1008_prize` p WHERE r.uid = u.id AND r.rid = p.id $where";        $model = M();        $list = $model->query($sql);        $count = count($list);        $Page       = new Page($count,10);        $show       = $Page->show();        $res = $model->query($sql." limit {
$Page->firstRow},{
$Page->listRows}"); $this->assign('input',$input); $this->assign('res',$res); $this->assign('page',$show); $this->assign('title','中奖记录'); $this->display(); }

1、查询用query   添加与修改用execute

转载于:https://www.cnblogs.com/finnlee/p/5109859.html

你可能感兴趣的文章
sgu101 欧拉路
查看>>
package.json和package-lock.json的区别
查看>>
VMware虚拟机的Linux系统访问本地磁盘
查看>>
STL之List存储结构体
查看>>
★古今中外著名14大悖论
查看>>
[IIS] 测试的产品登陆之后有个引用外部站点js的请求半天都无法返回,导致网页一直在打转,Selenium的driver也无法对页面进行下一步的操作...
查看>>
[转]EeeBox 安裝 Debian 後驅動 Wireless 筆記
查看>>
C++中的1LL
查看>>
Python私有变量
查看>>
数据库Sharding的基本思想和切分策略
查看>>
javascript:event对象
查看>>
react-native 踩坑记
查看>>
VC为控件添加背景
查看>>
Wojilu学习笔记 (01)
查看>>
JavaScript 开发者的 10 款必备工具
查看>>
Quartz在Spring中动态设置cronExpression
查看>>
gl.bufferData P73 向绑定的缓冲区对象写入数据
查看>>
偶遇牛人:编程思想最重要
查看>>
0916 词法分析程序
查看>>
解决document.getElementById("")在IE7中误读成name的bug
查看>>