SELECT from Nobel Tutorial】的更多相关文章

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 th…
SELECT from Nobel Tutorial 1.Change the query shown so that it displays Nobel prizes for 1950. SELECT yr, subject, winner FROM nobel WHERE yr = 1950 2.Show who won the 1962 prize for Literature. SELECT winner FROM nobel WHERE yr = 1962 AND subject =…
We continue practicing simple SQL queries on a single table. This tutorial is concerned with a table of Nobel prize winners: nobel(yr, subject, winner) Using the SELECT statement. 1.Winers from 1950 检索1950年的诺贝尔奖信息. Change the query shown so that it d…
SELECT from nobel篇 1. 更改查詢以顯示1950年諾貝爾獎的獎項資料. 答案: SELECT yr, subject, winner FROM nobel WHERE yr = 1950 2.顯示誰贏得了1962年文學獎(Literature). SELECT winner FROM nobel WHERE yr = 1962 AND subject = 'Literature' 3.顯示“愛因斯坦”('Albert Einstein') 的獲獎年份和獎項. SELECT yr…
01.SELECT from WORLD Tutorial 01.显示所有国家的名称,大洲和人口. SELECT name, continent, population FROM world; 02.显示人口大于等于200000000的国家. select name from world where population > 200000000; 03.找出有至少2億人口的國家名稱,及人均國內生產總值. select name,gdp/population from world where po…
SELECT from Nobel Tutorial 1.Change the query shown so that it displays Nobel prizes for 1950. SELECT yr, subject, winner FROM nobel : 2.Show who won the 1962 prize for Literature. and subject='literature'; 3.Show the year and subject that won 'Alber…
一.SELECT basics/zh 以顯示德國 Germany 的人口. select population from world where name = 'Germany'; 查詢面積為 5,000,000 以上平方公里的國家,對每個國家顯示她的名字和人均國內生產總值(gdp/population). select name, gdp/population from world where area > 5000000; 顯示"Ireland 愛爾蘭","Icel…
https://sqlzoo.net 8. 美國.印度和中國(USA, India, China)是人口又大,同時面積又大的國家.排除這些國家. 顯示以人口或面積為大國的國家,但不能同時兩者.顯示國家名稱,人口和面積. (成為大國的兩種方式:如果它有3百萬平方公里以上的面積,或擁有250百萬(2.5億)以上人口) SELECT `name`, `population`, `area` FROM `world` WHERE (area>3000000 AND population<2500000…
只发后面提升题目的题解,前面的太简单,写下来也没有意义 12.查找尤金•奧尼爾EUGENE O'NEILL得獎的所有細節 Find all details of the prize won by EUGENE O'NEILL select * from nobel where winner ='EUGENE O\'NEILL' 题目推荐用两个‘符号来转义 个人还是推荐linux系统常用的转义符号\,这个基本上是类unix的传统 13.列出爵士的獲獎者.年份.獎頁(爵士的名字以Sir開始).先顯示…
顯示1980年物理學(physics)獲獎者,及1984年化學獎(chemistry)獲得者. select yr,subject,winner from nobel ) ) 查看1980年獲獎者,但不包括化學獎(Chemistry)和醫學獎(Medicine). select yr,subject,winner from nobel and subject not in('Chemistry','Medicine') 顯示早期的醫學獎(Medicine)得獎者(1910之前,不包括1910),…