摘要:
Hive Data Manipulation LanguageHive Data Manipulation LanguageLoading files into tablesSyntaxSynopsisNotesInserting data into Hive Tables from queries... 阅读全文
摘要:
Student(S#,Sname,Sage,Ssex) 学生表Course(C#,Cname,T#) 课程表SC(S#,C#,score) 成绩表Teacher(T#,Tname) 教师表问题:1、查询“001”课程比“002”课程成绩高的所有学生的学号;select a.S# from (select s#,score from SC where C#=’001′) a, (select s#,score from SC where C#=’002′) b where a.score>b.score and a.s#=b.s#;2、查询平均成绩大于60分的同学的学号和平均成绩;sele 阅读全文
摘要:
编程题,开发岗三道都必做,前端岗和测试岗前两道必做1. implement a function of String randomAlphabetic(int count)Creats a random string whose length is the number of characters ... 阅读全文