question
stringlengths
12
244
sql
stringlengths
22
468
What was the first broadcast date of the episode in which Sean's team is made up of Peter Serafinowicz and Johnny Vegas?
SELECT First broadcast FROM table WHERE Seans team = Peter Serafinowicz and Johnny Vegas
In how many episodes was Dave's team made up of David Walliams and Louis Walsh?
SELECT COUNT Episode FROM table WHERE Daves team = David Walliams and Louis Walsh
Which episode has boy george and lee mack on dave's team?
SELECT Episode FROM table WHERE Daves team = Boy George and Lee Mack
How many daves team entries are there on 27 october 2006?
SELECT COUNT Daves team FROM table WHERE First broadcast = 27 October 2006
Which episode has ulrika jonsson and michael mcintyre on sean's team?
SELECT Episode FROM table WHERE Seans team = Ulrika Jonsson and Michael McIntyre
What was the score in the episode with john barrowman and vic reeves on sean's team?
SELECT Scores FROM table WHERE Seans team = John Barrowman and Vic Reeves
What was the first broadcast date of episode 4x03?
SELECT First broadcast FROM table WHERE Episode = 4x03
Name the first broadcast for trisha goddard and glenn wool
SELECT First broadcast FROM table WHERE Jasons team = Trisha Goddard and Glenn Wool
Name the number of scores for 5x06
SELECT COUNT Scores FROM table WHERE Episode = 5x06
Name the first broadcast for tina malone and joe wilkinson
SELECT First broadcast FROM table WHERE Seans team = Tina Malone and Joe Wilkinson
Name the number of jons team for 15x10
SELECT COUNT Jons team FROM table WHERE Episode = 15x10
Name the scores for chris ramsey and carol vorderman
SELECT Scores FROM table WHERE Seans team = Chris Ramsey and Carol Vorderman
Name the total number of jons team for 15x07
SELECT COUNT Jons team FROM table WHERE Episode = 15x07
Name all of Jason's teams that appeared on episode 6x02?
SELECT Jasons team FROM table WHERE Episode = 6x02
In how many episodes were Vanessa Feltz and Lee Mack the team for Sean?
SELECT COUNT Episode FROM table WHERE Seans team = Vanessa Feltz and Lee Mack
Name the episode(s) that featured Duncan James and Johnny Vegas as Jason's team.
SELECT Episode FROM table WHERE Jasons team = Duncan James and Johnny Vegas
What round does Duncan Tappy drive in?
SELECT MAX SF Round FROM table WHERE Driver = Duncan Tappy
How many racing points did England get?
SELECT MAX Race Total(pts) FROM table WHERE Country = England
How many are the Race 2 points when Race 1 was 12?
SELECT Race 2(pts) FROM table WHERE Race 1(pts) = 12
How many millions of people in the US saw the episode number 226?
SELECT U.S. viewers (millions) FROM table WHERE No. = 226
What is the highest episode number?
SELECT MAX No. FROM table
Who was performer 1 in the episode number 7 where Heather Anne Campbell was performer 2?
SELECT Performer 1 FROM table WHERE Performer 2 = Heather Anne Campbell AND # = 7
What's the number of the episode seen by 2.99 millions of people in the US, where performer 2 was Heather Anne Campbell?
SELECT MIN # FROM table WHERE Performer 2 = Heather Anne Campbell AND U.S. viewers (millions) = 2.99
Name the episode for vic reeves and claudia winkleman
SELECT Episode FROM table WHERE Seans team = Vic Reeves and Claudia Winkleman
Name the number of scores for episode 7x05
SELECT COUNT Scores FROM table WHERE Episode = 7x05
Name the seans team being 13 november 2008
SELECT Seans team FROM table WHERE First broadcast = 13 November 2008
Name the total number of seans team being 7x04
SELECT COUNT Seans team FROM table WHERE Episode = 7x04
Name the total number of scores for 7x10
SELECT COUNT Scores FROM table WHERE Episode = 7x10
How many dates have a total points for race of 180?
SELECT COUNT Date FROM table WHERE Race Total(pts) = 180
What is every points value for race 1 if the total race points is 180?
SELECT Race 1(pts) FROM table WHERE Race Total(pts) = 180
What is the lowest number of total race points for the country of Belgium?
SELECT MIN Race Total(pts) FROM table WHERE Country = Belgium
Who is every driver for the location of Estoril Circuit?
SELECT Driver FROM table WHERE Location = Estoril Circuit
What is the highest value for SF round for the country of England?
SELECT MAX SF Round FROM table WHERE Country = England
What is the surface for the year 2001?
SELECT Surface FROM table WHERE Year = 2001
What was the score on October 29?
SELECT Score FROM table WHERE Date = October 29
How many opponents were there with the record of 3-2-2?
SELECT COUNT Opponent FROM table WHERE Record = 3-2-2
What was the record on October 17?
SELECT Record FROM table WHERE Date = October 17
What date did they play agains the New York Rangers?
SELECT Date FROM table WHERE Opponent = New York Rangers
How many points were there scored on October 27?
SELECT MAX Points FROM table WHERE Date = October 27
How many different scores are there for the game with 10-3-4 record?
SELECT COUNT Score FROM table WHERE Record = 10-3-4
When was the game with 13-5-6 record played?
SELECT Date FROM table WHERE Record = 13-5-6
What's the minimal number of points scored in any game?
SELECT MIN Points FROM table
How many different games against Florida Panthers were played in Verizon Center?
SELECT COUNT Game FROM table WHERE Opponent = Florida Panthers AND Location = Verizon Center
What was the record in the November 7 game?
SELECT Record FROM table WHERE Date = November 7
How many times was there a record of 49-15-11?
SELECT COUNT Attendance FROM table WHERE Record = 49-15-11
How many scores had a date of March 6?
SELECT COUNT Score FROM table WHERE Date = March 6
If the date is 7-21-2006, who was the opponent?
SELECT Opponent FROM table WHERE Date = 7-21-2006
If the opponent is Kristian Pless, who was it against?
SELECT Against FROM table WHERE Opponent = Kristian Pless
Who is the winning team when max busnelli is the winning driver?
SELECT Winning Team FROM table WHERE Winning Driver = Max Busnelli
In which location is aci vallelunga circuit?
SELECT Location FROM table WHERE Circuit = ACI Vallelunga Circuit
Who held the pole position in misano world circuit?
SELECT Pole Position FROM table WHERE Circuit = Misano World Circuit
List the results for all games which involved the detroit red wings.
SELECT Score FROM table WHERE Opponent = Detroit Red Wings
Calculate the highest points where the win,loss, tie ratio is 28-12-6
SELECT MAX Points FROM table WHERE Record = 28-12-6
what are the previous performance details for games involving the montreal canadiens?
SELECT Record FROM table WHERE Opponent = Montreal Canadiens
Which years did Michigan state university come in third place?
SELECT Year FROM table WHERE Third Place = Michigan State University
Who were the champions in years where michigan technological university was in third place?
SELECT Champion FROM table WHERE Third Place = Michigan Technological University
What was the host city in years where the host school was école de technologie supérieure?
SELECT Host City FROM table WHERE Host School = École de technologie supérieure
Who came in second place when the champion was south dakota school of mines & technology?
SELECT Second Place FROM table WHERE Champion = South Dakota School of Mines & Technology
If the average is 45.65, what is the total number of innings?
SELECT COUNT Innings FROM table WHERE Average = 45.65
What is the name of the player if the innings is 82?
SELECT Player FROM table WHERE Innings = 82
If the innings is 68, what is the average?
SELECT Average FROM table WHERE Innings = 68
If the runs is 5028, what is the matches maximum?
SELECT MAX Matches FROM table WHERE Runs = 5028
Name the least dismissals for sammy carter
SELECT MIN Dismissals FROM table WHERE Player = Sammy Carter
Name the number of dismissals for adam gilchrist
SELECT COUNT Dismissals FROM table WHERE Player = Adam Gilchrist
Name the least dismissals for 4 rank
SELECT MAX Dismissals FROM table WHERE Rank = 4
How many top 10 finishes did Ken Bouchard get in the year he won $17,695?
SELECT Top 10 FROM table WHERE Winnings = $17,695
What year did Ken Bouchard finish in 78th place?
SELECT Year FROM table WHERE Position = 78th
How many seasons did Ken Bouchard finish in 38th place?
SELECT COUNT Year FROM table WHERE Position = 38th
What is the greatest number of wins Ken Bouchard had in a season?
SELECT MIN Wins FROM table
How many races in 2012 season have 0 podiums?
SELECT COUNT Races FROM table WHERE Season = 2012 AND Podiums = 0
How many seasons have motopark team?
SELECT COUNT Season FROM table WHERE Team = Motopark
Which team has nc position for 2010 season?
SELECT Team FROM table WHERE Position = NC AND Season = 2010
How many points have a series of british formula renault 2.0 winter cup and f/laps of 0?
SELECT Points FROM table WHERE Series = British Formula Renault 2.0 Winter Cup AND F/Laps = 0
If the amount of rebounds is 0, what is the maximum minutes?
SELECT MAX Minutes FROM table WHERE Rebounds = 0
What is the points total number if the assists is 7?
SELECT COUNT Points FROM table WHERE Assists = 7
If the field goals is 26, what are the players names?
SELECT Player FROM table WHERE Field Goals = 26
If the player is Jasmine Wynne, what is the minimum number of steals?
SELECT MIN Steals FROM table WHERE Player = Jasmine Wynne
What is the blocks total number if the points is 4?
SELECT COUNT Blocks FROM table WHERE Points = 4
How many steals did jasmine wynne have?
SELECT Steals FROM table WHERE Player = Jasmine Wynne
How many games did janae stokes play?
SELECT MAX Games Played FROM table WHERE Player = Janae Stokes
How many rebounds did crystal ayers have?
SELECT COUNT Rebounds FROM table WHERE Player = Crystal Ayers
What was the Orangemen record during game 3?
SELECT Record FROM table WHERE Game = 3
What was the record for the Orangemen when they played against Army?
SELECT Record FROM table WHERE Opponent = Army
How many points did the Orangemen score in game 1?
SELECT MAX Orangemen points FROM table WHERE Game = 1
Who did the Orangemen play against when their record was 5-1?
SELECT Opponent FROM table WHERE Record = 5-1
Name the location for 2007
SELECT Location FROM table WHERE Year = 2007
Display the lowest score for candidate Mir-Hossein Mousavi when candidate Mohsen Rezaee scored 44809 votes
SELECT MIN Mir-Hossein Mousavi FROM table WHERE Mohsen Rezaee = 44809
What is the highest score for candidate Mohsen Rezaee when candidate mir-hossein mousavi scored 837858 votes?
SELECT MAX Mohsen Rezaee FROM table WHERE Mir-Hossein Mousavi = 837858
List all the total scores for the election which had 3072 invalid votes
SELECT Total votes FROM table WHERE Spoiled ballots = 3072
What was the highest score of candidate mir-hossein mousavi in the location known as azarbaijan, west?
SELECT MAX Mir-Hossein Mousavi FROM table WHERE Province = Azarbaijan, West
List all the results for mahmoud ahmadinejad when candidate mir-hossein mousavi obtained 218481 votes.
SELECT Mahmoud Ahmadinejad FROM table WHERE Mir-Hossein Mousavi = 218481
What was the highest number of votes for mir-hossein mousavi when the number of invalid votes is 5683
SELECT MAX Mir-Hossein Mousavi FROM table WHERE Spoiled ballots = 5683
Name surface for 8 round
SELECT Surface FROM table WHERE Round = 8
Name the rally base for 5 round
SELECT Rally Base FROM table WHERE Round = 5
Name the rally base for rallye de france alsace
SELECT Rally Base FROM table WHERE Rally Name = Rallye de France Alsace
What is the lowest position for a driver with 2 points?
SELECT MAX Pos FROM table WHERE Points = 2
What driver(s) had over 65 stag wins?
SELECT Driver FROM table WHERE Stage wins = 65
What is the power stage wins total number if the wins is 10?
SELECT COUNT Power stage wins FROM table WHERE Wins = 10
If finishes is 10, what is the POS minimum?
SELECT MIN Pos FROM table WHERE Finishes = 10
What is the finishes maximum number?
SELECT MAX Finishes FROM table