摘要:
分组函数多表连接查询: 1. 等值连接 SELECT e.empno,e.ename,d.dname FROM emp e, dept d WHERE e.deptno=d.deptno 在没有条件满足的时候,是不会有数据显示的 2.不等值连接 使用内连接只有满足连接条件的才会显示,如果想要使内容显 阅读全文
摘要:
public class Thread1 { public static void main(String[] args) { //TestThread t = new TestThread(); TestThread2 tt = new TestThread2(); //Thread t2 = new Thread(t); tt.start();//子类继承了父类的... 阅读全文