摘要:
197题干 编写一个 SQL 查询,来查找与之前(昨天的)日期相比温度更高的所有日期的 id 。 返回结果 不要求顺序 。 SQL架构 Create table If Not Exists Weather (id int, recordDate date, temperature int) Trun 阅读全文
摘要:
184题干: 编写SQL查询以查找每个部门中薪资最高的员工。按 任意顺序 返回结果表。 SQL架构: Create table If Not Exists Employee (id int, name varchar(255), salary int, departmentId int) Creat 阅读全文
摘要:
181题干: 编写一个SQL查询来查找收入比经理高的员工。 以 任意顺序 返回结果表 SQL架构 Create table If Not Exists Employee (id int, name varchar(255), salary int, managerId int) Truncate t 阅读全文