SQLZOO:SELECT from WORLD

数据表:world

namecontinentareapopulationgdp
AfghanistanAsia6522302550010020343000000
AlbaniaEurope28748283174112960000000
AlgeriaAfrica238174137100000188681000000
AndorraEurope468781153712000000
AngolaAfrica124670020609294100990000000
...

Q1 Introduction

Read the notes about this table. Observe the result of running this SQL command to show the name, continent and population of all countries.

SELECT name, continent, population FROM world


Q2 Large Countries

How to use WHERE to filter records. Show the name for the countries that have a population of at least 200 million. 

SELECT name FROM world
WHERE population >=200000000
语法结构

SELECT + FROM + WHERE + GROUP BY + HAVING + ORDER BY + LIMIT


Q3 Per capita GDP

Give the name and the per capita GDP for those countries with a population of at least 200 million

SELECT name,gdp/population FROM world 
WHERE population >=200000000

Q4 South America In millions

Show the name and population in millions for the countries of the continent 'South America'. Divide the population by 1000000 to get population in millions

SELECT name,population/1000000 FROM world 
WHERE continent = 'South America'

Q5 France, Germany, Italy

Show the name and population for France, Germany, Italy

SELECT name,population FROM world 
WHERE name='France' OR name='Germany' OR name='Italy'
AND OR

AND:两条都符合才显示

OR:任意符合一条就显示

AND 优先级大于 OR ,可以使用括号来结合使用 AND OR 

SELECT name,population FROM world 
WHERE name IN ('France','Germany','Italy')
IN

允许在 WHERE 子句中规定多个值

SQL IN 语法:

SELECT column1, column2, ...
FROM table_name
WHERE column IN (value1, value2, ...);

Q6 United

Show the countries which have a name that includes the word 'United'

SELECT name FROM world 
WHERE name LIKE '%United%'
模糊查询 LIKE

% :表示任意 0 或多个字符。可匹配任意类型和长度的字符,若是中文使用%%表示

_ : 表示任意单个字符。匹配单个任意字符,它常用来限制表达式的字符长度语句

Q7 Two ways to be big

Two ways to be big: A country is big if it has an area of more than 3 million sq km or it has a population of more than 250 million.

Show the countries that are big by area or big by population. Show name, population and area.

SELECT name,population,area FROM world 
WHERE area >= 3000000 OR population >= 250000000

Q8 One or the other (but not both)

Exclusive OR (XOR). Show the countries that are big by area (more than 3 million) or big by population (more than 250 million) but not both. Show name, population and area.

SELECT name,population,area FROM world 
WHERE area > 3000000 XOR population > 250000000

相当于: 

SELECT name,population,area FROM world WHERE 
area > 3000000 AND population <= 250000000 
OR 
population > 250000000 AND area <= 3000000
XOR 异或

获得仅满足一条的数据

如果A为真,则查出不满足B条件数据;如果A为假,则查出满足B条件数据

Q9 Rounding

Show the name and population in millions and the GDP in billions for the countries of the continent 'South America'. Use the ROUND function to show the values to two decimal places.

SELECT name,ROUND(population/1000000,2),ROUND(gdp/1000000000,2) FROM world 
WHERE continent = 'South America'
ROUND(x,n)

x保留n位小数,n可为负数

Q10 Trillion dollar economies

Show the name and per-capita GDP for those countries with a GDP of at least one trillion (1000000000000; that is 12 zeros). Round this value to the nearest 1000.

SELECT name,ROUND(gdp/population/1000)*1000 FROM world 
WHERE gdp>=1000000000000
SELECT name,ROUND(gdp/population,-3) FROM world 
WHERE gdp>=1000000000000;

Q11 Name and capital have the same length

Show the name and capital where the name and the capital have the same number of characters.

SELECT name,capital FROM world 
WHERE LENGTH(name)=LENGTH(capital)
LENGTH

You can use the LENGTH function to find the number of characters in a string

Q12 Matching name and capital

Show the name and the capital where the first letters of each match. Don't include countries where the name and the capital are the same word.

SELECT name,capital FROM world
WHERE LEFT(name,1)=LEFT(capital,1) 
AND name<>capital
LEFT(x,n)

x保留前n位字符

< >

You can use <> as the NOT EQUALS operator

Q13 All the vowels

