基础操作 创建关系 create table instructor2( id char(5) not null, name varchar(20) not null, dept_name varchar(20) not null, salary numeric(8,2), primary key(i ...
分类:
其他好文 时间:
2019-10-24 23:38:24
阅读次数:
77
题目链接:https://leetcode cn.com/problems/second highest salary/ 题目 编写一个 SQL 查询,获取 表中第二高的薪水 。 + + + | Id | Salary | + + + | 1 | 100 | | 2 | 200 | | 3 | 30 ...
分类:
其他好文 时间:
2019-10-22 18:10:43
阅读次数:
78
Given a linked list, remove the n-th node from the end of list and return its head. Example: Note: Given n will always be valid. Follow up: Could you ...
分类:
其他好文 时间:
2019-10-21 09:25:57
阅读次数:
82
一丶变量 1.Python中变量赋值不需要声明 2.每个变量在使用前必须赋值 3.变量名=值 age = 18 salary = 9999.99 name ='xiaSir' li = [1,2.1,'a',[1,2,3]] ids = (0,1,2,3,4) dic = {'name':'xiaS ...
分类:
编程语言 时间:
2019-10-20 20:10:36
阅读次数:
128
说明:最近在写前端vue 调样式的时候遇到了一个问题 同一个div下对多个同级别的<span>标签进行 边距设置 总结:这个是对面同事跟我说的,很感谢他。咱前段基础很菜 但是不怕菜,点滴积累即可 ...
分类:
Web程序 时间:
2019-10-17 15:51:44
阅读次数:
196
Given a linked list, remove the n-th node from the end of list and return its head. Example: Note: Given n will always be valid. Follow up: Could you ...
分类:
其他好文 时间:
2019-10-16 23:20:06
阅读次数:
94
考察如下的 HTML 片段,通过 CSS 的 nth-child() 伪选择器实现列表的颜色循环,比如每三个一次循环。 <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> <li>6</li> </ul> 很容易地,我们能得出如下样 ...
分类:
其他好文 时间:
2019-10-15 20:42:58
阅读次数:
2105
1. struct中的pointer: 下面两者实现的功能是不一样的: (a) *wp.salary=12500 (b) w.salary=12500 因为.的优先级更高,所以(b)会被翻译为*(wp.salary)=12500 所以应该写成*(wp).salary=12500或者wp->salar ...
分类:
其他好文 时间:
2019-10-13 19:02:49
阅读次数:
71
计算逻辑输入想要的参数后点击以下按钮进行计算和调整:FormulaBigger NSmaller NBigger MSmaller M所以在这个策略中Ft被Fixed在输入的值,其他的三个参数会按需调整。Formula Calculate stretegy 1. Force N to Nth pow... ...
分类:
其他好文 时间:
2019-10-13 11:29:38
阅读次数:
85
This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students. Inp ...
分类:
其他好文 时间:
2019-10-13 10:40:26
阅读次数:
89