摘要:
1.全表查询 select * from stu; 2.查询指定的列 select id,age from stu; 3.列别名 select id i from stu; 4.求总行数 select count(*) from stu; 5.求最大值 select max(age) max_age 阅读全文
摘要:
1.创建二级分区表 create table stu( id int, name string) partitioned by (month string, day string) row format delimited fields terminated by '\t'; 2.为二级分区表加载数 阅读全文