Find the country that has all the vowels (a e i o u) and no spaces in its name.

SELECT name FROM world 
WHERE name LIKE '%a%' 
AND name LIKE '%e%' 
AND name LIKE '%i%' 
AND name LIKE '%o%' 
AND name LIKE '%u%' 
AND name NOT LIKE '% %'

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/11311.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

运维:CentOS常见命令详解

CentOS&#xff08;Community ENTerprise Operating System&#xff0c;中文意思是社区企业操作系统&#xff09;是Linux发行版之一&#xff0c;它是来自于Red Hat Enterprise Linux依照开放源代码规定释出的源代码所编译而成。由于出自同样的源代码&#xff0c;因此有些要求高…

重学SpringBoot3-SPI机制

更多SpringBoot3内容请关注我的专栏&#xff1a;《SpringBoot3》 期待您的点赞&#x1f44d;收藏⭐评论✍ 重学SpringBoot3-SPI机制 什么是 SPI&#xff1f;Spring Boot 中的 SPI 机制spring.factories 文件自动配置的实现启动流程中的作用 SPI实际应用步骤 1: 新建模块步骤 2:…

八股Day5 框架篇

Day5 框架 1.Spring框架的bean是单例的吗 2.Spring框架的bean是线程安全的吗 3.什么是AOP 4.项目使用AOP了吗 5.Spring的事务如何实现 6.Spring中事务失效的场景有哪些 7.Spring的Bean的生命周期 8.Spring的循环利用 9.具体解决流程 10.构造方法出现循环依赖怎么办 11.SpringM…

(超详细讲解)实现将idea的java程序打包成exe (新版,可以在没有java的电脑下运行,即可以发给好朋友一起玩)

目录 实现打包到exe大概步骤 工具准备 1.将java程序文件打包成jar文件 2.准备好jre文件 3.使用exe4j软件打包好 4.最终打包 实现打包到exe大概步骤 1.打包需要满足的条件&#xff1a;将java文件转成jar文件的工具exe4j、 以及需要满足jdk1.8以上&#xff08;因安装exe4…

Java基本数据类型和引用类型

计算机内部数据以二进制的形式存储和运算的&#xff0c;一字节表示8位(在二进制里面8位长)&#xff0c;一个汉字是两个字节&#xff0c;也就是16位。计算机型号不同其字长不同。 二进制位(计算机存储数据最小单位)-CSDN博客 二进制 八进制 十进制 转换_二进制怎么补齐位数-CS…

Embedding技术学习

可能很多人并没有关注Embedding技术&#xff0c;但实际上它是GPT非常重要的基础&#xff0c;准备的说&#xff0c;它是GPT模型中理解语言/语义的基础。 【解释什么是Embedding】 对于客观世界&#xff0c;人类通过各种文化产品来表达&#xff0c;比如&#xff1a;语言&#x…

如何快速提取出一个文件里面全部指定类型的文件的全部路径

首先&#xff0c;需要用到的这个工具&#xff1a; 度娘网盘 提取码&#xff1a;qwu2 蓝奏云 提取码&#xff1a;2r1z 打开工具&#xff0c;切换到第五个模块&#xff0c;文件批量复制模块&#xff08;快捷键&#xff1a;Ctrl5&#xff09; 点击右边的“搜索添加”按钮&#…

unordered系列关联式容器底层哈希结构的介绍,哈希表的模拟实现(哈希冲突的解决方法采用闭散列线性探测)

目录 前言 unordered系列关联式容器之所以处理数据的效率比较高&#xff0c;是因为底层使用了哈希结构&#xff0c;哈希结构的优点是&#xff1a;不经过任何比较&#xff0c;一次直接从表中得到要搜索的元素&#xff0c;通过某种函数(hashFunc)使元素的存储位置与它的关键码之…

mapreduce | 自定义Partition分区(案例2)

1.需求 统计每个手机号消费总金额&#xff0c;按照消费金额降序排序&#xff0c;最终联通、电信、移动分别写入不同的文件。 130、131、132&#xff08;联通&#xff09; 133&#xff08;电信&#xff09; 135、136、137、138、139 &#xff08;移动&#xff09; 手机号,消费记…

sql-行转列2(转置)

