--环比去年 and substr(last_sum.dbilldate,1,4) = to_char(add_months(to_date(substr(tmp.dbilldate,1,7),'yyyy-mm'),-12),'yyyy') row_number() over()取最新版本 sele ...
分类:
其他好文 时间:
2021-02-22 12:25:28
阅读次数:
0
javaSE总结 Hello world public class Hello{ public static void main(String[] args){ System.out.print("Hello,World!"); } } 编译: javac Hello.java 运行: java H ...
分类:
编程语言 时间:
2021-02-20 12:35:14
阅读次数:
0
SpringBoot (3) WebServerApplicationContext SpringBoot版本 SpringBoot 2.1.6 WebServerApplicationContext 在run方法中,通过反射创建了AnnotationConfigServletWebServerAp ...
分类:
移动开发 时间:
2021-02-18 13:33:07
阅读次数:
0
Percolation API public class Percolation { public Percolation(int n) // create n-by-n grid, with all sites blocked public void open(int row, int col) ...
分类:
其他好文 时间:
2021-02-17 15:10:37
阅读次数:
0
Given the root of a binary tree, return the leftmost value in the last row of the tree. Example 1: Input: root = [2,1,3] Output: 1 Example 2: Input: r ...
分类:
其他好文 时间:
2021-02-10 12:54:11
阅读次数:
0
rownum 和 row_number()的区别 一、 Oracle中的rownum 用于从查询返回的行的编号,返回的第一行分配的是1,第二行是2,依次类推。这个伪字段可以用于限制查询返回的总行数,而且rownum不能以任何表的名称作为前缀。 rownum对于等于某值的查询条件 如果希望找到学生表中 ...
分类:
数据库 时间:
2021-02-08 12:51:03
阅读次数:
0
从MySQL5.6开始,mysqlbinlog支持将远程服务器上的binlog实时复制到本地服务器上。 mysqlbinlog的实时二进制复制功能并非简单的将远程服务器的日志复制过来,它是通过MySQL 5.6公布的Replication API实时获取二进制事件。本质上,就相当于MySQL的从服务 ...
分类:
数据库 时间:
2021-02-04 12:24:34
阅读次数:
0
前端框架 LayUI 官网 https://www.layui.com/doc/ 栅格布局 <div class="layui-container"> <h2>常规布局(以中型屏幕桌面为例):</h2> <div class="layui-row"> <div class="layui-col-md ...
分类:
其他好文 时间:
2021-02-04 11:46:58
阅读次数:
0
二进制日志: 1先确认正在用的是哪个日志: show master status; 2查看当前日志文件的事件: show binlog events in 'mysql-bin.000003'; 3通过位置号截取二进制日志: mysqlbinlog --start-position --stop-p ...
分类:
其他好文 时间:
2021-02-03 10:37:19
阅读次数:
0
for update 和 for update nowait的相同点 对操作的数据行进行加锁,在事务提交前防止其他操作对数据的修改 使用for update 测试工具 pgadmin,打开SQL窗口,关闭事务的自动提交,改成手动提交事务 select * from table1 where id = ...
分类:
其他好文 时间:
2021-02-02 10:48:35
阅读次数:
0