摘要:
package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; im 阅读全文
摘要:
class TestThreadOrderPrint { // 创建三个线程顺序打印ABC五次 public static void main(String[] args) { final int[] flag = {1}; Object a = new Object(); Thread A = n 阅读全文
摘要:
-- 使用分析函数实现数据行的排位产生新列 select ename,sal, rank() over(order by sal desc), -- 相同排位相同,后续值跳跃 dense_rank() over(order by sal desc), -- 相同排位相同,后续值连续 row_numb 阅读全文
摘要:
表 Create Table CREATE TABLE `score` ( `id` int(11) NOT NULL COMMENT 'id', `name` varchar(20) DEFAULT NULL COMMENT '姓名', `course` varchar(10) DEFAULT N 阅读全文
摘要:
查询语句的执行顺序:1、FROM 子句:执行顺序为从后往前、从右到左。数据量较少的表尽量放在后面。2、WHERE子句:执行顺序为自下而上、从右到左。将能过滤掉最大数量记录的条件写在WHERE 子句的最右。3、GROUP BY:执行顺序从左往右分组,最好在GROUP BY前使用WHERE将不需要的记录 阅读全文