当前位置:   article > 正文

hive建表脚本_hivesql建表脚本

hivesql建表脚本
drop table if exists ld.boi_asset_units;
create table if not exists ld.boi_asset_units
(
    asset_unit_code	                     string         comment'资产单元代码'
   ,asset_unit_name	                     string	        comment'资产单元名称'
   ,asset_unit_group_code	             string	        comment'确认金额'
   ,asset_unit_parent_code	             string	        comment'上级资产单元代码'
   ,asset_unit_parent_name	             string	        comment'上级资产单元名称'
   ,asset_unit_level	                 int		    comment'资产单元层级'
   ,fund_code	                         string	        comment'产品代码'
   ,fund_name	                         string         comment'产品名称'
   ,investment_manager_code	             string         comment'投资经理代码'
   ,investment_manager_name	             string	        comment'投资经理名称'
   ,performance_benchmark_code           string	        comment'业绩基准代码'
   ,performance_benchmark_name           string         comment'业绩基准名称'
   ,status	                             int            comment'状态'
   ,is_forbidden_open	                 int            comment'是否限制开仓 normal=0=正常&forbidden=1=限制开仓'
   ,remark	                             string         comment'备注'
   ,set_up_shares	                     decimal(22,2)  comment'成立规模'
   ,start_date	                         string         comment'成立日期'
   ,end_date	                         string         comment'到期日期'
   ,reviewer_code	                     string	        comment'审核人代码'
   ,reviewer_name	                     string	        comment'审核人名称'
   ,review_status	                     int	        comment'审核状态'
   ,reviewed_at	                         string         comment'审核时间'
   ,is_valid	                         int	        comment'数据是否有效'
   ,created_by	                         string         comment'创建者'
   ,created_at	                         string		    comment'创建时间'
   ,updated_by	                         string         comment'修改者'
   ,updated_at	                         string		    comment'修改时间'
   ,is_tacit_asset	                     decimal(2)	    comment'更新时间'                                 
  
)
  row format delimited fields terminated by "\u0001"
stored as textfile
location '/user/hive/warehouse/ld.db/boi_asset_units';


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/969629
推荐阅读
相关标签
  

闽ICP备14008679号