-
什么是Hive查看全部
-
数据仓库查看全部
-
什么是Hive查看全部
-
hive查看时间戳 select unix_timestamp查看全部
-
学习目标查看全部
-
学习目标查看全部
-
Hive是构建在Hadoop HDFS上的一个数据仓库,本质就是一个数据库 Hadoop和hive都是基于Linux操作系统构建的查看全部
-
联机事物处理OLAP 联机分析处理OLAP查看全部
-
第一次听不太懂查看全部
-
很基础的内容,对初步了解hive有帮助,能建立起对hive的整体认识。继续学习第二部分。加油。查看全部
-
create view empinfo as select e.empno,e.ename, e.sal,e.sal*12 annlsal,e.dname from emp e,dept d where e.deptno=d.deptno; 物化视图(Oracle,Mysql存在,Hive不存在)查看全部
-
创建桶表:create table bucket_table(sid int,sname string,age int) clustered by(name) into 5 buckets;查看全部
-
Explain plan for查看全部
-
1.创建外部表:create external table external_student(sid int,sname string,age int) row format delimited fields terminated by ',' location '/input'; 2.查询数据:select * from external_student;查看全部
-
分区表可提高查询效率。 使用explain查询SQL语句的执行计划: explain select * from sample_data where gender='M'; explain select * from partition_table where gender='M';查看全部
举报
0/150
提交
取消