tp 子查询 sql 或框架查询方法
小白 2020-09-04 【原创文章】
tp 子查询 sql 或框架查询方法
tp 子查询 sql 或框架查询方法
$ss = 'select ObservTime,StationID from tc_autostation where StationID=\'TC001\' order by ObservTime desc limit 10'; $sql = 'select * from (select ObservTime,StationID from tc_autostation where StationID=\'TC001\' order by ObservTime desc limit 10) as tems where ObservTime=\'2019-12-11 10:00:00\''; $ifno = Db::query($sql); // return json(['where'=>$where,'or'=>$whereor]); $subQuery = Db::table('tc_autostation') ->field('StationID,RH,TT,ObservTime,status,InsertTime') ->where($where) ->buildSql(); $subQuery2 = Db::table($subQuery . ' a') // ->where('a.ObservTime', '=', '2019-12-11 10:00:00') ->order('ObservTime', 'desc') ->limit($curr*$nums,$nums) ->buildSql(); $info = Db::table($subQuery2 . ' c') // ->where('a.ObservTime', '=', '2019-12-11 10:00:00') ->order('ObservTime', 'desc') ->limit($curr*$nums,$nums) ->select();
最新发布
- 守护进程-kill端口-输出日志-查看等!
- git 本地分支关联远程分支,合并!
- pytorch安装(含cuda、cudnn安装教程)!
- linux系统下ubuntu22.04安装Docker方法!
- 视频截取封面 =php-ffmpeg/php-ffmpeg!
- 常用实例2023-5-10!
- 富文本 塞入mysql 报错: General error: 1366 Incorrect string value: ‘\xF0\x9F\x98\x84‘ for column ‘content‘!
- 百度地图拖拽获取地址实例!
- php使用smtp鉴权方式发送邮件 插件PHPMailer!
- 有道翻译接口对接!