1、建表(CREATE TABLE) CREATE TABLE emp ( id int NOT NULL PRIMARY KEY, //添加主键 name varchar(20), gender varchar(2), performance int, salary double ) 如果创建表后 ...
分类:
数据库 时间:
2019-04-23 12:21:33
阅读次数:
144
第二章:排序、限制查询行 一、order by子句 1.order by排序规则 (1)asc,升序排列,默认取值 (2)desc,降序排列 (3)order by是select命令的最后一个子句 select last_name,salary,dept_id from s_emp order by ...
分类:
数据库 时间:
2019-04-22 12:02:33
阅读次数:
158
Given a non-empty list of words, return the k most frequent elements. Your answer should be sorted by frequency from highest to lowest. If two words h ...
分类:
其他好文 时间:
2019-04-21 09:56:16
阅读次数:
109
我今天才知道中文的冒号(:)和英文的冒号(:)不一样,惊了。 代码 product_list=[ ("ipad",3896), ("phone",3299), ("headset",2199), ("vip",999)]shopping_list=[]salary=input("your salar ...
分类:
编程语言 时间:
2019-04-15 18:29:03
阅读次数:
162
create table if not exists mydb.employees( name string comment "employee name", salary folat comment "employee salary", subordiantes array<string> com ...
分类:
其他好文 时间:
2019-04-15 17:55:07
阅读次数:
125
项目七: 各部门工资最高的员工(难度:中等) 创建Employee 表,包含所有员工信息,每个员工有其对应的 Id, salary 和 department Id。 + + + + + | Id | Name | Salary | DepartmentId | + + + + + | 1 | Joe ...
分类:
数据库 时间:
2019-04-14 20:42:07
阅读次数:
399
题目描述 编写一个 SQL 查询,获取 Employee 表中第二高的薪水(Salary) 。 例如上述 Employee 表,SQL查询应该返回 200 作为第二高的薪水。如果不存在第二高的薪水,那么查询应返回 null。 分析 select distinct salary from Employ ...
分类:
其他好文 时间:
2019-04-14 12:41:56
阅读次数:
129
题目描述 给定一个 salary表,如下所示,有m=男性 和 f=女性的值 。交换所有的 f 和 m 值(例如,将所有 f 值更改为 m,反之亦然)。要求使用一个更新查询,并且没有中间临时表。 例如: 运行你所编写的查询语句之后,将会得到以下表: 贴出代码 ...
分类:
其他好文 时间:
2019-04-14 12:40:21
阅读次数:
116
1. id,class类,标签,相邻, 子,后代 , 通配, 属性选择器(a[rel="external"]) , 伪类选择器(a:hover,li:nth-child) 2. 可继承的属性: font-size,font-family,color, text-indent 3. 不可继承: mar ...
分类:
Web程序 时间:
2019-04-09 17:03:14
阅读次数:
133
Given a linked list, remove the nth node from the end of list and return its head. For example, Note:Given n will always be valid.Try to do this in on ...
分类:
其他好文 时间:
2019-04-09 16:38:07
阅读次数:
151