Hive管理表

hive建表初体验 use myhive; create table stu(id int,name string); insert into stu values (1,“zhangsan”); select * from stu; 创建表并指定字段之间的分隔符 create table if not exists stu2(id int ,name string) row format del
相关文章
相关标签/搜索