instruction
stringclasses
1 value
input
stringlengths
12
244
output
stringlengths
22
468
Translate the following into a SQL query
How many opponents did they play on 17/05/2009?
SELECT COUNT Opponent FROM table WHERE Date = 17/05/2009
Translate the following into a SQL query
What was the score of round 3?
SELECT Score FROM table WHERE Round = 3
Translate the following into a SQL query
Name the artist for 7 points
SELECT COUNT Artist FROM table WHERE Televote Points = 7
Translate the following into a SQL query
Name the number of artists for panel points being 5
SELECT COUNT Artist FROM table WHERE Panel Points = 5
Translate the following into a SQL query
Name the total number of televote points for cry on my shoulders
SELECT COUNT Televote Points FROM table WHERE Song = Cry on my shoulders
Translate the following into a SQL query
Name the score for rebeka dremelj
SELECT Score FROM table WHERE Artist = Rebeka Dremelj
Translate the following into a SQL query
Name the artist for 1595 televotes
SELECT Artist FROM table WHERE Televotes = 1595
Translate the following into a SQL query
What was the result of the match on grass in 1955?
SELECT Outcome FROM table WHERE Surface = Grass AND Year = 1955
Translate the following into a SQL query
What was the result of the Australian Championships?
SELECT Outcome FROM table WHERE Championship = Australian Championships
Translate the following into a SQL query
What is the number of external links with a coach named Katie Kansas?
SELECT COUNT External Link FROM table WHERE Coach = Katie Kansas
Translate the following into a SQL query
What is the minimum number of seasons?
SELECT MIN Season FROM table
Translate the following into a SQL query
What is the episode summary for episode 5?
SELECT Episode Summary FROM table WHERE Episode = 5
Translate the following into a SQL query
What is the summary for the episode with a coach named Rebecca Star?
SELECT Episode Summary FROM table WHERE Coach = Rebecca Star
Translate the following into a SQL query
Name the episode with maritza reveron
SELECT Episode FROM table WHERE Coach = Maritza Reveron
Translate the following into a SQL query
Name the season for august 16, 2010
SELECT Season FROM table WHERE Premier date = August 16, 2010
Translate the following into a SQL query
Name the number of episode summary for jesse csincsak
SELECT COUNT Episode Summary FROM table WHERE Coach = Jesse Csincsak
Translate the following into a SQL query
Name the number of coach for full episode deshunae is made into a volleyball player.
SELECT COUNT Coach FROM table WHERE External Link = Full Episode AND Episode Summary = Deshunae is made into a volleyball player.
Translate the following into a SQL query
Name the coach for may 20, 2010
SELECT Coach FROM table WHERE Premier date = May 20, 2010
Translate the following into a SQL query
Name the team for june 20
SELECT Team FROM table WHERE Date = June 20
Translate the following into a SQL query
Name the race time for 2002
SELECT Race Time FROM table WHERE Year = 2002
Translate the following into a SQL query
How many seasons have a premier date of January 6, 2005?
SELECT COUNT Season FROM table WHERE Premier date = January 6, 2005
Translate the following into a SQL query
What is the last season?
SELECT MAX Season FROM table
Translate the following into a SQL query
What date did the episode, with John O'Connell as the coach, premier?
SELECT Premier date FROM table WHERE Coach = John O'Connell
Translate the following into a SQL query
Name the result for total attendance-regular season
SELECT Result/Games FROM table WHERE Type of Record = Total Attendance-Regular season
Translate the following into a SQL query
Name the result/games for 52521
SELECT Result/Games FROM table WHERE Attendance = 52521
Translate the following into a SQL query
Name the result/games for 54530
SELECT Result/Games FROM table WHERE Attendance = 54530
Translate the following into a SQL query
Name the stadium for regular season game
SELECT Stadium FROM table WHERE Type of Record = Regular season game
Translate the following into a SQL query
Name the result/games for 54741
SELECT Result/Games FROM table WHERE Attendance = 54741
Translate the following into a SQL query
state team #2 in the match of first leg score 0-1
SELECT Team #2 FROM table WHERE 1st leg = 0-1
Translate the following into a SQL query
give the 1st leg score against ilisiakos
SELECT 1st leg FROM table WHERE Team #2 = Ilisiakos
Translate the following into a SQL query
which team #1 played again chalkida
SELECT Team #1 FROM table WHERE Team #2 = Chalkida
Translate the following into a SQL query
which team#2 played against poseidon neoi porroi
SELECT Team #2 FROM table WHERE Team #1 = Poseidon Neoi Porroi
Translate the following into a SQL query
When was the pre-season game record achieved?
SELECT Date/Year FROM table WHERE Type of Record = Pre-season game
Translate the following into a SQL query
What is the maximal number of people that attended any of these games?
SELECT MAX Attendance FROM table
Translate the following into a SQL query
what is the attendance in 2011 records
SELECT Attendance FROM table WHERE Date/Year = 2011
Translate the following into a SQL query
what type of record was made where result/games is 10 games (29,606 avg.)
SELECT Type of Record FROM table WHERE Result/Games = 10 games (29,606 avg.)
Translate the following into a SQL query
where was the total attendance-regular season record made
SELECT Stadium FROM table WHERE Type of Record = Total Attendance-Regular season
Translate the following into a SQL query
where was sun 09/12/93 record made
SELECT Stadium FROM table WHERE Date/Year = Sun 09/12/93
Translate the following into a SQL query
how many records had result/games: 10 games (29,606 avg.)
SELECT COUNT Type of Record FROM table WHERE Result/Games = 10 games (29,606 avg.)
Translate the following into a SQL query
what is the highest attendance for a total attendance-regular season record
SELECT MAX Attendance FROM table WHERE Type of Record = Total Attendance-Regular season
Translate the following into a SQL query
When 2005 is the date/year how many measurements of attendance are there?
SELECT COUNT Attendance FROM table WHERE Date/Year = 2005
Translate the following into a SQL query
When 27585 is the attendance what are the results of the games?
SELECT Result/Games FROM table WHERE Attendance = 27585
Translate the following into a SQL query
When 9 games (28,002 avg.) is the results of the games what is the date/year?
SELECT Date/Year FROM table WHERE Result/Games = 9 games (28,002 avg.)
Translate the following into a SQL query
When 255627 is the attendance what is the stadium?
SELECT Stadium FROM table WHERE Attendance = 255627
Translate the following into a SQL query
What record was set on Tue 11/02/75?
SELECT Type of Record FROM table WHERE Date/Year = Tue 11/02/75
Translate the following into a SQL query
What record was set when the result/game was equal to 9 games (28,595 avg.)
SELECT Type of Record FROM table WHERE Result/Games = 9 games (28,595 avg.)
Translate the following into a SQL query
What record was set when the result/game was montreal 20 @ ottawa 10?
SELECT Type of Record FROM table WHERE Result/Games = Montreal 20 @ Ottawa 10
Translate the following into a SQL query
Which stadium had the result/game montreal 20 @ ottawa 10?
SELECT Stadium FROM table WHERE Result/Games = Montreal 20 @ Ottawa 10
Translate the following into a SQL query
For what year is the type of record 'total attendance-regular season?
SELECT Date/Year FROM table WHERE Type of Record = Total Attendance-Regular season
Translate the following into a SQL query
What type of record is the result of the game Montreal 31 @ Calgary 32?
SELECT Type of Record FROM table WHERE Result/Games = Montreal 31 @ Calgary 32
Translate the following into a SQL query
On what date/s has attendance been 45010?
SELECT Date/Year FROM table WHERE Attendance = 45010
Translate the following into a SQL query
What is the number of attendance with the pre-season game as the type of record?
SELECT COUNT Attendance FROM table WHERE Type of Record = Pre-season game
Translate the following into a SQL query
Which type of record has result/games of 9 games (57,144 avg.)
SELECT Type of Record FROM table WHERE Result/Games = 9 games (57,144 avg.)
Translate the following into a SQL query
What is the result/games of Sun 11/28/10 as the date/year?
SELECT Result/Games FROM table WHERE Date/Year = Sun 11/28/10
Translate the following into a SQL query
Which stadium has the date/year of Fri 06/25/82?
SELECT Stadium FROM table WHERE Date/Year = Fri 06/25/82
Translate the following into a SQL query
Which type of record has result/games of b.c. 16 @ edmonton 22?
SELECT Type of Record FROM table WHERE Result/Games = B.C. 16 @ Edmonton 22
Translate the following into a SQL query
What was the populati in 2000 for Panlicsian?
SELECT MIN Population (2000) FROM table WHERE Barangay = Panlicsian
Translate the following into a SQL query
What was the population in 2010 for Minane
SELECT MAX Population (2010) FROM table WHERE Barangay = Minane
Translate the following into a SQL query
What is the 2007 population for Corazon de Jesus?
SELECT Population (2007) FROM table WHERE Barangay = Corazon De Jesus
Translate the following into a SQL query
What is the 2010 population when the 2000 population is 5720?
SELECT MAX Population (2010) FROM table WHERE Population (2000) = 5720
Translate the following into a SQL query
Name the romaji by your side ~hikari's theme~ (popup.version)
SELECT Rōmaji FROM table WHERE Japanese translation = By Your Side ~Hikari's Theme~ (PopUp.Version)
Translate the following into a SQL query
Name the vocalist for kaze no messēji (pokapoka-version)
SELECT Vocalist FROM table WHERE Rōmaji = Kaze no Messēji (PokaPoka-Version)
Translate the following into a SQL query
Name the least number for 君のそばで~ヒカリのテーマ~(popup.version)
SELECT MIN # FROM table WHERE Japanese title = 君のそばで~ヒカリのテーマ~(PopUp.Version)
Translate the following into a SQL query
Name the number of vocalists for which one ~ is it?
SELECT COUNT Vocalist FROM table WHERE Japanese translation = Which One ~ Is It?
Translate the following into a SQL query
Name the to par for 20 feb 2005
SELECT To par FROM table WHERE Date = 20 Feb 2005
Translate the following into a SQL query
Name the number for margin of victory being 3 strokes
SELECT COUNT No. FROM table WHERE Margin of victory = 3 strokes
Translate the following into a SQL query
Name the winning score for 8 feb 2009
SELECT COUNT Winning score FROM table WHERE Date = 8 Feb 2009
Translate the following into a SQL query
Who published the title in the pet-raising simulator genre?
SELECT Publisher FROM table WHERE Genre = Pet-raising simulator
Translate the following into a SQL query
What's the sales breakdown for Nintendo's Mario Kart DS?
SELECT Sales breakdown FROM table WHERE Publisher = Nintendo AND Title = Mario Kart DS
Translate the following into a SQL query
How many copies were sold of the game released on october 23, 2008?
SELECT Total copies sold FROM table WHERE Release date = October 23, 2008
Translate the following into a SQL query
What's the sales breakdown of the Nintendo game released on May 15, 2006?
SELECT Sales breakdown FROM table WHERE Publisher = Nintendo AND Release date = May 15, 2006
Translate the following into a SQL query
Name the most races
SELECT MAX Races FROM table
Translate the following into a SQL query
Name the most races
SELECT MAX Races FROM table
Translate the following into a SQL query
Name the most rr 1 pts
SELECT MAX RR1 Pts. FROM table
Translate the following into a SQL query
Name the number of total pts for gbr challenge
SELECT COUNT Total Pts. FROM table WHERE Team name = GBR Challenge
Translate the following into a SQL query
What is the total number of second place finishes when the city & nation was Chicago, USA?
SELECT COUNT Second Place FROM table WHERE City & Nation = Chicago, USA
Translate the following into a SQL query
What is the total number of third place finishes when the city & nation was Vancouver, Canada?
SELECT MIN Third Place FROM table WHERE City & Nation = Vancouver, Canada
Translate the following into a SQL query
What is the largest third place finish when first place winning year(s) (if applicable) was n/a?
SELECT MAX Third Place FROM table WHERE First Place Winning Year(s) (if applicable) = N/A
Translate the following into a SQL query
What is the smallest third place finish?
SELECT MIN Third Place FROM table
Translate the following into a SQL query
What change caused a change of staff in March 9, 1865?
SELECT Reason for change FROM table WHERE Date of successors formal installation = March 9, 1865
Translate the following into a SQL query
Who was the successor for the new seat?
SELECT Successor FROM table WHERE Vacator = New seat
Translate the following into a SQL query
What was the reason for change in staff in formal installations on March 15, 1865?
SELECT Reason for change FROM table WHERE Date of successors formal installation = March 15, 1865
Translate the following into a SQL query
Who was the successor for the new seat?
SELECT Successor FROM table WHERE Vacator = New seat
Translate the following into a SQL query
When nathaniel g. taylor (u) is the successor what is the vacator?
SELECT Vacator FROM table WHERE Successor = Nathaniel G. Taylor (U)
Translate the following into a SQL query
When william b. campbell (u) is the successor what is the district?
SELECT District FROM table WHERE Successor = William B. Campbell (U)
Translate the following into a SQL query
When james brooks (d) is the vacator what is the date the successor was seated?
SELECT Date successor seated FROM table WHERE Vacator = James Brooks (D)
Translate the following into a SQL query
When john w. leftwich (uu) is the successor what is the date the successor was seated?
SELECT Date successor seated FROM table WHERE Successor = John W. Leftwich (UU)
Translate the following into a SQL query
When new york 8th is teh district who is the successor?
SELECT Successor FROM table WHERE District = New York 8th
Translate the following into a SQL query
When 20 is the rr4 points what is the lowest rr3 points?
SELECT MIN RR3 Pts. FROM table WHERE RR4 Pts. = 20
Translate the following into a SQL query
When 70 is the total points what is the rr4 points?
SELECT RR4 Pts. FROM table WHERE Total Pts. = 70
Translate the following into a SQL query
When 3 is the rr1 points what is won score?
SELECT Won FROM table WHERE RR1 Pts. = 3
Translate the following into a SQL query
When spanish challenge is the team name what are the rr1 points?
SELECT RR1 Pts. FROM table WHERE Team name = Spanish Challenge
Translate the following into a SQL query
Name the innings for 5088 runs scored
SELECT COUNT Innings FROM table WHERE Runs scored = 5088
Translate the following into a SQL query
Name the matches for mark taylor category:articles with hcards
SELECT MAX Matches FROM table WHERE Name = Mark Taylor Category:Articles with hCards
Translate the following into a SQL query
Name the most runs scored
SELECT MAX Runs scored FROM table
Translate the following into a SQL query
Name the least matches for not out being 44
SELECT MIN Matches FROM table WHERE Not Out = 44
Translate the following into a SQL query
What nation was Pageos 1 from?
SELECT Nation FROM table WHERE Satellite = PAGEOS 1
Translate the following into a SQL query
What was the launch date for the sattelite with ado that was 4 kg and 3 meters in diameter?
SELECT Launch date (UTC) FROM table WHERE Usage = ado AND Mass(kg) = 4 AND Diameter(m) = 3
Translate the following into a SQL query
What was the decay for the sattelite that was 180 kg?
SELECT Decay FROM table WHERE Mass(kg) = 180
Translate the following into a SQL query
What is the nssdc id for Echo 1?
SELECT NSSDC ID FROM table WHERE Satellite = Echo 1