摘要:
建立联合索引后,数据库会生成一颗B+树,值是主键。 回表:从联合索引表中查询到数据后,在回到主键表查询,避免数据冗余。 CREATE TABLE `t1` ( `id` int NOT NULL, `a` int DEFAULT NULL, `b` int DEFAULT NULL, `c` int 阅读全文
摘要:
public class ThreadDemo extends Thread { @Override public void run() { for(int i = 0; i <= 5; i++) { try { System.out.println(currentThread().getName( 阅读全文