hive内部表和外部表&&LIKE 复制
程序员文章站
2022-03-08 14:24:10
...
hive内部表和外部表:
hive 创建内部表时,会将数据移动到数据仓库指向的路径;
若创建外部表,仅记录数据所在的路径,不对数据的位置做任何改变。在删除表的时候,内部表的元数据和数据会被一起删除,而外部表只删除
元数据,不删除数据。
EXTERNAL 关键字可以让用户创建一个外部表,在建表的同时指定一个指向实际数据的路径(LOCATION)
例如:
创建内部表:
create table student(Sno int,Sname string,Sex string,Sage int ,Sdept string)
row format delimited
fields terminated by ',';
1.创建外部表:
create external table student_ext(Sno int,Sname string,Sex string,Sage int ,Sdept string)
row format delimited
fields terminated by ','
location '/stu';
2.上传数据到hadoop
hadoop fs -ls /
hadoop fs -mkdir /stu
hadoop fs -put /opt/data/hivedata/student.txt /stu
LIKE 复制
like允许用户复制现有的表结构,但不复制数据。
create table t_user_copy like t_user;