<code>SELECT `app_plan`.*, `app_agreement`.*, `app_customer`.*, `app_product`.*, `app_product_category`.*, @计划总原发量:=( select sum(`app_operation`.`send_weight`) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` AND `app_operation`.`is_del`= 0) as `plan_total_send_weight`, @计划总实收量:=( select sum(`app_operation`.`receive_weight`) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` AND `app_operation`.`is_del`= 0) as `plan_total_receive_weight`, @计划总路损量:= IFNULL(( select sum(`app_operation`.`send_weight`-`app_operation`.`receive_weight`) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` AND `app_operation`.`is_del`= 0 AND `app_operation`.`operation_status`= 2), 0) as `plan_total_lost_quantity`, @计划总在途量:= IFNULL(( select sum(`app_operation`.`send_weight`) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` AND `app_operation`.`is_del`= 0 AND `app_operation`.`operation_status`= 1), 0) as `plan_onway_quantity`, @计划路损超出量:= IFNULL(( SELECT sum(`app_operation`.`send_weight`-`app_operation`.`receive_weight`- `app_plan`.`rational_loss`) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` and `app_operation`.`is_del`= 0 AND `app_operation`.`operation_status`= 2 AND(`send_weight`-`receive_weight`)> `app_plan`.`rational_loss`), 0) AS plan_over_lost, @路损超出扣款:= truncate(IFNULL(( SELECT sum((`app_operation`.`send_weight`-`app_operation`.`receive_weight`- `app_plan`.`rational_loss`) * `app_plan`.`plan_deduct_fee`) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` and `app_operation`.`is_del`= 0 AND `app_operation`.`operation_status`= 2 AND(`send_weight`-`receive_weight`)> `app_plan`.`rational_loss`), 0), 2) AS plan_total_punish_fee, @计划总发车数:= IFNULL(( select count(*) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` AND `app_operation`.`is_del`= 0), 0) as `plan_count_send`, @计划总收车数:= IFNULL(( select count(*) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` AND `app_operation`.`operation_status`= 2 AND `app_operation`.`is_del`= 0), 0) as `plan_count_receive`, @总运费:= truncate(IFNULL(( SELECT sum(`app_operation`.`receive_weight` * `app_operation`.`operation_fee`) FROM `app_operation` WHERE `app_operation`.plan_id= `app_plan`.`plan_id` AND `app_operation`.`is_del`= 0), 0), 2) as `plan_total_ship_fee`, @应付运费:= truncate(IFNULL((@总运费 - @路损超出扣款), 0), 2) AS total_invoice_ship_fee, @计划未发量:= truncate(IFNULL(`plan_total_quantity` - @计划总实收量 - @计划总在途量, 0), 2) AS `plan_total_not_quantity` FROM(`app_plan`) LEFT JOIN `app_agreement` ON `app_plan`.`agreement_id`= `app_agreement`.`agreement_id` LEFT JOIN `app_customer` ON `app_agreement`.`customer_id`= `app_customer`.`customer_id` LEFT JOIN `app_product` ON `app_agreement`.`product_id`= `app_product`.`product_id` LEFT JOIN `app_product_category` ON `app_product`.`category_id`= `app_product_category`.`category_id` WHERE `plan_status`= 1 AND `app_plan`.`is_del`= 0</code>
附件是数据库SQL备份。
大家尝试看看,这应该算相当复杂的SQL了吧。
客户端的运行结果
数据库备份下载地址:http://7xiqxd.com2.z0.glb.qiniucdn.com/deliver.sql.zip
回复内容:
<code>SELECT `app_plan`.*, `app_agreement`.*, `app_customer`.*, `app_product`.*, `app_product_category`.*, @计划总原发量:=( select sum(`app_operation`.`send_weight`) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` AND `app_operation`.`is_del`= 0) as `plan_total_send_weight`, @计划总实收量:=( select sum(`app_operation`.`receive_weight`) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` AND `app_operation`.`is_del`= 0) as `plan_total_receive_weight`, @计划总路损量:= IFNULL(( select sum(`app_operation`.`send_weight`-`app_operation`.`receive_weight`) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` AND `app_operation`.`is_del`= 0 AND `app_operation`.`operation_status`= 2), 0) as `plan_total_lost_quantity`, @计划总在途量:= IFNULL(( select sum(`app_operation`.`send_weight`) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` AND `app_operation`.`is_del`= 0 AND `app_operation`.`operation_status`= 1), 0) as `plan_onway_quantity`, @计划路损超出量:= IFNULL(( SELECT sum(`app_operation`.`send_weight`-`app_operation`.`receive_weight`- `app_plan`.`rational_loss`) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` and `app_operation`.`is_del`= 0 AND `app_operation`.`operation_status`= 2 AND(`send_weight`-`receive_weight`)> `app_plan`.`rational_loss`), 0) AS plan_over_lost, @路损超出扣款:= truncate(IFNULL(( SELECT sum((`app_operation`.`send_weight`-`app_operation`.`receive_weight`- `app_plan`.`rational_loss`) * `app_plan`.`plan_deduct_fee`) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` and `app_operation`.`is_del`= 0 AND `app_operation`.`operation_status`= 2 AND(`send_weight`-`receive_weight`)> `app_plan`.`rational_loss`), 0), 2) AS plan_total_punish_fee, @计划总发车数:= IFNULL(( select count(*) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` AND `app_operation`.`is_del`= 0), 0) as `plan_count_send`, @计划总收车数:= IFNULL(( select count(*) from `app_operation` where `app_operation`.`plan_id`= `app_plan`.`plan_id` AND `app_operation`.`operation_status`= 2 AND `app_operation`.`is_del`= 0), 0) as `plan_count_receive`, @总运费:= truncate(IFNULL(( SELECT sum(`app_operation`.`receive_weight` * `app_operation`.`operation_fee`) FROM `app_operation` WHERE `app_operation`.plan_id= `app_plan`.`plan_id` AND `app_operation`.`is_del`= 0), 0), 2) as `plan_total_ship_fee`, @应付运费:= truncate(IFNULL((@总运费 - @路损超出扣款), 0), 2) AS total_invoice_ship_fee, @计划未发量:= truncate(IFNULL(`plan_total_quantity` - @计划总实收量 - @计划总在途量, 0), 2) AS `plan_total_not_quantity` FROM(`app_plan`) LEFT JOIN `app_agreement` ON `app_plan`.`agreement_id`= `app_agreement`.`agreement_id` LEFT JOIN `app_customer` ON `app_agreement`.`customer_id`= `app_customer`.`customer_id` LEFT JOIN `app_product` ON `app_agreement`.`product_id`= `app_product`.`product_id` LEFT JOIN `app_product_category` ON `app_product`.`category_id`= `app_product_category`.`category_id` WHERE `plan_status`= 1 AND `app_plan`.`is_del`= 0</code>
附件是数据库SQL备份。
大家尝试看看,这应该算相当复杂的SQL了吧。
客户端的运行结果
数据库备份下载地址:http://7xiqxd.com2.z0.glb.qiniucdn.com/deliver.sql.zip
这么复杂干嘛还非要用链式来解决呢,你的SQL都出来了,直接SQL不就行了么。TP的Model只是为了方便使用,封装了常用的几种简单查询更新的操作,复杂的操作建议直接SQL实现。就算你绞尽脑汁想出了一个复杂的通过TP链式方法实现这个复杂操作的写法,最后TP还是要把你的操作转成SQL,你说你这不是瞎费劲么?
这么复杂的sql语句不建议转换成TP的sql语句,没有什么太大的意义。TP的链式方式最终还是会转义成sql语句来实现的,可以先写好sql,对然后用M对数据库实例化执行sql就可以了。还有如此复杂的sql中存在内外链接,这样会很大的消耗sql资源,如果数据量大的情况下,获取数据不易,建议拆分sql语句,获得基础数据后用php语言写算法,这样速度会快一些。
你要效能還是想要語句結構化?
要效能就直接SQL算出來
要語句理解就用Model完成邏輯

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

安全考试浏览器
Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。

PhpStorm Mac 版本
最新(2018.2.1 )专业的PHP集成开发工具

ZendStudio 13.5.1 Mac
功能强大的PHP集成开发环境

SublimeText3 Linux新版
SublimeText3 Linux最新版

记事本++7.3.1
好用且免费的代码编辑器