当前位置:网站首页>SQLZOO——SELECT Quiz
SQLZOO——SELECT Quiz
2022-07-23 10:42:00 【Orange teacher】

1. Select the code which produces this table

SELECT name, population
FROM world
WHERE population BETWEEN 1000000 AND 12500002. Pick the result you would obtain from this code:
SELECT name, population
FROM world
WHERE name LIKE "Al%" 
3. Select the code which shows the countries that end in A or L
SELECT name
FROM world
WHERE name LIKE '%a' OR name LIKE '%l'4. Pick the result from the query
SELECT name,length(name)
FROM world
WHERE length(name)=5 and region='Europe'
5. Here are the first few rows of the world table:


6. Select the code that would show the countries with an area larger than 50000 and a population smaller than 10000000
SELECT name, area, population
FROM world
WHERE area > 50000 AND population < 100000007. Select the code that shows the population density of China, Australia, Nigeria and France
SELECT name, population/area
FROM world
WHERE name IN ('China', 'Nigeria', 'France', 'Australia')边栏推荐
- 跳转语句与调试程序
- 智慧园区的核心本质是什么?
- Kingbasees SQL language reference manual of Jincang database (8. Function (7))
- Practice of RTC performance automation tool in memory optimization scenario
- 数仓:工作流的设计以及优化实践
- 分期付款中的利率问题
- More detailed series than your teacher -- structure
- How Alibaba cloud resolves a domain name to another domain name
- openvino_datawhale
- Jmeter-记一次自动化造数引发的BeanShell写入excel实例
猜你喜欢

Rapid SQL all platforms high performance SQL code

32.< tag-数组和位运算>补充: lt.剑指 Offer 56 - I. 数组中数字出现的次数

kex_exchange_identification: read: Connection reset by peer 不完美解决办法(之一)

Practice of RTC performance automation tool in memory optimization scenario

千亿营收之后,阿里云生态有了新打法

SPR:SUPERVISED PERSONALIZED RANKING BASED ON PRIOR KNOWLEDGE FOR RECOMMENDATION

Redis pseudo cluster one click deployment script - pro test available

Add trust list

chrome selenium 用默认profile 不必每次清空

智慧园区的核心本质是什么?
随机推荐
LeetCode刷题--点滴记录023
Undo log details
Hololens third perspective development [nanny level tutorial] [stepping on the pit record]
数仓:工作流的设计以及优化实践
为什么我们无法写出真正可重用的C#/F#代码?
selenium JD爬虫
How to protect the copyright of NFT digital collections?
2022/7/22
千亿营收之后,阿里云生态有了新打法
Chapter 4 Executing Commands
SPR:SUPERVISED PERSONALIZED RANKING BASED ON PRIOR KNOWLEDGE FOR RECOMMENDATION
hbv参数提取和拟合[草稿]
[qt5.12] qt5.12 installation tutorial
Kingbasees SQL language reference manual of Jincang database (8. Function (2))
理解ASP.NET Core - 基于Cookie的身份认证(Authentication)
China Economic Net: "Yuan universe" is hot
Cloudcompare & PCL point cloud point matching (based on point to face distance)
chrome selenium 用默认profile 不必每次清空
振奋人心 元宇宙!下一代互联网的财富风口
SQLZOO——SELECT from WORLD Tutorial