标签:
1.内部表
create table book (id bigint, name string) row format delimited fields terminated by ‘\t‘;
2.外部表
create external table book (id bigint, name string) row format delimited fields terminated by ‘\t‘ location ‘/book‘;
最后归纳两种表的区别:
3.两种表的选择
4.存储格式
CREATE TABLE records ( id string ) Row Format Delimited Fields Terminated By ‘\t’ ;
英语解释:行内格式的限定符以 ‘ \t ‘结尾终止
标签:
原文地址:http://www.cnblogs.com/skyl/p/4736230.html