查下昨天下午4点到现在 青岛3000占总3000的处理比例 select count (*) from do_log with(nolock ) where createtime between '20151012 16:00:000' and '20151013 13:00:000' and ( ...
分类:
其他好文 时间:
2019-10-05 16:22:52
阅读次数:
147
STATS 500 - Homework 2Due in class October 1Part A (Maximum 2 pages). The dataset uswages is drawn as a samplefrom the Current Population Survey in 19 ...
分类:
其他好文 时间:
2019-10-04 18:33:45
阅读次数:
84
点击箭头图片切换的同时,下面小图标也会随着切换,同理下面小图标切换时,上面也随着滚动。 示例代码如下: navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, 但是,在使用时,点击箭头或者下面小图标 ...
分类:
其他好文 时间:
2019-10-04 16:43:00
阅读次数:
195
MatplotLib 中的 fill_between()函数的详细用法: https://blog.csdn.net/kabuto_hui/article/details/84979606 ...
分类:
其他好文 时间:
2019-10-04 13:09:25
阅读次数:
86
链接: https://codeforces.com/contest/1234/problem/B2 题意: The only difference between easy and hard versions are constraints on n and k. You are messagin ...
分类:
Web程序 时间:
2019-10-02 22:39:26
阅读次数:
213
An arithmetic progression is such a non-empty sequence of numbers where the difference between any two successive numbers is constant. This constant n ...
分类:
其他好文 时间:
2019-10-02 10:33:46
阅读次数:
96
第一种方法: cross join CROSS JOIN 把两张表中的数据进行 N M的组合,即笛卡尔积 这里的两张表利用 union all都有5条数据,所以进行 cross join 后 就有25条数据 而指定的日期区间就会从这25条数据总产生 ...
分类:
数据库 时间:
2019-09-29 16:59:10
阅读次数:
438
语法: 分析函数 over(partition by 列名 order by 列名 rows between 开始位置 and 结束位置) 常用分析函数: 聚合类 avg()、sum()、max()、min() 排名类 row_number() 按照值排序时产生一个自增编号,不会重复 rank() ...
分类:
其他好文 时间:
2019-09-29 16:52:50
阅读次数:
236
写在前面 支撑SQL和关系数据库的基础理论: 数学领域的集合论 和 逻辑学标准体系的谓词逻辑 理论篇 什么是谓词?谓词是返回值为真值( true false unknown )的函数 关系数据库里,每一个行数据可以看作是一个命题 实体的阶层 0阶实体(单行) 1阶谓词( = between and) ...
分类:
数据库 时间:
2019-09-28 18:11:41
阅读次数:
98