摘要:
GROUP BY满足的规则: 所有select 字段,除了聚合函数中的字段,都必须出现在GROUP BY 中。 例如:SELECT name,age,max(salary) FROM t_employee GROUP BY name,age salary 字段可以不用出现在 GROUP BY 中 阅读全文
摘要:
一、 public class ThreadTest { public static ExecutorService service = Executors.newFixedThreadPool(10); public static void main(String[] args) { /** * 阅读全文