02.SELECT from Nobel Tutorial

注意:where语句中对表示条件的需要用单引号, 下面的译文使用的是有道翻译如有不正确,请直接投诉有道

01.Change the query shown so that it displays Nobel prizes for 1950.

译文:更改显示的查询,使其显示1950年的诺贝尔奖。

SELECT yr, subject, winner FROM nobel WHERE yr = 1950

02.Show who won the 1962 prize for Literature.

译文:展示谁获得了1962年的文学奖。

SELECT winner FROM nobel WHERE yr = 1962  AND subject = 'Literature'

03.Show the year and subject that won 'Albert Einstein' his prize.

译文:展示“爱因斯坦”获奖的年份和主题。

select yr, subject from nobel where winner ='Albert Einstein'

04.Give the name of the 'Peace' winners since the year 2000, including 2000.

译文:请说出自2000年(包括2000年)以来的“和平”获奖者的名字。

select winner from nobel where yr >= 2000 and subject='Peace'

05.Show all details (yrsubjectwinner) of the Literature prize winners for 1980 to 1989 inclusive.

译文:展示1980年至1989年包括在内的所有文学奖得主的详细资料(年份、主题、获奖作品)

select * from nobel where (yr between 1980 and 1989) and subject = 'Literature'

06.

Show all details of the presidential winners:

  • Theodore Roosevelt

  • Woodrow Wilson

  • Jimmy Carter

  • Barack Obama

译文:显示总统候选人的所有信息:

    西奥多。罗斯福

    伍德罗·威尔逊

    吉米•卡特

    巴拉克•奥巴马(Barack Obama)

SELECT * FROM nobel
WHERE winner IN ('Theodore Roosevelt',
'Woodrow Wilson',
'Jimmy Carter', 'Barack Obama')

07.Show the winners with first name John

译文:显示姓名的第一个字为约翰的获奖者

select winner from nobel where winner like 'John%'

08.Show the year, subject, and name of Physics winners for 1980 together with the Chemistry winners for 1984.

译文:展示1980年物理获奖者和1984年化学获奖者的年份、科目和名字。

select * from nobel where (yr=1980 and subject='Physics') or (yr=1984 and subject='Chemistry')

09.Show the year, subject, and name of winners for 1980 excluding Chemistry and Medicine

译文:请列出1980年的获奖年份、获奖科目和获奖名单,化学和医学除外

select * from nobel where yr=1980 and subject not in ('Chemistry','Medicine')

10.Show year, subject, and name of people who won a 'Medicine' prize in an early year (before 1910, not including 1910) together with winners of a 'Literature' prize in a later year (after 2004, including 2004)

译文:展示(1910年以前,不包括1910年)获得“医学奖”的人的信息,以及后来(2004年以后,包括2004年)获得“文学奖”的人的信息

select * from nobel where (yr<1910 and subject='Medicine') or (yr>=2004 and subject='Literature')

11.Find all details of the prize won by PETER GRÜNBERG

译文:找到彼得·格伦伯格获得的奖项的所有信息

select * from nobel where winner='PETER GRÜNBERG'

12.Find all details of the prize won by EUGENE O'NEILL

译文:找到尤金·奥尼尔获奖的所有信息

# 查询的名字里面有个单引号 需要使用两个单引号  即’EUGENE O’’NEILL’

select * from nobel where winner ='EUGENE O''NEILL'

13.List the winners, year and subject where the winner starts with Sir. Show the the most recent first, then by name order.

译文:列出获奖者的名字,年份和主题,获奖者以“先生”开头。先显示最近的,然后按名字顺序排列。

select winner,yr,subject from nobel where winner like 'Sir%' order by yr desc, winner asc

14.Show the 1984 winners and subject ordered by subject and winner name; but list Chemistry and Physics last.

译文:显示1984年获奖者和科目排序的科目和获奖者的名字;但是把化学和物理列在最后。

SELECT winner, subject
FROM nobel
WHERE yr=1984
ORDER BY subject in('Physics','Chemistry') ,subject,winner

练习网址:https://sqlzoo.net/wiki/SELECT_from_Nobel_Tutorial

——————————————————————————————————————————————————————————————————————————————————————————————————————————

