hive学习之经典sql50题 hive版(四)

21.查询男生、女生人数  select f.c,m.c from ( select count(sid) c from student where ssex='男' ) f join ( select count(sid) c from student where ssex='女' ) m;ci 22.查询名字中含有"风"字的学生信息 select * from student where sn
相关文章
相关标签/搜索