SELECT case when A.saleguesttype = '1' then '1人' when A.saleguesttype = '2' then '2人' when A.saleguesttype = '3' then '3人' when A.saleguesttype = '4' then '4人' else '其他' end as saleguesttype , sum(tc) as tc_amount from edw_report_ph_db.ads_ph_five_minute_tc_fact_day A inner join edw_report_ph_db.edw_dim_bsc_t_dp_c_user_ph_jm B on A.STORECODE = B.STORE_CODE inner join edw_report_kfc_db.edw_dim_business_date C on A.bohbusinessdate = C.business_date_str where 1=1 and market_code is not null and market_code != '' and market_code in ('1') and regexp_replace(A.bohbusinessdate, '-', '') >= '20230302' and regexp_replace(A.bohbusinessdate, '-', '') <= '20230316' group by A.saleguesttype sql优化
时间: 2024-01-21 16:03:07 浏览: 68
这段 SQL 语句可以进行如下优化:
1. 对于字符串类型的字段,可以使用单引号或者双引号进行表示,因此可以将 `where` 子句中的数字常量使用单引号或双引号进行表示,如 `'1'`、`'2'`,这样可以提高代码的可读性。
2. `regexp_replace` 函数的使用会导致全表扫描,影响查询性能。可以将字符串类型的日期转换为日期类型,然后和日期类型的常量进行比较。
3. 在 `inner join` 子句中,可以使用表的别名来提高代码的可读性。
4. 对于复杂的 SQL 语句,可以使用 `explain` 命令分析查询计划,找到性能瓶颈并进行优化。
优化后的 SQL 语句如下所示:
```
SELECT
CASE
WHEN A.saleguesttype = '1' THEN '1人'
WHEN A.saleguesttype = '2' THEN '2人'
WHEN A.saleguesttype = '3' THEN '3人'
WHEN A.saleguesttype = '4' THEN '4人'
ELSE '其他'
END AS saleguesttype,
SUM(tc) AS tc_amount
FROM edw_report_ph_db.ads_ph_five_minute_tc_fact_day A
INNER JOIN edw_report_ph_db.edw_dim_bsc_t_dp_c_user_ph_jm B
ON A.STORECODE = B.STORE_CODE
INNER JOIN edw_report_kfc_db.edw_dim_business_date C
ON A.bohbusinessdate = C.business_date_str
WHERE market_code IS NOT NULL
AND market_code != ''
AND market_code IN ('1')
AND A.bohbusinessdate >= '2023-03-02'
AND A.bohbusinessdate <= '2023-03-16'
GROUP BY A.saleguesttype;
```
阅读全文