question
stringlengths 12
244
| sql
stringlengths 22
468
|
---|---|
which is the new pageant from spain?
|
SELECT New pageant FROM table WHERE Country/Territory = Spain
|
Who was the away team when Carlton was the home team?
|
SELECT Away team FROM table WHERE Home team = Carlton
|
what is the number of teams where conmebol 1996 did not qualify?
|
SELECT COUNT Team FROM table WHERE CONMEBOL 1996 = did not qualify
|
what is the racing club where copa libertadores 1997?
|
SELECT Copa Libertadores 1997 FROM table WHERE Team = Racing Club
|
what is th copa libertadores 1997 is qf?
|
SELECT Copa Libertadores 1997 FROM table WHERE Supercopa 1996 = QF
|
What's the maximum crowd when scg is the ground?
|
SELECT MAX Crowd FROM table WHERE Ground = SCG
|
What are the away teams when they scored 5.11 (41)?
|
SELECT Away team FROM table WHERE Away team score = 5.11 (41)
|
What are the ground when the away team scored 6.9 (45)?
|
SELECT Ground FROM table WHERE Away team score = 6.9 (45)
|
What are the ground where the crowd totals 19929?
|
SELECT Ground FROM table WHERE Crowd = 19929
|
Name the home team for manuka oval
|
SELECT Home team FROM table WHERE Ground = Manuka Oval
|
Name the away team score for richmond
|
SELECT Away team score FROM table WHERE Away team = Richmond
|
Who made the report when the home team is north Melbourne?
|
SELECT Report FROM table WHERE Home team = North Melbourne
|
Who played Richmond at home?
|
SELECT Home team FROM table WHERE Away team = Richmond
|
Who has the home ground Aami stadium?
|
SELECT Home team FROM table WHERE Ground = AAMI Stadium
|
Who were all candidate when incumbent was D. Wyatt Aiken?
|
SELECT Candidates FROM table WHERE Incumbent = D. Wyatt Aiken
|
How many incumbents for the district of South Carolina 5?
|
SELECT COUNT Incumbent FROM table WHERE District = South Carolina 5
|
Who was everyone first elected when incumbent was John J. Hemphill?
|
SELECT First elected FROM table WHERE Incumbent = John J. Hemphill
|
When the girls singles is lindaweni fanetri what is the mixed doubled?
|
SELECT Mixed doubles FROM table WHERE Girls singles = Lindaweni Fanetri
|
When the girls doubles is ayu pratiwi anggi widia what is the boys doubles?
|
SELECT Boys doubles FROM table WHERE Girls doubles = Ayu Pratiwi Anggi Widia
|
When mixed doubles is didit juang indrianto yayu rahayu what is the most current year?
|
SELECT MAX Year FROM table WHERE Mixed doubles = Didit Juang Indrianto Yayu Rahayu
|
When mixed doubles is danny bawa chrisnanta debby susanto what is the boys singles?
|
SELECT Boys singles FROM table WHERE Mixed doubles = Danny Bawa Chrisnanta Debby Susanto
|
When girls doubles is anneke feinya agustin wenny setiawati what is the mixed doubles?
|
SELECT Mixed doubles FROM table WHERE Girls doubles = Anneke Feinya Agustin Wenny Setiawati
|
Name the total number of publishers for flushed away
|
SELECT COUNT Publisher(s) FROM table WHERE Video game = Flushed Away
|
Name the publisher for resident evil 4
|
SELECT Publisher(s) FROM table WHERE Video game = Resident Evil 4
|
What is the highest total number?
|
SELECT MAX Total# FROM table
|
How many of the episodes have Roger Goldby as the director?
|
SELECT Total# FROM table WHERE Director = Roger Goldby
|
Which episodes have Patrick Lau as the director and Lisa Holdsworth as the writer?
|
SELECT Title FROM table WHERE Director = Patrick Lau AND Writer = Lisa Holdsworth
|
What is the Closure date of Hunterston B
|
SELECT MIN Accounting closure date FROM table WHERE AGR Power Station = Hunterston B
|
How many power stations are connected to grid at Heysham 2
|
SELECT COUNT Connected to grid FROM table WHERE AGR Power Station = Heysham 2
|
What year did construction start at Heysham 1
|
SELECT Construction started FROM table WHERE AGR Power Station = Heysham 1
|
When did construction start on the Power station with a net MWE of 1190
|
SELECT MIN Construction started FROM table WHERE Net MWe = 1190
|
Name the most extra points for john heston
|
SELECT MAX Extra points FROM table WHERE Player = John Heston
|
Who scored the most points?
|
SELECT MAX Points FROM table
|
What position did Joe Maddock play?
|
SELECT Position FROM table WHERE Player = Joe Maddock
|
How many extra points did Paul Jones score?
|
SELECT COUNT Extra points FROM table WHERE Player = Paul Jones
|
How many points did Albert Herrnstein make?
|
SELECT Points FROM table WHERE Player = Albert Herrnstein
|
What positions did Paul Jones play?
|
SELECT Position FROM table WHERE Player = Paul Jones
|
What is the least amount of field goals made by a player?
|
SELECT MIN Field goals FROM table
|
How many extra points did Paul Dickey received
|
SELECT MAX Extra points 1 point FROM table WHERE Player = Paul Dickey
|
How many 5 points field goals is minimum
|
SELECT MIN Field goals (5 points) FROM table
|
How many player with total points of 75
|
SELECT COUNT Player FROM table WHERE Total Points = 75
|
Name the most field goals
|
SELECT MAX Field goals FROM table
|
Name the number of points for right halfback and starter being yes
|
SELECT COUNT Points FROM table WHERE Position = Right halfback AND Starter = yes
|
Na,e the number of field goals for right tackle
|
SELECT COUNT Field goals FROM table WHERE Position = Right tackle
|
Name the most extra points for right halfback
|
SELECT MAX Extra points FROM table WHERE Position = Right halfback
|
What positions does Tom Hammond play?
|
SELECT Position FROM table WHERE Player = Tom Hammond
|
What positions does Hal Weeks play?
|
SELECT Position FROM table WHERE Player = Hal Weeks
|
How many points does Clark have?
|
SELECT Points FROM table WHERE Player = Clark
|
How many points did the player who was right guard score?
|
SELECT COUNT Points FROM table WHERE Position = Right guard
|
Was there a starter when 3 touchdowns were scored?
|
SELECT Starter FROM table WHERE Touchdowns = 3
|
How many touchdowns were there when Heston was in play?
|
SELECT MAX Touchdowns FROM table WHERE Player = Heston
|
How many maximum points were there when the left tackle was played and there were 5 extra points?
|
SELECT MAX Points FROM table WHERE Position = Left tackle AND Extra points = 5
|
Who are the UK co-presenters that have Joe Swash as a co-presenter and Russell Kane as a comedian?
|
SELECT COUNT UK co-presenter FROM table WHERE Co-presenter = Joe Swash AND Comedian = Russell Kane
|
What series have Caroline Flack as a main presenter?
|
SELECT Series FROM table WHERE Main presenter = Caroline Flack
|
Who is the co-presenter of the series Seven (2007)?
|
SELECT Co-presenter FROM table WHERE Series = Seven (2007)
|
Who is the main presenter of the series Twelve (2012)?
|
SELECT Main presenter FROM table WHERE Series = Twelve (2012)
|
Who is the UK co-presenters that have Joe Swash as a co-presenter of the series Eleven (2011)?
|
SELECT UK co-presenter FROM table WHERE Co-presenter = Joe Swash AND Series = Eleven (2011)
|
What position did Nell McAndrew finish?
|
SELECT Finished FROM table WHERE Celebrity = Nell McAndrew
|
Who was the champion boxer?
|
SELECT Celebrity FROM table WHERE Famous for = Champion boxer
|
When did Darren Day enter?
|
SELECT Entered FROM table WHERE Celebrity = Darren Day
|
What position did Tara Palmer-Tomkinson finish?
|
SELECT Finished FROM table WHERE Celebrity = Tara Palmer-Tomkinson
|
When did the 4th finisher enter?
|
SELECT Entered FROM table WHERE Finished = 4th
|
When did Darren Day enter?
|
SELECT Entered FROM table WHERE Celebrity = Darren Day
|
How many people finished 9th?
|
SELECT COUNT Exited FROM table WHERE Finished = 9th
|
What was the least amount of camp mates?
|
SELECT MIN Camp mates FROM table
|
Who directed series #4 that was teleplayed by David Simon?
|
SELECT COUNT Directed by FROM table WHERE Teleplay by = David Simon AND Series # = 4
|
What is the title of series #1?
|
SELECT Title FROM table WHERE Series # = 1
|
What is the finished place where exited is day 11?
|
SELECT Finished FROM table WHERE Exited = Day 11
|
Who is the famous for that finished 2nd?
|
SELECT Famous for FROM table WHERE Finished = 2nd
|
What is the famous for where the finished is 5th?
|
SELECT Famous for FROM table WHERE Finished = 5th
|
What is the exited day where the celebrity is vic reeves?
|
SELECT Exited FROM table WHERE Celebrity = Vic Reeves
|
what is the celebrity where the finished is 5th?
|
SELECT Celebrity FROM table WHERE Finished = 5th
|
When was incumbent John Thomas Wilson first elected?
|
SELECT First elected FROM table WHERE Incumbent = John Thomas Wilson
|
Who were the candidates in the election where John Beatty was the incumbent?
|
SELECT Candidates FROM table WHERE Incumbent = John Beatty
|
Who was the incumbent in the Ohio 16 district?
|
SELECT Incumbent FROM table WHERE District = Ohio 16
|
What is the average for the team with n/a in 1992 and 37 in 1992-93?
|
SELECT Average FROM table WHERE 1991-92 = N/A AND 1992-93 = 37
|
What is the result in 91-92 for the team with a 1.053 average?
|
SELECT 1991-92 FROM table WHERE Average = 1.053
|
What is the 92'-93 result for the team with 55 in 91'-92?
|
SELECT 1992-93 FROM table WHERE 1991-92 = 55
|
What is the average for the team with 39 in 1991-92?
|
SELECT Average FROM table WHERE 1991-92 = 39
|
Name the birth date for shirt number 7
|
SELECT Birth Date FROM table WHERE Shirt No = 7
|
Name the maximum height for yury berezhko
|
SELECT MAX Height FROM table WHERE Player = Yury Berezhko
|
Name the least points where 1989-90 is 31
|
SELECT MIN Points FROM table WHERE 1989-90 = 31
|
Name the 1991-1992 for river plate
|
SELECT 1991-1992 FROM table WHERE Team = River Plate
|
Which models can perform flops(@ 200mhz) is 3.2
|
SELECT Model FROM table WHERE GFLOPS(@ 200MHz) = 3.2
|
Which version of opengl is used by model sgx520?
|
SELECT OpenGL ES FROM table WHERE Model = SGX520
|
What is the die size(mm 2) for model sgx531?
|
SELECT Die Size (mm 2 ) [1] FROM table WHERE Model = SGX531
|
Name the total number of 1991-92 for 1992-93 for 44
|
SELECT COUNT 1991-92 FROM table WHERE 1992-93 = 44
|
Name the team for average 1.026 for 1991-92 being 40
|
SELECT Team FROM table WHERE Average = 1.026 AND 1991-92 = 40
|
Name the economic class for punong barangay being antonio b. gangan
|
SELECT Economic Class FROM table WHERE Punong Barangay (Term 2010-2013) = Antonio B. Gangan
|
Name the economic class for arnold g. apalla
|
SELECT Economic Class FROM table WHERE Punong Barangay (Term 2010-2013) = Arnold G. Apalla
|
Name the economic class for artemoio m. baymosa
|
SELECT Economic Class FROM table WHERE Punong Barangay (Term 2010-2013) = Artemoio M. Baymosa
|
Name the total number of 1stm when 2nd m is 125.5
|
SELECT COUNT 1st (m) FROM table WHERE 2nd (m) = 125.5
|
Name the overall wc points rank for 2nd m for 122.5
|
SELECT Overall WC points (Rank) FROM table WHERE 2nd (m) = 122.5
|
Name the number of nationality is tom hilde
|
SELECT COUNT Nationality FROM table WHERE Name = Tom Hilde
|
What was the original air date (atv) of the episode "Recall to Service"?
|
SELECT Original Air Date (ATV) FROM table WHERE Title = "Recall to Service"
|
Who was the director of the episode originally aired on 26 October 1969?
|
SELECT Director FROM table WHERE Original Air Date (ATV) = 26 October 1969
|
What is the lowest production number?
|
SELECT MIN Production no. FROM table
|
What is the title of the episode with the original air date of 28 September 1969?
|
SELECT Title FROM table WHERE Original Air Date (ATV) = 28 September 1969
|
What was the original air date (atv) of episode 1?
|
SELECT Original Air Date (ATV) FROM table WHERE Episode no. = 1
|
Who is shown for the 2nd (m) of 220.5?
|
SELECT Name FROM table WHERE 2nd (m) = 220.5
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.