question
stringlengths 12
244
| sql
stringlengths 22
468
|
|---|---|
What was the winning score of the Masters Tournament?
|
SELECT Winning score FROM table WHERE Championship = Masters Tournament
|
What was the winning score of the PGA Championship (3)?
|
SELECT Winning score FROM table WHERE Championship = PGA Championship (3)
|
What is the number of starts for 1987?
|
SELECT COUNT Starts FROM table WHERE Year = 1987
|
What is the scoring aerage for 111419?
|
SELECT Scoring average FROM table WHERE Earnings ($) = 111419
|
What is the money list rank for 1966?
|
SELECT Money list rank FROM table WHERE Year = 1966
|
Name the total number of scoring average for money list rank of 174
|
SELECT COUNT Scoring average FROM table WHERE Money list rank = 174
|
What is the county where kerry# is 59740?
|
SELECT County FROM table WHERE Kerry# = 59740
|
In cook county Kerry# is?
|
SELECT Kerry# FROM table WHERE County = Cook
|
When bush# is 3907, what is Kerry#?
|
SELECT Kerry# FROM table WHERE Bush# = 3907
|
What is the others# when bush% is 57.0%?
|
SELECT MAX Others# FROM table WHERE Bush% = 57.0%
|
what's the mole with airdate being 8 january 2009
|
SELECT The Mole FROM table WHERE Airdate = 8 January 2009
|
what's the mole with prize money being €24,475
|
SELECT The Mole FROM table WHERE Prize money = €24,475
|
what's the the mole with airdate being 5 january 2012
|
SELECT COUNT The Mole FROM table WHERE Airdate = 5 January 2012
|
what's airdate with international destination being scotland
|
SELECT Airdate FROM table WHERE International destination = Scotland
|
what's the mole with winner being frédérique huydts
|
SELECT The Mole FROM table WHERE Winner = Frédérique Huydts
|
what's runner-up with season being season 13
|
SELECT Runner-up FROM table WHERE Season = Season 13
|
In what county did 29231 people vote for Kerry?
|
SELECT County FROM table WHERE Kerry# = 29231
|
What's the name of the county where 48.3% voted for Bush?
|
SELECT County FROM table WHERE Bush% = 48.3%
|
What's the percentage of votes for other candidates in the county where Bush got 51.6% of the votes?
|
SELECT Others% FROM table WHERE Bush% = 51.6%
|
What's the name of the county where 54.6% voted for Bush?
|
SELECT County FROM table WHERE Bush% = 54.6%
|
What is the number of steals for 2012
|
SELECT COUNT Steals FROM table WHERE Year = 2012
|
Who are the blockers where points are scored by Zach Randolph (24)?
|
SELECT Blocks FROM table WHERE Points = Zach Randolph (24)
|
Who are the blockers where points are scored by Zach Randolph (24)?
|
SELECT Blocks FROM table WHERE Points = Zach Randolph (24)
|
How many rebounds were there in 2008?
|
SELECT COUNT Rebounds FROM table WHERE Year = 2008
|
Who had all of the blocks in 2012?
|
SELECT Blocks FROM table WHERE Year = 2012
|
What year has Nerlens Noel (4) as blocker?
|
SELECT MIN Year FROM table WHERE Blocks = Nerlens Noel (4)
|
What is the most silver medals?
|
SELECT MAX Silver Medals FROM table
|
what are all the gold medals when the silver medals is smaller than 1.0?
|
SELECT Gold Medals FROM table WHERE Silver Medals < 1.0
|
How many numbers were listed under Silver Medals for Portsmouth HS?
|
SELECT COUNT Silver Medals FROM table WHERE Ensemble = Portsmouth HS
|
What was the smallest total number of medals?
|
SELECT MIN Total Medals FROM table
|
What is the highest number of gold medals Naugatuck HS won?
|
SELECT MAX Gold Medals FROM table WHERE Ensemble = Naugatuck HS
|
what is the maximum round for gt3 winner hector lester tim mullen and pole position of jonny cocker paul drayson
|
SELECT MAX Round FROM table WHERE GT3 Winner = Hector Lester Tim Mullen AND Pole Position = Jonny Cocker Paul Drayson
|
what are all the date for gt3 winner oliver bryant matt harris
|
SELECT Date FROM table WHERE GT3 Winner = Oliver Bryant Matt Harris
|
what are all the date for gtc winners graeme mundy jamie smyth and gt3 winners hector lester tim mullen
|
SELECT Date FROM table WHERE GTC Winner = Graeme Mundy Jamie Smyth AND GT3 Winner = Hector Lester Tim Mullen
|
what are all the circuit for 9 september and gt3 winner hector lester allan simonsen
|
SELECT Circuit FROM table WHERE Date = 9 September AND GT3 Winner = Hector Lester Allan Simonsen
|
what are all the circuit for gtc winner graeme mundy jamie smyth and pole position bradley ellis alex mortimer
|
SELECT Circuit FROM table WHERE GTC Winner = Graeme Mundy Jamie Smyth AND Pole Position = Bradley Ellis Alex Mortimer
|
what are all the gtc winners for pole position no. 21 team modena
|
SELECT GTC Winner FROM table WHERE Pole Position = No. 21 Team Modena
|
What material is made with a rounded, plain edge?
|
SELECT Composition FROM table WHERE Edge = Rounded, plain
|
How many coins have a diameter of 23mm?
|
SELECT COUNT Reverse FROM table WHERE Diameter = 23mm
|
When was the coin with the mass of 3.7 g first minted?
|
SELECT first minting FROM table WHERE Mass = 3.7 g
|
What is the number of population for lithuania?
|
SELECT COUNT Population FROM table WHERE Member countries = Lithuania
|
Name the gdp where gdp per capita 20200
|
SELECT GDP (billion US$) FROM table WHERE GDP per capita (US$) = 20200
|
Name the total number of area for 775927 population
|
SELECT COUNT Area (km²) FROM table WHERE Population = 775927
|
What is the gdp of the country with an area of 83871 (km2)?
|
SELECT GDP (billion US$) FROM table WHERE Area (km²) = 83871
|
What was the gdp of the country with a gdp per capita of $18048?
|
SELECT GDP (billion US$) FROM table WHERE GDP per capita (US$) = 18048
|
What is Austria's maximum area (km2)?
|
SELECT MAX Area (km²) FROM table WHERE Member countries = Austria
|
What is the season for no award given for rookie of the year?
|
SELECT Season FROM table WHERE Rookie of the Year = No award given
|
how many air date with overall being 83/95
|
SELECT COUNT Air Date FROM table WHERE Overall = 83/95
|
how many viewers (m) with overall being 91/101
|
SELECT COUNT Viewers (m) FROM table WHERE Overall = 91/101
|
what are all the rating with viewers (m) being 2.89
|
SELECT Rating FROM table WHERE Viewers (m) = 2.89
|
what are all the overall with rating being 1.4
|
SELECT Overall FROM table WHERE Rating = 1.4
|
what are all the overall with viewers (m) being 2.61
|
SELECT Overall FROM table WHERE Viewers (m) = 2.61
|
what are all the rating with viewers (m) being 2.61
|
SELECT Rating FROM table WHERE Viewers (m) = 2.61
|
what is the year where the qualifying score was 15.150?
|
SELECT Year FROM table WHERE Qualifying Score = 15.150
|
how many times was the qualifying score 60.750?
|
SELECT COUNT Event FROM table WHERE Qualifying Score = 60.750
|
how many times is the qualifying score 61.400?
|
SELECT COUNT Year FROM table WHERE Qualifying Score = 61.400
|
what is the final-rank for the uneven bars and the competition is u.s. championships?
|
SELECT Final-Rank FROM table WHERE Event = Uneven Bars AND Competition = U.S. Championships
|
what is the lowest qualifying rank?
|
SELECT MIN Qualifying Rank FROM table
|
what is the highest qualifying rank where the competition is olympic trials, the final-rank is 4 and qualifying score is 15.100?
|
SELECT MAX Qualifying Rank FROM table WHERE Competition = Olympic Trials AND Final-Rank = 4 AND Qualifying Score = 15.100
|
When did the season of gurmeet choudhary premiere?
|
SELECT Season Premiere Date FROM table WHERE Winner = Gurmeet Choudhary
|
When was the season finale of meiyang chang?
|
SELECT Season Finale Date FROM table WHERE Winner = Meiyang Chang
|
What is the winner of rashmi desai?
|
SELECT Winner FROM table WHERE 1st Runner Up = Rashmi Desai
|
When is the season finale of meiyang chang?
|
SELECT Season Finale Date FROM table WHERE Winner = Meiyang Chang
|
In what number kōhaku was the red team host Peggy Hayama?
|
SELECT Kōhaku # FROM table WHERE Red Team Host = Peggy Hayama
|
Who was the mediator in kōhaku number 53?
|
SELECT Mediator FROM table WHERE Kōhaku # = 53
|
On what date was Keiichi Ubukata the mediator and Mitsuko Mori the red team host?
|
SELECT Date FROM table WHERE Mediator = Keiichi Ubukata AND Red Team Host = Mitsuko Mori
|
What is the most recent year?
|
SELECT MAX Year FROM table
|
What year is Jiyai Shin the champion?
|
SELECT COUNT Year FROM table WHERE Champion = Jiyai Shin
|
What is the # for the episode with a Production code of 3T7057?
|
SELECT # FROM table WHERE Production code = 3T7057
|
What is the Original air date for the episode directed by Tricia Brock?
|
SELECT Original air date FROM table WHERE Directed by = Tricia Brock
|
What is the Original air date for the episode written by Peter Ocko?
|
SELECT Original air date FROM table WHERE Written by = Peter Ocko
|
How many U.S. viewers (million) are there for the episode whose Production code is 3T7051?
|
SELECT U.S. viewers (million) FROM table WHERE Production code = 3T7051
|
How many episodes were aired on the Original air date for "Circus, Circus"?
|
SELECT COUNT Original air date FROM table WHERE Title = "Circus, Circus"
|
How many michelob ultra mountains classification for darren lill
|
SELECT COUNT Michelob ULTRA Mountains Classification Gold Polka Dot Jersey FROM table WHERE Drury Hotels Most Aggressive Rider Red Jersey = Darren Lill
|
What was the release date of Sonic Adventure 2?
|
SELECT Release FROM table WHERE Title = Sonic Adventure 2
|
Was the release on April 8 available on Windows?
|
SELECT Windows FROM table WHERE Release = April 8
|
What title was released on August 27?
|
SELECT Title FROM table WHERE Release = August 27
|
Is icewind dale available for windows
|
SELECT Windows FROM table WHERE Title = Icewind Dale
|
List all number of yards with an AST of 8.
|
SELECT No-Yds FROM table WHERE Ast = 8
|
Who did the Seahawks play when the listed attendance was 61615?
|
SELECT Opponent FROM table WHERE Attendance = 61615
|
What was the Seahawks record on September 18, 1983?
|
SELECT Record FROM table WHERE Date = September 18, 1983
|
What week did the Seahawks play at los angeles memorial coliseum?
|
SELECT MIN Week FROM table WHERE Game site = Los Angeles Memorial Coliseum
|
What was the score of the game when the attendance was 48945?
|
SELECT Result FROM table WHERE Attendance = 48945
|
Who did the Seahawks play on September 4, 1983?
|
SELECT Opponent FROM table WHERE Date = September 4, 1983
|
What was the record set during the game played at Hubert H. Humphrey Metrodome?
|
SELECT Record FROM table WHERE Game site = Hubert H. Humphrey Metrodome
|
On what date was the game against San Diego Chargers played?
|
SELECT Date FROM table WHERE Opponent = San Diego Chargers
|
What was the date of the game against Kansas City Chiefs?
|
SELECT Date FROM table WHERE Opponent = Kansas City Chiefs
|
What was the result of the game played on September 16, 1984?
|
SELECT Result FROM table WHERE Date = September 16, 1984
|
On what date did the game end with the result w 43-14?
|
SELECT Date FROM table WHERE Result = W 43-14
|
What was the attendance at the game that resulted in w 24-20?
|
SELECT Attendance FROM table WHERE Result = W 24-20
|
Who did they play against in the game that ended in 2-2?
|
SELECT Opponent FROM table WHERE Record = 2-2
|
When was the record of 0-1 set?
|
SELECT Date FROM table WHERE Record = 0-1
|
During what weak of the season was the game played on october 4, 1987?
|
SELECT MAX Week FROM table WHERE Date = October 4, 1987
|
What was the attendance when the record was 1-1?
|
SELECT Attendance FROM table WHERE Record = 1-1
|
In what week was the record 5-9?
|
SELECT MAX Week FROM table WHERE Record = 5-9
|
What date did the Seahawks play the Kansas City Chiefs at the Kingdome?
|
SELECT Date FROM table WHERE Game site = Kingdome AND Opponent = Kansas City Chiefs
|
In what week was November 27, 1977?
|
SELECT MAX Week FROM table WHERE Date = November 27, 1977
|
Where did the teams play on October 16, 1977?
|
SELECT Game site FROM table WHERE Date = October 16, 1977
|
What team was the opponent at Mile High Stadium?
|
SELECT Opponent FROM table WHERE Game site = Mile High Stadium
|
What was the record when they played the Los Angeles Rams?
|
SELECT Record FROM table WHERE Opponent = Los Angeles Rams
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.