外部表:
先上传数据,在创建外部表,查询。
如:create external table ext_student (id int,name string) row format delimited fields terminated by '\t' location '/data';
内部表:
先创建表,在上传数据,到指定目录。
都是可以查询的。
因为他们的信息都记录在mysql中。也就是metastore。
外部表:
先上传数据,在创建外部表,查询。
如:create external table ext_student (id int,name string) row format delimited fields terminated by '\t' location '/data';
内部表:
先创建表,在上传数据,到指定目录。
都是可以查询的。
因为他们的信息都记录在mysql中。也就是metastore。