摘要:
#1 使用含有关键字exists查找未分配具体部门的员工的所有信息。 思路一 对于每一个员工,查询他的id是否存在于dept_emp select * from employees where NOT EXISTS( select * from dept_emp where employees.em 阅读全文
摘要:
public class Person { public String name="Person"; int age=0; { System.out.println("初始化块:"+name); name = "initBlock"; System.out.println("初始化块:"+name) 阅读全文