摘要: 1. 视图操作 1) 创建一个测试表。 ``` hive> create table test(id int,name string); OK Time taken: 0.385 seconds hive> desc test; OK id int name string Time taken: 0 阅读全文
posted @ 2018-05-19 10:17 子墨言良 阅读(358) 评论(0) 推荐(0) 编辑
摘要: Hive 和 Mysql 的表操作语句类似,如果熟悉 Mysql,学习Hive 的表操作就非常容易了,下面对 Hive 的表操作进行深入讲解。 **(1)先来创建一个表名为student的内部表** hive> create table if not exists student (sno INT, 阅读全文
posted @ 2018-05-19 10:13 子墨言良 阅读(582) 评论(0) 推荐(0) 编辑