hql增删改查

1增

insert

load

2删

1 表

Drop 表结构都没有了

1
DROP TABLE IF EXISTS employee;

2 记录

没有DELETE

TRUNCATE

所有记录

truncate table employees;

INSERT OVERWRITE

1
2
INSERT OVERWRITE TABLE dpc_test SELECT * FROM dpc_test WHERE age is not null;

3改

1 update

针对记录

1
update student set id='444' where name='tom';

2 Alter

表结构

4查

select

Author

Lavine Hu

Posted on

2022-05-06

Updated on

2022-05-06

Licensed under

# Related Post
  1.hive优化
  2.hql常见操作
  3.函数
  4.加载数据
  5.建表
  6.hive数据导入导出
Comments

:D 一言句子获取中...