question stringlengths 12 244 | sql stringlengths 22 468 |
|---|---|
What is the Opponent at the Honda Center on March 29? | SELECT Opponent FROM table WHERE Arena = honda center AND Date = march 29 |
What is the Opponent when the Record is 34–31–6? | SELECT Opponent FROM table WHERE Record = 34–31–6 |
What is Date, when Away Team is "Minehead"? | SELECT Date FROM table WHERE Away team = minehead |
What is Date, when Away Team is "Barnet"? | SELECT Date FROM table WHERE Away team = barnet |
What is Tie no, when Home Team is "Hull City"? | SELECT Tie no FROM table WHERE Home team = hull city |
What is Away Team, when Home Team is "Swindon Town"? | SELECT Away team FROM table WHERE Home team = swindon town |
What is Away Team, when Home Team is "Boston United"? | SELECT Away team FROM table WHERE Home team = boston united |
What was Nick Faldo's score? | SELECT Score FROM table WHERE Player = nick faldo |
What country placed t8 and scored 71-71-71=213? | SELECT Country FROM table WHERE Place = t8 AND Score = 71-71-71=213 |
What was the place when the score was 67-73-73=213? | SELECT Place FROM table WHERE Score = 67-73-73=213 |
What was the place when the score was 70-69-74=213? | SELECT Place FROM table WHERE Score = 70-69-74=213 |
What was United States place when the player was Fred Couples? | SELECT Place FROM table WHERE Country = united states AND Player = fred couples |
WHAT IS THE TOURNAMENT WITH 2008 AND 2011 WITH A? | SELECT Tournament FROM table WHERE 2008 = a AND 2011 = a |
WHAT IS THE 2012 WITH 2005 OF 1R? | SELECT 2012 FROM table WHERE 2005 = 1r |
WHAT IS THE 2010 WITH 2012 OF 2R AT MIAMI MASTERS? | SELECT 2010 FROM table WHERE 2012 = 2r AND Tournament = miami masters |
WHAT IS THE 2008 WITH TOURNAMENT OF WIN-LOSS, AND 2005 A? | SELECT 2008 FROM table WHERE Tournament = win-loss AND 2005 = a |
WHAT IS THE 2007 AT MADRID MASTERS? | SELECT 2007 FROM table WHERE Tournament = madrid masters |
WHAT IS THE 2011 WITH 2007 AT A AND2 008 AT 3R? | SELECT 2011 FROM table WHERE 2007 = a AND 2008 = 3r |
What game was released before 2010 with a Metacritic of 85/100? | SELECT Game Title FROM table WHERE Metacritic = 85/100 AND Year Released < 2010 |
What is the Metacritic released after 2005, with a Platform of playstation 3 and a GameRankings of 84.44%? | SELECT Metacritic FROM table WHERE Year Released > 2005 AND Platform = playstation 3 AND GameRankings = 84.44% |
What is the GameRankings Released of 2011 with a Metacritic of 83/100? | SELECT GameRankings FROM table WHERE Metacritic = 83/100 AND Year Released = 2011 |
How many weeks have an attendance less than 26,048? | SELECT SUM Week FROM table WHERE Attendance < 26,048 |
WHAT IS THE 11AM WITH LOCAL PROGRAMS AT 4PM AND GENERAL HOSPITAL AT 3PM? | SELECT 11:00 am FROM table WHERE 4:00 pm = local programs AND 3:00 pm = general hospital |
WHAT IS THE 4:30PM WITH AN 8:00AM CBS THIS MORNING? | SELECT 4:30 pm FROM table WHERE 8:00 am = cbs this morning |
WHAT IS THE 4:30PM WITH 1:30PM LOCAL PROGRAMS? | SELECT 4:30 pm FROM table WHERE 1:30 pm = local programs |
WHAT IS THE 8:00AM WITH PORT CHARLES AT 12:30PM? | SELECT 8:00 am FROM table WHERE 12:30 pm = port charles |
What was the record when the Denver Broncos played the New York Titans at Bears Stadium? | SELECT Record FROM table WHERE Game site = bears stadium AND Opponent = new york titans |
What was the result of the match on December 9, 1962? | SELECT Result FROM table WHERE Date = december 9, 1962 |
What is To par, when Score is "70-68-68-71=277"? | SELECT To par FROM table WHERE Score = 70-68-68-71=277 |
What is the score of the match on 12 September 1990? | SELECT Score FROM table WHERE Date = 12 september 1990 |
For what league was the player in G position drafted? | SELECT League from FROM table WHERE Position = g |
What pick number was player Greg McKegg? | SELECT AVG Pick # FROM table WHERE Player = greg mckegg |
What Place has a Player of tony jacklin? | SELECT Place FROM table WHERE Player = tony jacklin |
What Place has a Player of bernhard langer? | SELECT Place FROM table WHERE Player = bernhard langer |
What Player has a Country of west germany? | SELECT Player FROM table WHERE Country = west germany |
What Player has a To par of –2? | SELECT Player FROM table WHERE To par = –2 |
What To par has a Place of t2, and a Country of united states? | SELECT To par FROM table WHERE Place = t2 AND Country = united states |
What Score has a Place of t2, and a Country of england? | SELECT Score FROM table WHERE Place = t2 AND Country = england |
How many tries were there for club cwmtwrch rfc? | SELECT Tries against FROM table WHERE Club = cwmtwrch rfc |
What is the draw when the tries against was 69? | SELECT Drawn FROM table WHERE Tries against = 69 |
What is the try bonus when the loss is 13 and the draw is 2? | SELECT Try bonus FROM table WHERE Lost = 13 AND Drawn = 2 |
What is the average Finish, when Team is "Buck Baker", and when Start is less than 13? | SELECT AVG Finish FROM table WHERE Team = buck baker AND Start < 13 |
What is the average Year, when Start is "11"? | SELECT AVG Year FROM table WHERE Start = 11 |
What is the lowest Year, when Finish is "29", and when Start is less than 24? | SELECT MIN Year FROM table WHERE Finish = 29 AND Start < 24 |
What is the highest Year, when Finish is "51", and when Start is less than 64? | SELECT MAX Year FROM table WHERE Finish = 51 AND Start < 64 |
What is Manufacturer, when Finish is greater than 29, when Start is less than 23, and when Year is "1973"? | SELECT Manufacturer FROM table WHERE Finish > 29 AND Start < 23 AND Year = 1973 |
What is the opposing team with 11 against? | SELECT Opposing Teams FROM table WHERE Against = 11 |
What is the venue where Argentina was the opposing team in a test match? | SELECT Venue FROM table WHERE Opposing Teams = argentina AND Status = test match |
What is the status of the game against France with more than 16 against? | SELECT Status FROM table WHERE Against > 16 AND Opposing Teams = france |
On what date is there a status of Five Nations and an against of 23? | SELECT Date FROM table WHERE Status = five nations AND Against = 23 |
What model has a number built smaller than 6.526, and the Chassis code w109.015? | SELECT Model FROM table WHERE Number built < 6.526 AND Chassis code = w109.015 |
What was the record at Tiger Stadium? | SELECT Record FROM table WHERE Game site = tiger stadium |
What was the attendance on September 19, 1971, after week 1? | SELECT AVG Attendance FROM table WHERE Date = september 19, 1971 AND Week > 1 |
How many Bronze medals did the team ranked 1 win? | SELECT Bronze FROM table WHERE Rank = 1 |
What is the name of the person who plays the GK position and is from the Wolverhampton Wanderers? | SELECT Name FROM table WHERE Position = gk AND From = wolverhampton wanderers |
What is the date for Liverpool, and player Robbie Threlfall? | SELECT Date From FROM table WHERE From = liverpool AND Name = robbie threlfall |
What is the date for Watford and player Lionel Ainsworth? | SELECT Date To FROM table WHERE From = watford AND Name = lionel ainsworth |
What is the date for the MF position and player Jennison Myrie-Williams? | SELECT Date From FROM table WHERE Position = mf AND Name = jennison myrie-williams |
What is the position of the player from Leicester City? | SELECT Position FROM table WHERE From = leicester city |
What Goals has a Team of zamora, and Average larger than 0.89? | SELECT AVG Goals FROM table WHERE Team = zamora AND Average > 0.89 |
What is the sum of Goals win an Average larger than 1? | SELECT COUNT Goals FROM table WHERE Average > 1 |
What is the smallest Matches with a Goalkeeper of josé bermúdez, and Goals larger than 18? | SELECT MIN Matches FROM table WHERE Goalkeeper = josé bermúdez AND Goals > 18 |
What is the total of Matches with Goals of 18, and an Average larger than 0.55? | SELECT SUM Matches FROM table WHERE Goals = 18 AND Average > 0.55 |
What is the largest Average with Goals smaller than 34, Matches larger than 30, and a Team of cultural leonesa? | SELECT MAX Average FROM table WHERE Goals < 34 AND Matches > 30 AND Team = cultural leonesa |
Which To par has a Score of 78-74-71-75=298? | SELECT AVG To par FROM table WHERE Score = 78-74-71-75=298 |
How much To par has a Country of united states, and a Money ($) of 90? | SELECT COUNT To par FROM table WHERE Country = united states AND Money ( $ ) = 90 |
What is are the highest matches with £5,000 in prize money? | SELECT MAX Matches FROM table WHERE Prize money = £5,000 |
What is the prize money amount after match 1, with 102 new entries to the round? | SELECT Prize money FROM table WHERE Matches > 1 AND New entries this round = 102 |
In what place did Darren Clarke finish? | SELECT Place FROM table WHERE Player = darren clarke |
What was Ernie Els's score? | SELECT Score FROM table WHERE Player = ernie els |
In what place did Tom Lehman finish? | SELECT Place FROM table WHERE Player = tom lehman |
In what place did the golfer that scored 68-70-69=207 finish? | SELECT Place FROM table WHERE Score = 68-70-69=207 |
What were the highest laps for glenn seton gregg hansford? | SELECT MAX Laps FROM table WHERE Drivers = glenn seton gregg hansford |
What driver had 101 laps? | SELECT Drivers FROM table WHERE Laps = 101 |
Gary Barnett who has been in 0 FA Cups plays what position? | SELECT Position FROM table WHERE FA Cup Apps = 0 AND Name = gary barnett |
What is the maximum league cup goals when there has been 0 FA cup appearances, and MF is the position, with 1 league appearance, and smaller than 0 total goals? | SELECT MAX League Cup Goals FROM table WHERE FA Cup Apps = 0 AND Position = mf AND League Apps = 1 AND Total Goals < 0 |
How many FLT appearances for the player with less than 5 total goals, and 3 FA Cup appearances, 4 league goals, and plays MF? | SELECT FLT Apps FROM table WHERE Total Goals < 5 AND FA Cup Apps = 3 AND Position = mf AND League Goals = 4 |
Who was the opponent when the attendance was 87,453? | SELECT Opponent# FROM table WHERE Attendance = 87,453 |
What was the attendance when they had a ranking of #4? | SELECT Attendance FROM table WHERE Rank # = 4 |
What's the average Played for a draw of 5 and more than 43 points? | SELECT AVG Played FROM table WHERE Draw = 5 AND Points > 43 |
What is the government salary of the Undersecretary with a Romanised name of Chen Wei-On, Kenneth? | SELECT Govt salary FROM table WHERE Romanised name = chen wei-on, kenneth |
What is the portfolio attachment of the Undersecretary appointed at age 48 with a Chinese name of 梁鳳儀? | SELECT Portfolio attachment FROM table WHERE age at appointment = 48 AND Chinese name = 梁鳳儀 |
What is the Romanised name of the Undersecretary with an education portfolio attachment? | SELECT Romanised name FROM table WHERE Portfolio attachment = education |
What is the best top 10 when there are fewer than 0 wins? | SELECT MAX Top 10s FROM table WHERE Wins < 0 |
Where did naylor move from? | SELECT Moving from FROM table WHERE Name = naylor |
What type ends in 2011, has a free transfer fee, and is sourced in leeds united? | SELECT Type FROM table WHERE Ends = 2011 AND Transfer fee = free AND Source = leeds united |
What is the type of sco country? | SELECT Type FROM table WHERE Country = sco |
What is the type that ends in 2009? | SELECT Type FROM table WHERE Ends = 2009 |
What is the transfer fee of assoumani, who has a summer transfer window? | SELECT Transfer fee FROM table WHERE Transfer window = summer AND Name = assoumani |
What is the ends with a free transfer fee and was moved from middlesbrough? | SELECT Ends FROM table WHERE Transfer fee = free AND Moving from = middlesbrough |
Which Week has Attendance of 51,558? | SELECT MIN Week FROM table WHERE Attendance = 51,558 |
Which Attendance has a Result of w 24-14, and a Week smaller than 7? | SELECT SUM Attendance FROM table WHERE Result = w 24-14 AND Week < 7 |
Which Attendance has an Opponent of at los angeles rams, and a Week larger than 12? | SELECT MAX Attendance FROM table WHERE Opponent = at los angeles rams AND Week > 12 |
Which method has a record of 4-0? | SELECT Method FROM table WHERE Record = 4-0 |
What is the record when the method is decision and the location is Martigues, France? | SELECT Record FROM table WHERE Method = decision AND Location = martigues, france |
Which location has a method of decision and Nikos Tsoukalas for an opponent? | SELECT Location FROM table WHERE Method = decision AND Opponent = nikos tsoukalas |
What is the method when the location is Auckland, New Zealand, Darren Berry as the opponent, and resulted in a win? | SELECT Method FROM table WHERE Location = auckland, new zealand AND Result = win AND Opponent = darren berry |
What is the location when the record is 9-7? | SELECT Location FROM table WHERE Record = 9-7 |
What is the location when KO is the method, the result is a win, and the record is 2-0? | SELECT Location FROM table WHERE Method = ko AND Result = win AND Record = 2-0 |
What 1:00 pm has a 6:30 pm of local programs, and a 7:30 am of animaniacs? | SELECT 1:00 pm FROM table WHERE 6:30 pm = local programs AND 7:30 am = animaniacs |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.