1.first-of-type:第一个eg:选中了 div里的第一个p,以及div之外的第一个p. 2.last-of-type(最后一个) 外国人从0开始计数 3.nth-of-type(number) 从上向下数 eg: nth-of-type(1) 选中第二个 4.ntn-last-of-ty ...
分类:
其他好文 时间:
2020-01-04 18:44:55
阅读次数:
99
max() 求最大值 min() 求最小值 avg() 求平均值 sum() 求和 count() 求总个数 having 分组之后筛选条件的 一般跟聚合函数连用 order by 排序 desc 降序 asc 升序 select * from employee order by salary de ...
分类:
其他好文 时间:
2020-01-03 10:42:44
阅读次数:
59
给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。 链接 https://leetcode cn.com/problems/remove nth node from end of list/ 凑数吧 ...
分类:
其他好文 时间:
2020-01-02 22:54:45
阅读次数:
131
h5标签:nth-child(N){}指定标签父元素的第N个子元素的css样式 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 p:nth-child(2) 6 { 7 background:#ff0000; 8 } 9 </style> 10 </h ...
分类:
Web程序 时间:
2019-12-30 19:33:59
阅读次数:
211
注意: 当缓冲区为空时,程序才会停止,让用户输入数据 输入回车后,数据全部送到输入缓冲区 1 #include<iostream> 2 #include<Windows.h> 3 int main(void){ 4 char girlType; 5 int salary; 6 float heigh ...
分类:
其他好文 时间:
2019-12-30 16:02:15
阅读次数:
94
项目练习中遇到的问题记录: 1. 鼠标点击超链接时不显示小手掌:父元素绝对定位影响到了子元素 解决办法: .father{ z-index:998; } 2. object-fit CSS 属性指定可替换元素的内容应该如何适应到其使用的高度和宽度确定的框 3. 弹性盒布局中,弹性元素的 nth-ch ...
分类:
其他好文 时间:
2019-12-29 15:12:44
阅读次数:
102
题目 来源:力扣(LeetCode) 描述 编写一个 SQL 查询,获取 Employee?表中第二高的薪水(Salary)?。 | Id | Salary | | | | | 1 | 100 | | 2 | 200 | | 3 | 300 | 例如上述?Employee?表,SQL查询应该返回?2 ...
分类:
其他好文 时间:
2019-12-26 13:22:34
阅读次数:
59
[TOC]一引入我们学习变量是为了让计算机能够像人一样去记忆事物的某种状态,而变量的值就是用来存储事物状态的,很明显事物的状态分成不同种类的(比如人的年龄,身高,职位,工资等等),所以变量值也应该有不同的类型,例如salary=3.1#用浮点型去记录薪资age=18#用整型去记录年龄name=‘lili‘#用字符串类型去记录人名插图:恶搞图04二数字类型##2.1int整型2.1.1作用用来记录人
分类:
编程语言 时间:
2019-12-24 09:34:18
阅读次数:
74
今天进行sql查询时,碰到了一个问题: SQL语句: select r.user_id, r.job_id, sum(t.money) as job_salary from pj_punch_records as r left join pj_punch_transactions as t on r ...
分类:
数据库 时间:
2019-12-20 20:18:13
阅读次数:
297
1008 Elevator 题目: The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at whi ...
分类:
其他好文 时间:
2019-12-17 20:52:13
阅读次数:
121