<html> <head> <meta charset="utf-8"/> <title>从上往下,从左往右</title> <style> #flex-container {flex-flow:column wrap; } #flex-container > :nth-child(4n - 2) ...
分类:
编程语言 时间:
2020-04-06 15:30:06
阅读次数:
351
1. 求工资 大于 8888 , 年龄大于32 的人数 SELECT SUM(CASE WHEN SALARY > 8888 AND AGE >32 THEN 1 ELSE 0 END) FROM S_EMP; 2.如何快速求得各班最高得分 SELECT(CLASS_NO,MAX(SCORE)) G ...
分类:
其他好文 时间:
2020-04-06 09:23:25
阅读次数:
63
一、大数据预处理的几个步骤 1.数据预处理 2.数据清洗 3.数据集成 4.数据归约 5.数据变换 6.数据离散化 7.大数据预处理 二、数据预处理 现实中的数据大多是“脏”数据: ①不完整 缺少属性值或仅仅包含聚集数据 ②含噪声 包含错误或存在偏离期望的离群值 比如:salary=“-10”,明显 ...
分类:
其他好文 时间:
2020-04-03 22:15:48
阅读次数:
171
SQL架构 Employee 表包含所有员工,他们的经理也属于员工。每个员工都有一个 Id,此外还有一列对应员工的经理的 Id。 + + + + + | Id | Name | Salary | ManagerId | + + + + + | 1 | Joe | 70000 | 3 | | 2 | ...
分类:
数据库 时间:
2020-04-03 12:20:10
阅读次数:
138
A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)-- everyone involved in moving a product from supplier to customer ...
分类:
其他好文 时间:
2020-04-03 00:24:56
阅读次数:
77
找1 n数组的第k小(k从1开始编号) 注意即使是1 n的数组,找第k小也是 而非 如果是0 n 1的数组,找第k小为(k从0开始编号) 复杂度O(n),执行完毕后a[k]就是第k小的元素 ...
分类:
其他好文 时间:
2020-03-31 10:52:55
阅读次数:
115
The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elev ...
分类:
其他好文 时间:
2020-03-27 12:53:59
阅读次数:
79
对css的伪类选择器真的是又爱又恨,每次都很完美的被搞混了,还是得做一下总结。 :nth of type(n) 选择第n个元素 :first of type 选择第一个元素 :last of type 选择最后一个元素 :nth child(n) 选择父元素的第n个子元素 :nth last chi ...
分类:
Web程序 时间:
2020-03-24 19:05:22
阅读次数:
232
#排序查询/*语法:select 查询列表 from 表 [where 筛选条件] order by 排序序列 [asc/desc] */SELECT * FROM employees ORDER BY salary DESC; #默认是asc(升序) #查询部门编号>=90的员工信息,按入职时间的 ...
分类:
数据库 时间:
2020-03-21 14:28:08
阅读次数:
97
链接:https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list/ 给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。 示例: 给定一个链表: 1->2->3->4->5, 和 n = 2. 当删除了倒数第二个节 ...
分类:
其他好文 时间:
2020-03-21 00:01:26
阅读次数:
69