zoukankan      html  css  js  c++  java
  • LeetCode 183. Customers Who Never Order

    分析

    难度 易

    来源

    https://leetcode.com/problems/customers-who-never-order/

    题目

    Suppose that a website contains two tables, the Customers table and the Orders table. Write a SQL query to find all customers who never order anything.

    Table: Customers.

    +----+-------+
    | Id | Name  |
    +----+-------+
    | 1  | Joe   |
    | 2  | Henry |
    | 3  | Sam   |
    | 4  | Max   |
    +----+-------+

    Table: Orders.

    +----+------------+
    | Id | CustomerId |
    +----+------------+
    | 1  | 3          |
    | 2  | 1          |
    +----+------------+

    Using the above tables as example, return the following:

    +-----------+
    | Customers |
    +-----------+
    | Henry     |
    | Max       |
    +-----------+
    解答
    Runtime: 220 ms, faster than 94.79% of MySQL online submissions for Customers Who Never Order.
    1 # Write your MySQL query statement below
    2 
    3 select Name as Customers from Customers where Id not in (select CustomerId from Orders);
    博客园的编辑器没有CSDN的编辑器高大上啊
  • 相关阅读:
    git指令-撤销修改
    git指令-管理修改
    jquery高级
    jquery
    sql的练习题
    git指令-工作区和暂存区
    java-多线程安全-锁
    oracle习题-emp表查询练习
    java-异常进阶-包的使用
    oracle-函数总结
  • 原文地址:https://www.cnblogs.com/flowingfog/p/9977251.html
Copyright © 2011-2022 走看看