摘要:
package com.JiHeTotal; import java.util.Map; public class Student { int id; String name; Map scode; int totalSum; public int getId() { return id; } public void setId(int id) { this.... 阅读全文
摘要:
-- ########## 01、集合逻辑 ########## -- MySQL中,只实现了一种集合逻辑:逻辑与,有两种用法:UNION 和 UNION ALL -- 临时表1 CREATE TABLE temp1 ( id INT NOT NULL ); -- 临时表2 CREATE TABLE temp2 ( id INT NOT NULL ); -- 模拟数据 I... 阅读全文