question
stringlengths
12
244
sql
stringlengths
22
468
How many opponents did they play on 17/05/2009?
SELECT COUNT Opponent FROM table WHERE Date = 17/05/2009
What was the score of round 3?
SELECT Score FROM table WHERE Round = 3
Name the artist for 7 points
SELECT COUNT Artist FROM table WHERE Televote Points = 7
Name the number of artists for panel points being 5
SELECT COUNT Artist FROM table WHERE Panel Points = 5
Name the total number of televote points for cry on my shoulders
SELECT COUNT Televote Points FROM table WHERE Song = Cry on my shoulders
Name the score for rebeka dremelj
SELECT Score FROM table WHERE Artist = Rebeka Dremelj
Name the artist for 1595 televotes
SELECT Artist FROM table WHERE Televotes = 1595
What was the result of the match on grass in 1955?
SELECT Outcome FROM table WHERE Surface = Grass AND Year = 1955
What was the result of the Australian Championships?
SELECT Outcome FROM table WHERE Championship = Australian Championships
What is the number of external links with a coach named Katie Kansas?
SELECT COUNT External Link FROM table WHERE Coach = Katie Kansas
What is the minimum number of seasons?
SELECT MIN Season FROM table
What is the episode summary for episode 5?
SELECT Episode Summary FROM table WHERE Episode = 5
What is the summary for the episode with a coach named Rebecca Star?
SELECT Episode Summary FROM table WHERE Coach = Rebecca Star
Name the episode with maritza reveron
SELECT Episode FROM table WHERE Coach = Maritza Reveron
Name the season for august 16, 2010
SELECT Season FROM table WHERE Premier date = August 16, 2010
Name the number of episode summary for jesse csincsak
SELECT COUNT Episode Summary FROM table WHERE Coach = Jesse Csincsak
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.
Name the coach for may 20, 2010
SELECT Coach FROM table WHERE Premier date = May 20, 2010
Name the team for june 20
SELECT Team FROM table WHERE Date = June 20
Name the race time for 2002
SELECT Race Time FROM table WHERE Year = 2002
How many seasons have a premier date of January 6, 2005?
SELECT COUNT Season FROM table WHERE Premier date = January 6, 2005
What is the last season?
SELECT MAX Season FROM table
What date did the episode, with John O'Connell as the coach, premier?
SELECT Premier date FROM table WHERE Coach = John O'Connell
Name the result for total attendance-regular season
SELECT Result/Games FROM table WHERE Type of Record = Total Attendance-Regular season
Name the result/games for 52521
SELECT Result/Games FROM table WHERE Attendance = 52521
Name the result/games for 54530
SELECT Result/Games FROM table WHERE Attendance = 54530
Name the stadium for regular season game
SELECT Stadium FROM table WHERE Type of Record = Regular season game
Name the result/games for 54741
SELECT Result/Games FROM table WHERE Attendance = 54741
state team #2 in the match of first leg score 0-1
SELECT Team #2 FROM table WHERE 1st leg = 0-1
give the 1st leg score against ilisiakos
SELECT 1st leg FROM table WHERE Team #2 = Ilisiakos
which team #1 played again chalkida
SELECT Team #1 FROM table WHERE Team #2 = Chalkida
which team#2 played against poseidon neoi porroi
SELECT Team #2 FROM table WHERE Team #1 = Poseidon Neoi Porroi
When was the pre-season game record achieved?
SELECT Date/Year FROM table WHERE Type of Record = Pre-season game
What is the maximal number of people that attended any of these games?
SELECT MAX Attendance FROM table
what is the attendance in 2011 records
SELECT Attendance FROM table WHERE Date/Year = 2011
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.)
where was the total attendance-regular season record made
SELECT Stadium FROM table WHERE Type of Record = Total Attendance-Regular season
where was sun 09/12/93 record made
SELECT Stadium FROM table WHERE Date/Year = Sun 09/12/93
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.)
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
When 2005 is the date/year how many measurements of attendance are there?
SELECT COUNT Attendance FROM table WHERE Date/Year = 2005
When 27585 is the attendance what are the results of the games?
SELECT Result/Games FROM table WHERE Attendance = 27585
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.)
When 255627 is the attendance what is the stadium?
SELECT Stadium FROM table WHERE Attendance = 255627
What record was set on Tue 11/02/75?
SELECT Type of Record FROM table WHERE Date/Year = Tue 11/02/75
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.)
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
Which stadium had the result/game montreal 20 @ ottawa 10?
SELECT Stadium FROM table WHERE Result/Games = Montreal 20 @ Ottawa 10
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
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
On what date/s has attendance been 45010?
SELECT Date/Year FROM table WHERE Attendance = 45010
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
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.)
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
Which stadium has the date/year of Fri 06/25/82?
SELECT Stadium FROM table WHERE Date/Year = Fri 06/25/82
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
What was the populati in 2000 for Panlicsian?
SELECT MIN Population (2000) FROM table WHERE Barangay = Panlicsian
What was the population in 2010 for Minane
SELECT MAX Population (2010) FROM table WHERE Barangay = Minane
What is the 2007 population for Corazon de Jesus?
SELECT Population (2007) FROM table WHERE Barangay = Corazon De Jesus
What is the 2010 population when the 2000 population is 5720?
SELECT MAX Population (2010) FROM table WHERE Population (2000) = 5720
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)
Name the vocalist for kaze no messēji (pokapoka-version)
SELECT Vocalist FROM table WHERE Rōmaji = Kaze no Messēji (PokaPoka-Version)
Name the least number for 君のそばで~ヒカリのテーマ~(popup.version)
SELECT MIN # FROM table WHERE Japanese title = 君のそばで~ヒカリのテーマ~(PopUp.Version)
Name the number of vocalists for which one ~ is it?
SELECT COUNT Vocalist FROM table WHERE Japanese translation = Which One ~ Is It?
Name the to par for 20 feb 2005
SELECT To par FROM table WHERE Date = 20 Feb 2005
Name the number for margin of victory being 3 strokes
SELECT COUNT No. FROM table WHERE Margin of victory = 3 strokes
Name the winning score for 8 feb 2009
SELECT COUNT Winning score FROM table WHERE Date = 8 Feb 2009
Who published the title in the pet-raising simulator genre?
SELECT Publisher FROM table WHERE Genre = Pet-raising simulator
What's the sales breakdown for Nintendo's Mario Kart DS?
SELECT Sales breakdown FROM table WHERE Publisher = Nintendo AND Title = Mario Kart DS
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
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
Name the most races
SELECT MAX Races FROM table
Name the most races
SELECT MAX Races FROM table
Name the most rr 1 pts
SELECT MAX RR1 Pts. FROM table
Name the number of total pts for gbr challenge
SELECT COUNT Total Pts. FROM table WHERE Team name = GBR Challenge
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
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
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
What is the smallest third place finish?
SELECT MIN Third Place FROM table
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
Who was the successor for the new seat?
SELECT Successor FROM table WHERE Vacator = New seat
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
Who was the successor for the new seat?
SELECT Successor FROM table WHERE Vacator = New seat
When nathaniel g. taylor (u) is the successor what is the vacator?
SELECT Vacator FROM table WHERE Successor = Nathaniel G. Taylor (U)
When william b. campbell (u) is the successor what is the district?
SELECT District FROM table WHERE Successor = William B. Campbell (U)
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)
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)
When new york 8th is teh district who is the successor?
SELECT Successor FROM table WHERE District = New York 8th
When 20 is the rr4 points what is the lowest rr3 points?
SELECT MIN RR3 Pts. FROM table WHERE RR4 Pts. = 20
When 70 is the total points what is the rr4 points?
SELECT RR4 Pts. FROM table WHERE Total Pts. = 70
When 3 is the rr1 points what is won score?
SELECT Won FROM table WHERE RR1 Pts. = 3
When spanish challenge is the team name what are the rr1 points?
SELECT RR1 Pts. FROM table WHERE Team name = Spanish Challenge
Name the innings for 5088 runs scored
SELECT COUNT Innings FROM table WHERE Runs scored = 5088
Name the matches for mark taylor category:articles with hcards
SELECT MAX Matches FROM table WHERE Name = Mark Taylor Category:Articles with hCards
Name the most runs scored
SELECT MAX Runs scored FROM table
Name the least matches for not out being 44
SELECT MIN Matches FROM table WHERE Not Out = 44
What nation was Pageos 1 from?
SELECT Nation FROM table WHERE Satellite = PAGEOS 1
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
What was the decay for the sattelite that was 180 kg?
SELECT Decay FROM table WHERE Mass(kg) = 180
What is the nssdc id for Echo 1?
SELECT NSSDC ID FROM table WHERE Satellite = Echo 1