SELECT from Nobel Tutorial的更多相关文章

  1. sqlzoo刷题 SELECT from Nobel Tutorial

    SELECT from Nobel Tutorial 1.Change the query shown so that it displays Nobel prizes for 1950. SELEC ...

  2. SQLZOO练习二--SELECT from Nobel Tutorial

    We continue practicing simple SQL queries on a single table. This tutorial is concerned with a table ...

  3. SQLZOO网页中SQL的答案(SELECT from nobel篇)

    SELECT from nobel篇 1. 更改查詢以顯示1950年諾貝爾獎的獎項資料. 答案: SELECT yr, subject, winner FROM nobel WHERE yr = 19 ...

  4. sqlzoo - SELECT from WORLD Tutorial 答案

    01.SELECT from WORLD Tutorial 01.显示所有国家的名称,大洲和人口. SELECT name, continent, population FROM world; 02. ...

  5. MySQL练习题--sqlzoo刷题2

    SELECT from Nobel Tutorial 1.Change the query shown so that it displays Nobel prizes for 1950. SELEC ...

  6. SQLZOO

    一.SELECT basics/zh 以顯示德國 Germany 的人口. select population from world where name = 'Germany'; 查詢面積為 5,0 ...

  7. SQLZOO 习题

    https://sqlzoo.net 8. 美國.印度和中國(USA, India, China)是人口又大,同時面積又大的國家.排除這些國家. 顯示以人口或面積為大國的國家,但不能同時兩者.顯示國家 ...

  8. sqlzoo.net刷题

    只发后面提升题目的题解,前面的太简单,写下来也没有意义 12.查找尤金•奧尼爾EUGENE O'NEILL得獎的所有細節 Find all details of the prize won by EU ...

  9. sqlzoo:3

    顯示1980年物理學(physics)獲獎者,及1984年化學獎(chemistry)獲得者. select yr,subject,winner from nobel ) ) 查看1980年獲獎者,但 ...

随机推荐

  1. 附007.Docker全系列大总结

    Docker全系列总结如下,后期不定期更新. 欢迎基于学习.交流目的的转载和分享,禁止任何商业盗用,同时希望能带上原文出处,尊重ITer的成果,也是尊重知识. 若发现任何错误或纰漏,留言反馈或右侧添加 ...

  2. 蓝桥杯javaB组入坑

    蓝桥杯Java B组 准备工作 练习入口 | 准备资料 | 查阅说明 编辑环境 我们建议您使用大赛指定的编辑环境来编写你的代码,以保证评测时和我们的编译环境一致,同时和比赛时使用的环境也一致. 推荐的 ...

  3. 微软全球资深副总裁对 VS Code 黑宝书的推荐序!VS Code 月活用户已达 1200 万!

    前不久,首本 VS Code 中文书终于问世了! 在本书出版之前,我很高兴能邀请到微软全球资深副总裁 Julia Liuson 为本书写推荐序!下面,我们就来看一下 Julia 所写的推荐序的完整内容 ...

  4. Report,又是一道思维题

    题目: Each month Blake gets the report containing main economic indicators of the company "Blake ...

  5. SaaS 系统架构,Spring Boot 动态数据源实现!

    这段时候在准备从零开始做一套SaaS系统,之前的经验都是开发单数据库系统并没有接触过SaaS系统,所以接到这个任务的时候也有也些头疼,不过办法部比困难多,难得的机会. 在网上找了很多关于SaaS的资料 ...

  6. .NET程序运行原理及基本概念详解

    一.引言 我们知道在Java中有虚拟机,代码运行时虚拟机把Java语言编译成与机器无关的字节码,然后再把字节码编译成机器指令执行,那么在.NET中程序是如何运行的呢?其实运行原理是一样的,.NET中的 ...

  7. 你有认真了解过自己的“Java对象”吗? 渣男

    对象在 JVM 中是怎么存储的 对象头里有什么? 文章收录在 GitHub JavaKeeper ,N线互联网开发必备技能兵器谱,有你想要的. 作为一名 Javaer,生活中的我们可能暂时没有对象,但 ...

  8. Java常用API(ArrayList类)

    Java常用API(ArrayList类) 我们为什么要使用ArrayList类? 为了更加方便的储存对象,因为使用普通的数组来存储对象太过麻烦了,因为数组的一个很大的弱点就是长度从一开始就固定了,所 ...

  9. react中实现可拖动div

    把拖动div功能用react封装成class,在页面直接引入该class即可使用. title为可拖动区域.panel为要实现拖动的容器. 优化了拖动框超出页面范围的情况,也优化了拖动太快时鼠标超出可 ...

  10. Python Hacking Tools - Web Scraper

    Preparation: Python Libray in the following programming: 1. Requests Document: https://2.python-requ ...