A. SELECT * FROM employees where salary > (SELECT MIN(salary) FROM employees GROUP BY department _ id);
B. SELECT * FROM employees WHERE salary = (SELECT AVG(salary) FROM employees GROUP BY department _ id);
C. SELECT distinct department_id FROM employees Where salary > ANY (SELECT AVG(salary) FROM employees GROUP BY department _ id);
D. SELECT department_id FROM employees WHERE SALARY > ALL (SELECT AVG(salary) FROM employees GROUP BY department _ id);
E. SELECT last_name FROM employees Where salary > ANY (SELECT MAX(salary) FROM employees GROUP BY department _ id);
F. SELECT department_id FROM employees WHERE salary > ALL (SELECT AVG(salary) FROM employees GROUP BY ANG (SALARY));
第1题:
检查
A.expect
B.except
C.excuse
D.examine
第2题:
Nothing in these Rules shall ______ any vessel,or the owner,master or crew thereof,from the consequences of any precaution which may be required by the ordinary practice of seaman,or by the special circumstances of the case.
A.exonerate
B.exhaust
C.exercise
D.examine
第3题:
第4题:
Despite the wonderful acting and well-developed plot the _________ movie could not hold our attention.
A) three-hours B) three-hour
C) three-hours’ D) three-hour’s
选B
用破折号连接的作形容词不用复数.
第5题:
第6题:
1. 创建并访问DataFrame对象。 1) 创建3×3DataFrame数据对象:数据内容为1-9;行索引为字符a,b,c;列索引为字符串‘one’,‘two’,‘three’; 2) 查询列索引为‘two’和‘three’两列数据; 3) 查询第0行、第2行、第0列、第2列数据; 4) 筛选第1列中值大于2的所有行数据,另存为data1对象; 5) 为data1添加一列数据,列索引为‘four’,值都为10; 6) 将data1所有值大于9的数据修改为8; 7) 删除data1中第0行和第1行数据。