Hive SQL之表与建表

 

数据类型:

 建表

create database itheima;
--1.创建一张表
-- 表名
    --字段 名称 类型 顺序
    --字段之间的分隔符
create table itheima.t_archer(
    id int,
    name string ,
    hp_max int,
    mp_max int,
    attack_max int,
    defense_max int,
    attrack_range string,
    role_main string ,
    role_assist string

)
row format delimited
fields terminated by "\t";--字段之间分隔符tab键
select * from t_archer;
--使用默认分隔符 \001
create table  t_team_ace_player(
    id int,
    team_name string,
    ace_player_name string
)
--row format delimited
--fields terminated by "\001";

注意:分割符指定不正确,数据显示不出来。

posted @ 2023-07-27 17:16  会秃头的小白  阅读(49)  评论(0编辑  收藏  举报