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