question
stringlengths
12
244
sql
stringlengths
22
468
What is the smallest conceded value for the team 12 De Octubre?
SELECT MIN Conceded FROM table WHERE Team = 12 de Octubre
What is the smallest draws value with 21 points?
SELECT MIN Draws FROM table WHERE Points = 21
What is the largest loss for the Tacuary team?
SELECT MAX Losses FROM table WHERE Team = Tacuary
What is the name of the venue where the opponent scored 51?
SELECT Venue FROM table WHERE Opponents = 51
How many first downs were there when the attendance was 13196?
SELECT MIN First Downs FROM table WHERE Attendance = 13196
What was the site of the game against Buffalo Bills ?
SELECT Game Site FROM table WHERE Opponent = Buffalo Bills
What was the attendance in week 8?
SELECT MAX Attendance FROM table WHERE Week = 8
What was the date when the attendance was 63995
SELECT Date FROM table WHERE Attendance = 63995
Who was the opponent in week 4?
SELECT Opponent FROM table WHERE Week = 4
How many different skippers of the yacht City Index Leopard?
SELECT COUNT Skipper FROM table WHERE Yacht = City Index Leopard
What are all elapsed time amounts for yacht type Reichel Pugh 55?
SELECT Elapsed time d:hh:mm:ss FROM table WHERE Yacht type = Reichel Pugh 55
What are all elapsed time for yacht type STP 65?
SELECT Elapsed time d:hh:mm:ss FROM table WHERE Yacht type = STP 65
If sail number is AUS 03, what are all associated race numbers?
SELECT Race number FROM table WHERE Sail number = AUS 03
What are all values of LOA(metres) for an elapsed time of 2:17:01:05?
SELECT LOA (Metres) FROM table WHERE Elapsed time d:hh:mm:ss = 2:17:01:05
When the elapsed time is 2:14:12:49, what are all yachts associated with this value?
SELECT Yacht FROM table WHERE Elapsed time d:hh:mm:ss = 2:14:12:49
In what location was the fastest time 1:37.071s?
SELECT Location FROM table WHERE Record = 1:37.071s
What are all the places where Birgit Fischer competed?
SELECT Location FROM table WHERE Athletes = Birgit Fischer
What are the records when Elzbieta Urbanczik competed?
SELECT Record FROM table WHERE Athletes = Elzbieta Urbanczik
Name the number of wins for when points is 17
SELECT COUNT Wins FROM table WHERE Points = 17
Name the number of draws for when conceded is 25
SELECT COUNT Draws FROM table WHERE Conceded = 25
Name the most conceded when draws is 5 and position is 1
SELECT MAX Conceded FROM table WHERE Draws = 5 AND Position = 1
What date was the episode with production code 176265 aired?
SELECT Original air date FROM table WHERE Production code = 176265
On what dates were episodes written by Robert Carlock aired?
SELECT Original air date FROM table WHERE Written by = Robert Carlock
What is the production code for episode 229?
SELECT MAX Production code FROM table WHERE No. in series = 229
What is the title for the episode written by Robert Carlock & Dana Klein Borkow?
SELECT Title FROM table WHERE Written by = Robert Carlock & Dana Klein Borkow
Who directed the episode with the production code 176252?
SELECT Directed by FROM table WHERE Production code = 176252
What date was the episode entitled "The One Where Ross is Fine" aired?
SELECT Original air date FROM table WHERE Title = "The One Where Ross is Fine"
How many points when 15 is scored is considered the minimum?
SELECT MIN Points FROM table WHERE Scored = 15
When a team wins 4, how much is the Maximum amount of points?
SELECT MAX Points FROM table WHERE Wins = 4
How may draws did libertad have?
SELECT COUNT Draws FROM table WHERE Team = Libertad
Name the men doubles for els baert
SELECT Men Doubles FROM table WHERE Womens Singles = Els Baert
Name the men doubles for caroline persyn smids
SELECT Men Doubles FROM table WHERE Womens Doubles = Caroline Persyn Smids
Name the number of men doubles for 2007
SELECT COUNT Men Doubles FROM table WHERE Year = 2007
Name the womens singles for raina tzvetkova petya nedelcheva
SELECT Womens singles FROM table WHERE Womens doubles = Raina Tzvetkova Petya Nedelcheva
Name the number of years for womens doubles being diana koleva emilia dimitrova and jeliazko valkov
SELECT COUNT Year FROM table WHERE Womens doubles = Diana Koleva Emilia Dimitrova AND Mens singles = Jeliazko Valkov
Name the mens singles for jeliazko valkov dobrinka peneva
SELECT Mens singles FROM table WHERE Mixed doubles = Jeliazko Valkov Dobrinka Peneva
Name the mens singles for 1989
SELECT Mens singles FROM table WHERE Year = 1989
Name the year for victoria hristova neli nedialkova
SELECT Year FROM table WHERE Womens doubles = Victoria Hristova Neli Nedialkova
Name the year for womens doubles being raina tzvetkova emilia dimitrova
SELECT Year FROM table WHERE Womens doubles = Raina Tzvetkova Emilia Dimitrova
WHAT ARE THE NAMES OF THE MENS DOUBLES WHEN THE WOMENS DOUBLES WAS PIRET HAMER HELEN REINO?
SELECT Mens doubles FROM table WHERE Womens doubles = Piret Hamer Helen Reino
WHAT IS THE NAME OF THE MENS DOUBLES PLAYER WHEN THE WOMENS DOUBLES PLAYER IS HELEN REINO KAI-RIIN SALUSTE?
SELECT Mens doubles FROM table WHERE Womens doubles = Helen Reino Kai-Riin Saluste
WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP?
SELECT Mixed doubles FROM table WHERE Womens singles = Kairi Viilup
HOW MANY YEARS DID MENS DOUBLES PLAYER HEIKI SORGE MEELIS MAISTE PLAY?
SELECT COUNT Year FROM table WHERE Mens doubles = Heiki Sorge Meelis Maiste
Name the womens doubles when mens doubles is charalambos kazilas stepan partemian
SELECT Womens doubles FROM table WHERE Mens doubles = Charalambos Kazilas Stepan Partemian
Name the womens doubles when mixed doubles is potten ruth scott
SELECT Womens doubles FROM table WHERE Mixed doubles = Potten Ruth Scott
Name the mens singles when mens doubles is george georgoudis gerostergiou
SELECT Mens singles FROM table WHERE Mens doubles = George Georgoudis Gerostergiou
Name the womens doubles when mens doubles is theodoros velkos giorgos patis
SELECT Womens doubles FROM table WHERE Mens doubles = Theodoros Velkos Giorgos Patis
What was the earliest year Þorvaldur Ásgeirsson Lovísa Sigurðardóttir won mixed doubles
SELECT MIN Year FROM table WHERE Mixed doubles = Þorvaldur Ásgeirsson Lovísa Sigurðardóttir
Who won womens doubles the year magnús ingi helgason tinna helgadóttir won mixed doubles and ragna ingólfsdóttir won womens singles in 2010
SELECT Womens doubles FROM table WHERE Mixed doubles = Magnús Ingi Helgason Tinna Helgadóttir AND Womens singles = Ragna Ingólfsdóttir AND Year = 2010
How many womens doubles had champions the years broddi kristjánsson drífa harðardóttir won mixed doubles
SELECT COUNT Womens doubles FROM table WHERE Mixed doubles = Broddi Kristjánsson Drífa Harðardóttir
Who won mixed doubles the years einar jónsson wagner walbom won mens doubles and wagner walbom won mens singles
SELECT Mixed doubles FROM table WHERE Mens doubles = Einar Jónsson Wagner Walbom AND Mens singles = Wagner Walbom
What was the last year árni þór hallgrímsson drífa harðardóttir won mixed doubles
SELECT MAX Year FROM table WHERE Mixed doubles = Árni Þór Hallgrímsson Drífa Harðardóttir
Who won mens singles the year sveinn logi sölvason tryggvi nilsen won mens doubles and elsa nielsen won womens singles
SELECT Mens singles FROM table WHERE Mens doubles = Sveinn Logi Sölvason Tryggvi Nilsen AND Womens singles = Elsa Nielsen
In which position is the team Cerro Porteño?
SELECT Position FROM table WHERE Team = Cerro Porteño
How many games were played?
SELECT MIN Played FROM table
What is the result of men's doubles when there was no competition?
SELECT Mixed doubles FROM table WHERE Mens doubles = no competition
WHo won men's singles in 1994?
SELECT Mens singles FROM table WHERE Year = 1994
Who won women's singles in 2001?
SELECT Womens singles FROM table WHERE Year = 2001
Name the least wins
SELECT MIN Wins FROM table
is γолемата вода nominated for anything?
SELECT Result FROM table WHERE Original title = Γолемата Вода
how many years has сенки been nominated?
SELECT COUNT Year (Ceremony) FROM table WHERE Original title = Сенки
how many directors for the film мајки
SELECT COUNT Director(s) FROM table WHERE Original title = Мајки
Who is the second performer in episode 5?
SELECT Performer 2 FROM table WHERE Episode = 5
How many times was performer 3 Kate Robbins?
SELECT COUNT Date FROM table WHERE Performer 3 = Kate Robbins
Who was perfomer one on 30 January 1988?
SELECT Performer 1 FROM table WHERE Date = 30 January 1988
Who was performer 4 when Kate Robbins was performer 3?
SELECT Performer 4 FROM table WHERE Performer 3 = Kate Robbins
How many episodes was Jimmy Mulville performer 4?
SELECT COUNT Episode FROM table WHERE Performer 4 = Jimmy Mulville
How many instruments did Stuart play on "We Got Married"?
SELECT COUNT Stuart FROM table WHERE Songs = "We Got Married"
Which general election had a vote swing of 1.84?
SELECT General Election FROM table WHERE votes swing = 1.84
What was the total number of seats won where the % of votes is equal to 20.29?
SELECT COUNT Seats Won FROM table WHERE % of votes = 20.29
What was the number of seat changes when the % of votes was 23.75?
SELECT Change in Seat FROM table WHERE % of votes = 23.75
Which general election had a vote swing of 1.69?
SELECT General Election FROM table WHERE votes swing = 1.69
What was the vote swing for the general election of the 12th lok sabha?
SELECT votes swing FROM table WHERE General Election = 12th Lok Sabha
What was the team's result in week 4?
SELECT Result FROM table WHERE Week = 4
When the network mask is 255.255.255.252 what is the prefix size?
SELECT Prefix size FROM table WHERE Network mask = 255.255.255.252
available subnets leading total is?
SELECT MAX Available subnets FROM table
When the network mask is 255.255.255.128 what is the lowest available subnet?
SELECT MIN Available subnets FROM table WHERE Network mask = 255.255.255.128
When the network mask is 255.255.255.224 what is the highest total usable host?
SELECT MAX Total usable hosts FROM table WHERE Network mask = 255.255.255.224
Who were all of the opponents when the date was November 12, 1978?
SELECT Opponent FROM table WHERE Date = November 12, 1978
What is the total number of values for attendance for the date October 1, 1978?
SELECT COUNT Attendance FROM table WHERE Date = October 1, 1978
What was the highest attendance?
SELECT MAX Attendance FROM table
What date did the Colts play New York Jets?
SELECT Date FROM table WHERE Opponent = New York Jets
How many games had the attendance of 60225?
SELECT COUNT Result FROM table WHERE Attendance = 60225
What was the result of the game on October 6, 1974?
SELECT Result FROM table WHERE Date = October 6, 1974
What was the record on September 22, 1974?
SELECT Record FROM table WHERE Date = September 22, 1974
What was the Bhofen #1 score and rank for the player whose Bhofen #2 score and rank was 231.2 (8)?
SELECT Bhofen#1 (Rk) FROM table WHERE Bhofen#2 (Rk) = 231.2 (8)
What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 233.4 (16)?
SELECT Bhofen#2 (Rk) FROM table WHERE Ga-Pa (Rk) = 233.4 (16)
What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 227.5 (19)?
SELECT Bhofen#2 (Rk) FROM table WHERE Ga-Pa (Rk) = 227.5 (19)
How many points in total were scored by the player whose Oberstdork score and rank were 252.6 (11)?
SELECT Total points FROM table WHERE Oberstdorf (Rk) = 252.6 (11)
On which week was the attendance 74303?
SELECT MAX Week FROM table WHERE Attendance = 74303
On which date was the game played at Tiger Stadium?
SELECT Date FROM table WHERE Game Site = Tiger Stadium
What was the final score of the game against the Dallas Cowboys?
SELECT Result FROM table WHERE Opponent = Dallas Cowboys
What was the attendance at the game played on December 10, 1972?
SELECT Attendance FROM table WHERE Date = December 10, 1972
Name the french actor with javier romano
SELECT COUNT French voice actor FROM table WHERE Spanish voice actor = Javier Romano
Name the german voice actor for alain dorval
SELECT German voice actor FROM table WHERE French voice actor = Alain Dorval
Name the german voice actor for rafael torres
SELECT German voice actor FROM table WHERE Spanish voice actor = Rafael Torres
Name the character for sophie arthuys
SELECT Character FROM table WHERE French voice actor = Sophie Arthuys
Name the italian voice actor for dirk fenselau
SELECT Italian voice actor FROM table WHERE German voice actor = Dirk Fenselau
what is the Europe number for the league cup of 36 (0)?
SELECT Europe FROM table WHERE League Cup = 36 (0)
which fa cups had a total of 565 (7)?
SELECT FA Cup FROM table WHERE Total = 565 (7)