摘要: GROUP BY满足的规则: 所有select 字段,除了聚合函数中的字段,都必须出现在GROUP BY 中。 例如:SELECT name,age,max(salary) FROM t_employee GROUP BY name,age salary 字段可以不用出现在 GROUP BY 中 阅读全文
posted @ 2020-10-29 23:17 jock_javaEE 阅读(500) 评论(0) 推荐(0) 编辑
摘要: 一、 public class ThreadTest { public static ExecutorService service = Executors.newFixedThreadPool(10); public static void main(String[] args) { /** * 阅读全文
posted @ 2020-10-29 11:34 jock_javaEE 阅读(67) 评论(0) 推荐(0) 编辑