摘要:switch。。。case public static void main(String[] args) { int result = 0; int i = 2; switch (i) { case 1: result = result + i; //i为2,此处不运行 System.out.pri
阅读全文
摘要:第一题 用聚合函数,分组可查出 select * FROM student GROUP BY name HAVING MIN(fenshu>=80) 用子查询先查出分数小于80的,在查出不在这其中的函数 SELECT distinct name from student where name not
阅读全文