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 命令使用小笔记
    一个关于if else容易迷惑的问题
    浏览器与Node环境下的Event Loop
    镜面反射
    Socket通信原理
    Git
    vba工具
    为什么要用prototype
    Oracle 列转换为行, 逗号拼接.
    JS中的phototype
  • 原文地址:https://www.cnblogs.com/flowingfog/p/9977251.html
Copyright © 2011-2022 走看看