zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

2022-07-29 mysql/stonedb慢SQL-Q17-分析

mysqlSQL 分析 2022 07 29
2023-09-27 14:25:42 时间

摘要:

对Q17慢SQL进行分析

SQL分析:

SQL:

/stonedb57/install/bin/mysql -D tpch -e " 
        select
            sum(l_extendedprice) / 7.0 as avg_yearly
        from
            lineitem,
            part
        where
            p_partkey = l_partkey
            and p_brand = 'Brand#23'
            and p_container = 'MED BOX'
            and l_quantity < (
                select
                    0.2 * avg(l_quantity)
                from
                    lineitem
                where
                    l_partkey = p_partkey
            );
    "




explain分析:

*************************** 1. row ***************************
           id: 1
  select_type: PRIMARY
        table: lineitem
   partitions: NULL
         type: ALL
possible_keys: NULL