ThinkPHP达人,一个非常复杂的SQL查询,用TP框架的链式方法如何实现?
<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完成邏輯

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

JWT是一種基於JSON的開放標準,用於在各方之間安全地傳輸信息,主要用於身份驗證和信息交換。 1.JWT由Header、Payload和Signature三部分組成。 2.JWT的工作原理包括生成JWT、驗證JWT和解析Payload三個步驟。 3.在PHP中使用JWT進行身份驗證時,可以生成和驗證JWT,並在高級用法中包含用戶角色和權限信息。 4.常見錯誤包括簽名驗證失敗、令牌過期和Payload過大,調試技巧包括使用調試工具和日誌記錄。 5.性能優化和最佳實踐包括使用合適的簽名算法、合理設置有效期、

靜態綁定(static::)在PHP中實現晚期靜態綁定(LSB),允許在靜態上下文中引用調用類而非定義類。 1)解析過程在運行時進行,2)在繼承關係中向上查找調用類,3)可能帶來性能開銷。

PHP的魔法方法有哪些? PHP的魔法方法包括:1.\_\_construct,用於初始化對象;2.\_\_destruct,用於清理資源;3.\_\_call,處理不存在的方法調用;4.\_\_get,實現動態屬性訪問;5.\_\_set,實現動態屬性設置。這些方法在特定情況下自動調用,提升代碼的靈活性和效率。

PHP和Python各有優勢,選擇依據項目需求。 1.PHP適合web開發,尤其快速開發和維護網站。 2.Python適用於數據科學、機器學習和人工智能,語法簡潔,適合初學者。

PHP是一種廣泛應用於服務器端的腳本語言,特別適合web開發。 1.PHP可以嵌入HTML,處理HTTP請求和響應,支持多種數據庫。 2.PHP用於生成動態網頁內容,處理表單數據,訪問數據庫等,具有強大的社區支持和開源資源。 3.PHP是解釋型語言,執行過程包括詞法分析、語法分析、編譯和執行。 4.PHP可以與MySQL結合用於用戶註冊系統等高級應用。 5.調試PHP時,可使用error_reporting()和var_dump()等函數。 6.優化PHP代碼可通過緩存機制、優化數據庫查詢和使用內置函數。 7

在PHP8 中,match表達式是一種新的控制結構,用於根據表達式的值返回不同的結果。 1)它類似於switch語句,但返回值而非執行語句塊。 2)match表達式使用嚴格比較(===),提升了安全性。 3)它避免了switch語句中可能的break遺漏問題,增強了代碼的簡潔性和可讀性。

在PHP中可以通過使用不可預測的令牌來有效防範CSRF攻擊。具體方法包括:1.生成並在表單中嵌入CSRF令牌;2.在處理請求時驗證令牌的有效性。

ThinkPHP6路由參數中文處理及完整獲取在ThinkPHP6框架中,處理包含特殊字符(如中文及標點符號)的URL參數,常常...
