一. RabbitMq简介 二. 安装步骤 参考: https://www.cnblogs.com/yaopengfei/p/13763500.html (需要补充一下) ! 作 者 : Yaopengfei(姚鹏飞) 博客地址 : http://www.cnblogs.com/yaopengfei ...
分类:
其他好文 时间:
2021-04-14 11:49:16
阅读次数:
0
常用关系数据库分页SQL都是不相同的,不过大同小异。 下面是Oracle分页简单事例图片以及代码: 1、普通查询 select * from table_Name t order by active_count desc; 2、查询第一条记录 select * from (select * from ...
分类:
数据库 时间:
2021-04-13 12:44:12
阅读次数:
0
该案例中涉及performance_schema.data_locks表是MySQL8.0中新增的,8.0之前的版本不支持,如果一个事物长时间未提交,我们虽然可以从information_schema.innodb_trx、performance_schema.events_transactions ...
分类:
其他好文 时间:
2021-04-13 12:13:46
阅读次数:
0
-- DENSE_RANK:并列连续排序,并列即相同的值,相同的值保留重复名次,遇到下一个不同值时,依然按照连续数字排名 SELECT emp_no, salary, DENSE_RANK() OVER(ORDER BY salary DESC) as t_rank from salaries; - ...
分类:
数据库 时间:
2021-04-12 12:32:54
阅读次数:
0
StreamWriter and UTF-8 Byte Order Marks I'm having an issue with StreamWriter and Byte Order Marks. The documentation seems to state that the Encoding ...
分类:
其他好文 时间:
2021-04-12 12:02:46
阅读次数:
0
isset 判断变量是否已存在 empty 判断变量是否为空或为0 is_null 判断变量是否为NULL 变量emptyis_nullisset $a=”” true false true $a=null true true false var $a true true false $a=arra ...
分类:
Web程序 时间:
2021-04-10 13:35:23
阅读次数:
0
Verifying an Alien Dictionary (E) 题目 In an alien language, surprisingly they also use english lowercase letters, but possibly in a different order. Th ...
分类:
其他好文 时间:
2021-04-10 12:58:26
阅读次数:
0
有个需求要求过滤掉同单号的 未检验数据, 如果已检验数据和未检验数据同时存在,则取已检验数据,如果只有未检验数据,取未检验数据 后来找的一个解决方案 使用ROW_NUMBER() OVER()做过滤 具体如下 ( SELECT ROW_NUMBER ( ) OVER ( PARTITION BY * ...
分类:
数据库 时间:
2021-04-09 13:02:10
阅读次数:
0
Given an integer array nums sorted in non-decreasing order, return an array of the squares of each number sorted in non-decreasing order. Example 1: I ...
分类:
其他好文 时间:
2021-04-08 13:55:44
阅读次数:
0
官方文档: https://docs.docker.com/engine/install/centos/ 1、先卸载旧版本 sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-l ...
分类:
其他好文 时间:
2021-04-08 13:41:47
阅读次数:
0