hive

1.hive插入语句
insert into table mytable partition (dt = '${BIZ_DATE}')
select 123
,456
,cast(789.1as double)
,1
,array(cast(1 as bigint), cast(2 as bigint))
,5764607523035021914
from (
select 1
) x
;

你可能感兴趣的:(hive)