Sample Picasso Diagrams » QT8  (30 Slides)     [Page 1 of 2] :: Jump To  
Query Template

select
    o_year,
    sum(case when
    nation = 'BRAZIL' then volume
    else 0 end) / sum(volume)
from
    (
        select
            extract(year from o_orderdate) as o_year,
            l_extendedprice * (1 - l_discount) as volume,
            n2.n_name as nation
        from
            part,
            supplier,
            lineitem,
            orders,
            customer,
            nation n1,
            nation n2,
            region
        where
            p_partkey = l_partkey
            and s_suppkey = l_suppkey
            and l_orderkey = o_orderkey
            and o_custkey = c_custkey
            and c_nationkey = n1.n_nationkey
            and n1.n_regionkey = r_regionkey
            and r_name = 'AMERICA'
            and s_nationkey = n2.n_nationkey
            and o_orderdate between date '1995-01-01' and date '1996-12-31'
            and p_type = 'ECONOMY ANODIZED STEEL'
            and s_acctbal :varies
            and l_extendedprice :varies
    )
group by
    o_year
order by
    o_year

Optimizer Diagrams
  You have reached the first page You have reached the first page      Up one level      Next page Last page  
Plan Diagram * 1920 x 1170 * (193KB)
Reduced Diagram (20%) * 1920 x 1170 * (165KB)
Cardinality Diagram * 1920 x 1170 * (183KB)
Cost Diagram * 1920 x 1170 * (181KB)
Plan1 * 1936 x 1186 * (132KB)
  Plan Diagram  
  Reduced Diagram (20%)  
  Cardinality Diagram  
  Cost Diagram  
  Plan1  
Plan2 * 1936 x 1186 * (133KB)
Plan3 * 1936 x 1186 * (127KB)
Plan4 * 1936 x 1186 * (123KB)
Plan5 * 1936 x 1186 * (119KB)
Plan6 * 1936 x 1186 * (133KB)
  Plan2  
  Plan3  
  Plan4  
  Plan5  
  Plan6  
Plan7 * 1936 x 1186 * (133KB)
Plan8 * 1936 x 1186 * (123KB)
Plan9 * 1936 x 1186 * (121KB)
Plan10 * 1936 x 1186 * (117KB)
Plan11 * 1936 x 1186 * (127KB)
  Plan7  
  Plan8  
  Plan9  
  Plan10  
  Plan11  
Album last updated on 2/9/09 9:58 PM
Powered by Jalbum 8.1 and BluPlusPlus skin
Indian Institute of Science