行转列的常规做法是&#xff0c;group bysum(if())【或count(if())】 例题&#xff1a; 表table如下&#xff1a; DDateshengfu2015-05-09胜2015-05-09胜2015-05-09负2015-05-09负2015-05-10胜2015-05-10负2015-05-10负 如果要生成下列结果, 该如何写sql语句? DDate胜负20…

【计算机网络】-性能指标(速率、带宽和吞吐量)

速率、带宽和吞吐量 信道&#xff08;channel&#xff09;&#xff1a; 表示向某个方向传输信息的通道&#xff0c;一条通信线路在逻辑上往往对应着一条发送信道和接收线道 速率&#xff08;speed&#xff09;&#xff1a; 指的是连接到网络上的节点在信道上传输的速率。也…

全局变量在函数中的使用:Python 编程技巧解析

在Python编程中&#xff0c;全局变量是一种在程序的多个部分中共享数据的机制。全局变量在函数中使用时&#xff0c;需要特别注意其作用域和访问方式。本文将详细讲解如何在函数中使用全局变量&#xff0c;并提供示例代码&#xff0c;帮助初学者深入理解这一概念。 基本原理 …

web3.js的使用

前端开发web3一共常用的库有4个&#xff0c;分别是&#xff1a; web3.js [核心库]ethereumjs-tx1.3.7 (这个包已经被弃用&#xff0c;只有1.3.7可用&#xff0c;如果采用ts开发则可以使用另一个包ethereumjs/tx) bip39 [助记词库]ethereumjs-wallet [钱包库] 注意&#xff1a…

AI作画涉及的深度学习算法

AI作画中使用的深度学习算法多种多样&#xff0c;这些算法主要基于神经网络的结构和训练方式&#xff0c;以生成和改进艺术作品。以下是一些在AI作画中常用的深度学习算法&#xff1a; 生成对抗网络&#xff08;GANs, Generative Adversarial Networks&#xff09;&#xff1a…

Linux —— 线程

Linux —— 线程 什么是线程Linux如何实现线程Winodws如何实现线程使用一下线程pthread_create函数原型参数说明返回值 如何解决 ps -aL 查看线程线程为什么轻量 我们今天进入线程的学习&#xff1a; 什么是线程 我们先来了解一个笼统的概念&#xff1a;简单来说&#xff0c;…

负载均衡技术

负载均衡技术 1. MapReduce MapReduce 是一种编程模型&#xff0c;旨在处理大规模数据集的并行计算任务&#xff0c;通常针对大于 1TB 的数据。该模型借鉴了函数式编程语言的概念&#xff0c;如 “Map” 和 “Reduce”&#xff0c;以及矢量编程语言的特性&#xff0c;使得编程…

计算机发展史故事【12】

芯片计算机 众所周知&#xff0c;所谓286、386、486 个人电脑等名称的起源&#xff0c;在于它们采用了英特尔公司研制的微处理器X86 系列芯片286、386 和486。然而&#xff0c;这种以数字为电脑命名的奇特现象&#xff0c;却来源于霍夫博士等人发明的世界上第一个微处理器芯片…

MySQL变量定义与使用

1 set userName小可爱; set userName:玛卡巴卡; select userName as名称; 2 set x5,y7,dx3.1425,dy6.678; selectxy as 四则运算; selectx-y as 四则运算; selectx*y as 四则运算; selectx/y as 四则运算; selectx%y as 四则运算; 3 set result1dxdy as 四则运算; set res…

动态路由-链路状态路由协议ospf案例

实验拓扑和要求如图 ospf实验 1.设置各个接口地址 2.测试ar5到ar6的连通性 3.配置ospf协议&#xff0c;routerid&#xff0c;area&#xff0c; 详细的网络信息&#xff0c;等待网络收敛后&#xff0c; 查看ospf信息&#xff0c;路由表信息&#xff0c;再次测试连通性 注意区域…

防火墙技术基础篇:网络地址转换(NAT):防火墙技术的核心机制

防火墙技术基础篇&#xff1a;网络地址转换&#xff08;NAT&#xff09;&#xff1a;防火墙技术的核心机制 网络地址转换&#xff08;NAT&#xff09;是现代网络架构中不可或缺的一个组成部分&#xff0c;尤其在防火墙技术的实现中扮演着重要角色。本文旨在全面解读NAT的工作机…