zoukankan      html  css  js  c++  java
  • 595. 大的国家

    这里有张 World 表

    +-----------------+------------+------------+--------------+---------------+
    | name | continent | area | population | gdp |
    +-----------------+------------+------------+--------------+---------------+
    | Afghanistan | Asia | 652230 | 25500100 | 20343000 |
    | Albania | Europe | 28748 | 2831741 | 12960000 |
    | Algeria | Africa | 2381741 | 37100000 | 188681000 |
    | Andorra | Europe | 468 | 78115 | 3712000 |
    | Angola | Africa | 1246700 | 20609294 | 100990000 |
    +-----------------+------------+------------+--------------+---------------+
    如果一个国家的面积超过300万平方公里,或者人口超过2500万,那么这个国家就是大国家。

    编写一个SQL查询,输出表中所有大国家的名称、人口和面积。

    例如,根据上表,我们应该输出:

    +--------------+-------------+--------------+
    | name | population | area |
    +--------------+-------------+--------------+
    | Afghanistan | 25500100 | 652230 |
    | Algeria | 37100000 | 2381741 |
    +--------------+-------------+--------------+

    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/big-countries

    # Write your MySQL query statement below
    select
        name,population,area
    from
        world
    where
        area>3000000 or population>25000000
    ;
    # Write your MySQL query statement below
    select
        name,population,area
    from
        world
    where
        area>3000000
    union
    select
        name,population,area
    from 
        world
    where
        population>25000000
    ;
    # Write your MySQL query statement below
    select name,population,area from world where area>3000000 or population>25000000
  • 相关阅读:
    基础--补习汇编笔记--1
    SpProcPool阅读笔记--1
    一般树--common tree
    code-reading-notes--xml 解析
    code-reading-notes--libyang-1
    linux--rbtree 解惑 insert
    记录一次手动杀毒过程
    B-Tree概念
    db2 -- 存储过程01
    sql server 带输入输出参数的分页存储过程(效率最高)
  • 原文地址:https://www.cnblogs.com/xxxsans/p/13660426.html
Copyright © 2011-2022 走看看