摘要:
a) 关联查询(连接查询) select ename,dname from emp,dept where emp.deptno = dept.deptno; select * from emp inner join dept on emp.deptno = dept.deptno; select * 阅读全文
摘要:
//练习泛型 public class TestFanx { public static void main(String[] args) { Apple1 a1 = new Apple1();//a1为Integer //Apple1 a2 = new Apple1();继承了Number只能接受Number Apple1 a2 = new Apple1(); a1.setS... 阅读全文