blob: e4e45a424061a8476bc1108e239de40a62761e2d [file] [log] [blame]
--! qt:dataset:srcpart
-- SORT_QUERY_RESULTS
show partitions srcpart;
create table if not exists nzhang_part8_n0 like srcpart;
describe extended nzhang_part8_n0;
set hive.merge.mapfiles=false;
set hive.exec.dynamic.partition=true;
explain extended
from srcpart
insert overwrite table nzhang_part8_n0 partition (ds, hr) select key, value, ds, hr where ds <= '2008-04-08'
insert overwrite table nzhang_part8_n0 partition(ds='2008-12-31', hr) select key, value, hr where ds > '2008-04-08';
from srcpart
insert overwrite table nzhang_part8_n0 partition (ds, hr) select key, value, ds, hr where ds <= '2008-04-08'
insert overwrite table nzhang_part8_n0 partition(ds='2008-12-31', hr) select key, value, hr where ds > '2008-04-08';
show partitions nzhang_part8_n0;
select * from nzhang_part8_n0 where ds is not null and hr is not null;