question
stringlengths
12
244
sql
stringlengths
22
468
Name the least tied
SELECT MIN Tied FROM table
Name the least wins of 56.25%
SELECT MIN Wins FROM table WHERE Success Rate = 56.25%
How many locomotives have a name of City of Birmingham
SELECT COUNT No. FROM table WHERE Name = City of Birmingham
How many locomotives have a livery that is highland railway green
SELECT COUNT Name FROM table WHERE Livery = Highland Railway green
Which locomotive type has a status in static display
SELECT Locomotive type FROM table WHERE Status = Static display
What is the maximum number of points against when the attendance was 47678?
SELECT MAX Points Against FROM table WHERE Attendance = 47678
What was the total number of first down on October 23?
SELECT COUNT First Downs FROM table WHERE Date = October 23
Name the most series number for giula sandler
SELECT MAX Series # FROM table WHERE Writer(s) = Giula Sandler
Name the number of season number for jeff truman
SELECT COUNT Season # FROM table WHERE Writer(s) = Jeff Truman
Name the minimum enrollment for montana tech of the university of montana
SELECT MIN Enrollment FROM table WHERE School = Montana Tech of the University of Montana
Name the location when control is private and founded is 1870
SELECT Location FROM table WHERE Control = Private AND Founded = 1870
Who directed the TV broadcast s03e19?
SELECT Directed by FROM table WHERE TV Broadcast = S03E19
What episode in the series is TV broadcast s03e20?
SELECT No. in series FROM table WHERE TV Broadcast = S03E20
WHAT WAS THE SCORE FOR GAME 31?
SELECT Score FROM table WHERE Game = 31
WHO DID THE RAPTORS PLAY ON JANUARY 9?
SELECT Team FROM table WHERE Date = January 9
Name thenames for 2002-04-01
SELECT Name FROM table WHERE Date of designation = 2002-04-01
Name all the date of designations for kurume
SELECT Date of designation FROM table WHERE Name = Kurume
Name the total number of japanese for amagasaki
SELECT COUNT Japanese FROM table WHERE Name = Amagasaki
Name the region for iwate
SELECT Region FROM table WHERE Prefecture = Iwate
Who wrote the "Head of State" episode?
SELECT Written By FROM table WHERE Title = "Head of State"
The "Head of State" episode was authored by which person?
SELECT Written By FROM table WHERE Title = "Head of State"
Who was the director of the episode "graduation day: class of 2105"?
SELECT Directed by FROM table WHERE Title = "Graduation Day: Class of 2105"
Who scored the most rebounds in the game against Chicago?
SELECT High rebounds FROM table WHERE Team = Chicago
What were the dates of the games where Jalen Rose (32) had the highest points?
SELECT Date FROM table WHERE High points = Jalen Rose (32)
What is the location and total attendance for games played against New Orleans?
SELECT Location Attendance FROM table WHERE Team = New Orleans
How many teams are listed for February 18?
SELECT COUNT Team FROM table WHERE Date = February 18
What were the high rebounds on February 24?
SELECT High rebounds FROM table WHERE Date = February 24
What was the score in game 51?
SELECT Score FROM table WHERE Game = 51
What was the score when they played against San Antonio?
SELECT Score FROM table WHERE Team = San Antonio
Who was the high point scorer in game number 68?
SELECT High points FROM table WHERE Game = 68
How many players had the most assists against New Jersey?
SELECT COUNT High assists FROM table WHERE Team = New Jersey
How many games were played in the season?
SELECT MAX Game FROM table
What team had high assists Rafer Alston (5)?
SELECT Team FROM table WHERE High assists = Rafer Alston (5)
Who has the most assists on January 3?
SELECT High assists FROM table WHERE Date = January 3
Who is the rector of the residence hall who's mascot is the phoxes?
SELECT Rector FROM table WHERE Mascot = Phoxes
What is the mascot with the colors green and navy?
SELECT Mascot FROM table WHERE Colors = Green and Navy
What residence hall has the vermin mascot?
SELECT Residence Hall FROM table WHERE Mascot = Vermin
What are the colors of Howard Hall?
SELECT Colors FROM table WHERE Residence Hall = Howard Hall
What is the content of la7 television service?
SELECT Content FROM table WHERE Television service = LA7
What is the content of the rai 1 television service?
SELECT Content FROM table WHERE Television service = Rai 1
What are the package/options when the TV service is rai 3?
SELECT Package/Option FROM table WHERE Television service = Rai 3
What high definition television options are available for Italia 1?
SELECT HDTV FROM table WHERE Television service = Italia 1
How many values of HDTV apply when television service is elite shopping tv?
SELECT COUNT HDTV FROM table WHERE Television service = Elite Shopping TV
How many countries have content of arte?
SELECT COUNT Country FROM table WHERE Content = arte
How many values of HDTV correspond to television service of la sorgente sat 1?
SELECT COUNT HDTV FROM table WHERE Television service = La Sorgente Sat 1
What values of HDTV correspond to n° of 862?
SELECT HDTV FROM table WHERE N° = 862
Name the content for sky famiglia for italian and dar 16:9 for mtv hits
SELECT Content FROM table WHERE Package/Option = Sky Famiglia AND Language = Italian AND DAR = 16:9 AND Television service = MTV Hits
Name the least number for mydeejay
SELECT MIN N° FROM table WHERE Television service = myDeejay
Name the number of package options for music box italia
SELECT COUNT Package/Option FROM table WHERE Television service = Music Box Italia
Name the hdtv for sky famiglia and dar 16:9 for mydeejay
SELECT HDTV FROM table WHERE Package/Option = Sky Famiglia AND DAR = 16:9 AND Television service = myDeejay
Name the dar for mtv rocks
SELECT DAR FROM table WHERE Television service = MTV Rocks
Name the ppv for sky famiglia and dar 16:9 for mtv dance
SELECT PPV FROM table WHERE Package/Option = Sky Famiglia AND DAR = 16:9 AND Television service = MTV Dance
Name the dar for telenord
SELECT DAR FROM table WHERE Television service = Telenord
Name the total number of hdtv for eurotic tv
SELECT COUNT HDTV FROM table WHERE Television service = Eurotic TV
Name the dar for 912
SELECT DAR FROM table WHERE N° = 912
How many times was something listed under content when the television was R-light?
SELECT COUNT Content FROM table WHERE Television service = R-LIGHT
Was there PPV when the service was SCT?
SELECT PPV FROM table WHERE Television service = SCT
Was there HDTV when the service was Privè?
SELECT HDTV FROM table WHERE Television service = PRIVÈ
In what laguage was Contotv 5?
SELECT Language FROM table WHERE Television service = ContoTV 5
What's the content of the Tutti i Pacchetti + Sky HD package?
SELECT Content FROM table WHERE Package/Option = Tutti i pacchetti + Sky HD
What package offers Fox Sports HD?
SELECT Package/Option FROM table WHERE Television service = FOX Sports HD
What packages offer the Cartello Promozionale Sky HD service?
SELECT Package/Option FROM table WHERE Television service = Cartello promozionale Sky HD
How many different contents are offered by the Qualsiasi Tranne Sky HD package?
SELECT COUNT Content FROM table WHERE Package/Option = qualsiasi tranne Sky HD
What's the content offered by the package number 204?
SELECT Content FROM table WHERE N° = 204
How many PPV values are listed for when television service Sky Cinema 1?
SELECT COUNT PPV FROM table WHERE Television service = Sky Cinema 1
What DAR is available for n. 336 in Italian?
SELECT DAR FROM table WHERE N° = 336 AND Language = Italian
What are the values of n for cinema content provided by Sky Cinema +24 on its Sky Cinema package?
SELECT N° FROM table WHERE Package/Option = Sky Cinema AND Content = cinema AND Television service = Sky Cinema +24
What language is Sky Cinema Passion television service n. 308?
SELECT Language FROM table WHERE Television service = Sky Cinema Passion AND N° = 308
What package offers cinema content and is n. 333?
SELECT Package/Option FROM table WHERE Content = cinema AND N° = 333
Name the total number of dar for disney channel and number is 613
SELECT COUNT DAR FROM table WHERE Television service = Disney Channel AND N° = 613
Name the country when dar is 16:9 for italian english for disney xd +2
SELECT Country FROM table WHERE DAR = 16:9 AND Language = Italian English AND Television service = Disney XD +2
Who was the player with a bowling best of 2/43?
SELECT Player FROM table WHERE Best Bowling = 2/43
What is the highest number of maidens when the bowling best was 1/13?
SELECT MAX Maidens FROM table WHERE Best Bowling = 1/13
How many overs did Oliver Hannon-Dalby have?
SELECT Overs FROM table WHERE Player = Oliver Hannon-Dalby
What is the highest number of 5w when there was a 21.33 average?
SELECT MAX 5w FROM table WHERE Average = 21.33
What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)?
SELECT Country FROM table WHERE Agricultural Use (m 3 /p/yr)(in %) = 2040(93%)
How many countries had a per capita withdrawal (m 3 /p/yr) of 372?
SELECT COUNT Country FROM table WHERE Per Capita Withdrawal (m 3 /p/yr) = 372
How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)?
SELECT COUNT Total Freshwater Withdrawal (km 3 /yr) FROM table WHERE Agricultural Use (m 3 /p/yr)(in %) = 428(62%)
In Pakistan, what was the total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 1029(96%)?
SELECT Total Freshwater Withdrawal (km 3 /yr) FROM table WHERE Agricultural Use (m 3 /p/yr)(in %) = 1029(96%)
What was the country in which the agricultural use (m 3 /p/yr)(in %) was 794(86%)?
SELECT Country FROM table WHERE Agricultural Use (m 3 /p/yr)(in %) = 794(86%)
In how many countries was the total freshwater withdrawal (km 3 /yr) 169.39?
SELECT COUNT Country FROM table WHERE Total Freshwater Withdrawal (km 3 /yr) = 169.39
Name the date of winning score being 67-67-63=197
SELECT Date FROM table WHERE Winning score = 67-67-63=197
Name the runners up for when tournament is wgc-accenture match play championship
SELECT Runner(s)-up FROM table WHERE Tournament = WGC-Accenture Match Play Championship
Name the total number when date is 30 may 2010
SELECT COUNT No. FROM table WHERE Date = 30 May 2010
Name th margin of victory when date is 10 jul 2011
SELECT Margin of victory FROM table WHERE Date = 10 Jul 2011
Name the most number when tournament is madrid masters
SELECT MAX No. FROM table WHERE Tournament = Madrid Masters
Name who knows the most about the guest host panels for episode 5
SELECT Who knows the most about the guest host? panelists FROM table WHERE Episode Number = 5
Name the number of panelists for 20 january 2006 air date
SELECT COUNT Who knows the most about the guest host? panelists FROM table WHERE Air Date = 20 January 2006
Name the number of music guests for jade goody and kenzie
SELECT COUNT Musical Guest (Song performed) FROM table WHERE Who knows the most about the guest host? panelists = Jade Goody and Kenzie
Name the panelists for guest host jamie oliver
SELECT Who knows the most about the guest host? panelists FROM table WHERE Guest Host = Jamie Oliver
Name the most episode numbers of 6 january 2006
SELECT MAX Episode Number FROM table WHERE Air Date = 6 January 2006
Who was the musical guest and what song was performed when Dominic Wood and Nikki Grahame were the panelists?
SELECT Musical Guest (Song performed) FROM table WHERE Who knows the most about the guest host? panelists = Dominic Wood and Nikki Grahame
On what date were Gary Lucy and Susie Verrico the panelists.
SELECT Air Date FROM table WHERE Who knows the most about the guest host? panelists = Gary Lucy and Susie Verrico
List the date when Jeremy Edwards and Grace Adams-Short were the panelists.
SELECT Air Date FROM table WHERE Who knows the most about the guest host? panelists = Jeremy Edwards and Grace Adams-Short
Who was the musical guest and what song was performed when Matt Willis and Chantelle Houghton were the panelists?
SELECT Musical Guest (Song performed) FROM table WHERE Who knows the most about the guest host? panelists = Matt Willis and Chantelle Houghton
How many validations are listed for the iin range 36?
SELECT COUNT Validation FROM table WHERE IIN ranges = 36
What is the validation for iin ranges 5610, 560221-560225?
SELECT Validation FROM table WHERE IIN ranges = 5610, 560221-560225
What is the length for iin range 51-55?
SELECT Length FROM table WHERE IIN ranges = 51-55
Is the iin range 4 active?
SELECT Active FROM table WHERE IIN ranges = 4
What episode did Pamela Anderson guest host.
SELECT COUNT Episode Number FROM table WHERE Guest Host = Pamela Anderson