blob: c0b13c191eb9fa21d9af26aad41153c578e0a220 [file] [log] [blame]
-- Drill 3580
select
c_date,
c_integer,
count(c_integer) over (partition by c_date),
count(c_bigint - c_integer) over (partition by c_date),
count(*) over (partition by c_date)
from
j1
;