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的编辑器高大上啊
  • 相关阅读:
    hdu 2647 Reward
    hdu 2094 产生冠军
    hdu 3342 Legal or Not
    hdu 1285 确定比赛名次
    hdu 3006 The Number of set
    hdu 1429 胜利大逃亡(续)
    UVA 146 ID Codes
    UVA 131 The Psychic Poker Player
    洛谷 P2491消防 解题报告
    洛谷 P2587 [ZJOI2008]泡泡堂 解题报告
  • 原文地址:https://www.cnblogs.com/flowingfog/p/9977251.html
Copyright © 2011-2022 走看看