摘要: Employee 表包含所有员工信息,每个员工有其对应的 Id, salary 和 department Id。 + + + + + | Id | Name | Salary | DepartmentId | + + + + + | 1 | Joe | 70000 | 1 | | 2 | Henry 阅读全文
posted @ 2020-01-10 16:45 小傻孩丶儿 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 某网站包含两个表,Customers 表和 Orders 表。编写一个 SQL 查询,找出所有从不订购任何东西的客户。 Customers 表: + + + | Id | Name | + + + | 1 | Joe | | 2 | Henry | | 3 | Sam | | 4 | Max | + 阅读全文
posted @ 2020-01-10 16:09 小傻孩丶儿 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 三数之和 import java.util.ArrayList;import java.util.List;/* * Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 阅读全文
posted @ 2020-01-10 15:28 小傻孩丶儿 阅读(427) 评论(0) 推荐(0) 编辑