question
stringlengths
12
244
sql
stringlengths
22
468
What is the type where the country is esp?
SELECT Type FROM table WHERE Country = ESP
What is the name where p is mf?
SELECT Name FROM table WHERE P = MF
What is the type where the name is bojan?
SELECT Type FROM table WHERE Name = Bojan
What was the first day cover cancellation for the University of Saskatchewan themed stamp?
SELECT First Day Cover Cancellation FROM table WHERE Theme = University of Saskatchewan
Who was responsible for the design of the Jasper National Park theme?
SELECT Design FROM table WHERE Theme = Jasper National Park
What is the paper type of the University of Saskatchewan themed stamp?
SELECT Paper Type FROM table WHERE Theme = University of Saskatchewan
Who created the illustration for the stamp that was themed 100 years of scouting?
SELECT Illustration FROM table WHERE Theme = 100 Years of Scouting
What is the number of nicknames for the meaning of god knows my journey.
SELECT COUNT Nickname FROM table WHERE Meaning = God Knows My Journey
What is the number of meaning where full name is chidinma anulika?
SELECT COUNT Meaning FROM table WHERE Full Name = Chidinma Anulika
What is the nickname that means god holds my life?
SELECT Nickname FROM table WHERE Meaning = God Holds My Life
Who had the high assists for game 49?
SELECT High assists FROM table WHERE Game = 49
What was the score for the game in which Emeka Okafor (10) had high rebounds?
SELECT Score FROM table WHERE High rebounds = Emeka Okafor (10)
what is the total number of location where station number is c03
SELECT COUNT Location FROM table WHERE Station Number = C03
what are all the type where station number is c08
SELECT Type FROM table WHERE Station Number = C08
what are all the type where location is st ives, cambridgeshire
SELECT Type FROM table WHERE Location = St Ives, Cambridgeshire
what are all the registrations where station number is c26
SELECT Registrations FROM table WHERE Station Number = C26
what are all the location where station number is c11
SELECT Location FROM table WHERE Station Number = C11
what are all the registrations where location is yaxley
SELECT Registrations FROM table WHERE Location = Yaxley
What is the issue price (proof) where the issue price (bu) is 34.95?
SELECT Issue Price (Proof) FROM table WHERE Issue Price (BU)[ clarification needed ] = 34.95
What is the earliest year where the mintage (proof) is 25,000?
SELECT MIN Year FROM table WHERE Mintage (Proof) = 25,000
What is the mintage (bu) with the artist Royal Canadian Mint Staff and has an issue price (proof) of $54.95?
SELECT Mintage (BU)[ clarification needed ] FROM table WHERE Artist = Royal Canadian Mint Staff AND Issue Price (Proof) = $54.95
What is the year that the issue price (bu) is $26.95?
SELECT Year FROM table WHERE Issue Price (BU)[ clarification needed ] = $26.95
What is the number of first class team with birthday of 5 december 1970?
SELECT COUNT First Class Team FROM table WHERE Date of Birth = 5 December 1970
What is the number when birthday is 15 november 1973?
SELECT No. FROM table WHERE Date of Birth = 15 November 1973
What is the bowling style of chris harris?
SELECT Bowling Style FROM table WHERE Player = Chris Harris
Where is the first class team of date of birth 20 november 1969?
SELECT First Class Team FROM table WHERE Date of Birth = 20 November 1969
What's Javagal Srinath's batting style?
SELECT Batting Style FROM table WHERE Player = Javagal Srinath
Shivnarine Chanderpaul used what bowling style?
SELECT Bowling Style FROM table WHERE Player = Shivnarine Chanderpaul
How many musical guests and songs were in episodes with a production code k0519?
SELECT COUNT Musical guest and song FROM table WHERE Production code = K0519
How many episodes originally aired on August 31, 1995?
SELECT COUNT Title FROM table WHERE Original air date = August 31, 1995
What's the musical guest and the song in the episode titled "Checkmate"?
SELECT Musical guest and song FROM table WHERE Title = "Checkmate"
How many episodes were titled "Man's best friend"?
SELECT COUNT Directed by FROM table WHERE Title = "Man's Best Friend"
What is the season # when the musical guest and song is lisa stansfield " you know how to love me "?
SELECT COUNT Season # FROM table WHERE Musical guest and song = Lisa Stansfield " You Know How to Love Me "
What is theoriginal air date of the episode directed by timothy van patten?
SELECT Original air date FROM table WHERE Directed by = Timothy Van Patten
What is the original air date for the title "no place like hell"?
SELECT Original air date FROM table WHERE Title = "No Place Like Hell"
What is the season # where production code is k1505?
SELECT MIN Season # FROM table WHERE Production code = K1505
What is the original air date where the musical guest and song is blackstreet " yearning for your love "?
SELECT Original air date FROM table WHERE Musical guest and song = BLACKstreet " Yearning for Your Love "
What is the title of the episode with the original air date of february 6, 1997?
SELECT Title FROM table WHERE Original air date = February 6, 1997
How many titles are there for season 8
SELECT COUNT Title FROM table WHERE Season # = 8
Which tittles have an original air date of March 19, 1998
SELECT Title FROM table WHERE Original air date = March 19, 1998
what are the original air dates with a title of "spare Parts"
SELECT Original air date FROM table WHERE Title = "Spare Parts"
What was the attendance of the game November 24
SELECT Location Attendance FROM table WHERE Date = November 24
Who had the highest assists on November 4
SELECT High assists FROM table WHERE Date = November 4
Who had the highest rebounds on November 4
SELECT High rebounds FROM table WHERE Date = November 4
How many numbers were listed under attendance for March 2?
SELECT COUNT Location Attendance FROM table WHERE Date = March 2
What was the final score on March 26?
SELECT Score FROM table WHERE Date = March 26
What is the team when the score is 88–86?
SELECT Team FROM table WHERE Score = 88–86
What is the score when high points is from pierce (30)?
SELECT Score FROM table WHERE High points = Pierce (30)
How many times is the score 98–90?
SELECT COUNT Location Attendance FROM table WHERE Score = 98–90
What is the game that the location attendance is pepsi center 19,894?
SELECT MAX Game FROM table WHERE Location Attendance = Pepsi Center 19,894
What is the team when location attendance is us airways center 18,422?
SELECT Team FROM table WHERE Location Attendance = US Airways Center 18,422
What is the record where high assists is pierce (6)?
SELECT Record FROM table WHERE High assists = Pierce (6)
What was the result of the game when the raptors played @ cleveland?
SELECT Score FROM table WHERE Team = @ Cleveland
Who did the high points of game 5?
SELECT High points FROM table WHERE Game = 5
How many high points were at the wachovia center 18,347?
SELECT COUNT High points FROM table WHERE Location Attendance = Wachovia Center 18,347
What is the team of april 25?
SELECT Team FROM table WHERE Date = April 25
Who had the high rebounds when Chris Bosh (16) had the high points?
SELECT High rebounds FROM table WHERE High points = Chris Bosh (16)
What was the score when the location attendance was Air Canada Centre 18,067?
SELECT Score FROM table WHERE Location Attendance = Air Canada Centre 18,067
When did Chris Bosh (14) have the high rebounds?
SELECT Date FROM table WHERE High rebounds = Chris Bosh (14)
Who had the high points on January 23?
SELECT High points FROM table WHERE Date = January 23
How many times was the game 39?
SELECT COUNT Record FROM table WHERE Game = 39
What is San Antonio game number?
SELECT MAX Game FROM table WHERE Team = San Antonio
Who had high points when high rebound is gray (8)?
SELECT High points FROM table WHERE High rebounds = Gray (8)
What is the date deng (20) had high points?
SELECT Date FROM table WHERE High points = Deng (20)
What was the score of united center 22,097?
SELECT Score FROM table WHERE Location Attendance = United Center 22,097
When gordon (27) had high points, what was the number of high assists?
SELECT COUNT High assists FROM table WHERE High points = Gordon (27)
What was the location attendance on the date of November 15?
SELECT Location Attendance FROM table WHERE Date = November 15
Where was the game played when the high assists were scored by billups , stuckey (4)?
SELECT Location Attendance FROM table WHERE High assists = Billups , Stuckey (4)
What date was the game for the score L 88–79?
SELECT Date FROM table WHERE Score = L 88–79
How many high points were there in the game 67?
SELECT COUNT High points FROM table WHERE Game = 67
Which team was played when the high points was from Wallace (20)?
SELECT Team FROM table WHERE High points = Wallace (20)
Which date was the team playing @ Memphis?
SELECT Date FROM table WHERE Team = @ Memphis
how many times was the high rebounds by Mcdyess (9) and the high assists was by Billups (10)?
SELECT COUNT High points FROM table WHERE High rebounds = McDyess (9) AND High assists = Billups (10)
Who had the high assists on the date December 12?
SELECT High assists FROM table WHERE Date = December 12
What date was game 57 held on?
SELECT Date FROM table WHERE Game = 57
How many players had the most points in the game @ Milwaukee?
SELECT COUNT High points FROM table WHERE Team = @ Milwaukee
Who did the most high rebounds in the game 24?
SELECT High rebounds FROM table WHERE Game = 24
What was the score of the game played on December 8?
SELECT Score FROM table WHERE Date = December 8
What was the total number of games where A. Johnson (6) gave the most high assists?
SELECT COUNT Game FROM table WHERE High assists = A. Johnson (6)
What's the minimal game number in the season?
SELECT MIN Game FROM table
What is the location when the high rebounds was from A. Horford (13)?
SELECT Location Attendance FROM table WHERE High rebounds = A. Horford (13)
How had the high points when the high assists were from J. Johnson (7)?
SELECT High points FROM table WHERE High assists = J. Johnson (7)
Who had the high rebounds when the high assists were from J. Johnson (7)?
SELECT High rebounds FROM table WHERE High assists = J. Johnson (7)
Which team was played on April 20?
SELECT Team FROM table WHERE Date = April 20
Who had the high rebounds for the game on april 23?
SELECT High rebounds FROM table WHERE Date = April 23
What was the score in the game on May 11?
SELECT Score FROM table WHERE Date = May 11
Who was the high scorer and how much did they score in the game on May 3?
SELECT High points FROM table WHERE Date = May 3
What was the series count at for game 5?
SELECT Series FROM table WHERE Game = 5
Where was the game on May 15 and how many were in attendance?
SELECT Location Attendance FROM table WHERE Date = May 15
What was the attendance on March 17?
SELECT Location Attendance FROM table WHERE Date = March 17
What was the high assist total on May 11?
SELECT High assists FROM table WHERE Date = May 11
What is the lowest #?
SELECT MIN # FROM table
What is the score of the game with the streak l5
SELECT Score FROM table WHERE Streak = L5
What is the attendance for the home game at Los Angeles Lakers?
SELECT Attendance FROM table WHERE Home = Los Angeles Lakers
What is the record for the game at home Los Angeles Lakers?
SELECT Record FROM table WHERE Home = Los Angeles Lakers
What was the result and score of Game #29?
SELECT Score FROM table WHERE # = 29
Who was the leading scorer in Game #26?
SELECT Leading scorer FROM table WHERE # = 26
Who had the high rebounds when the score was l 84–102 (ot)?
SELECT High rebounds FROM table WHERE Score = L 84–102 (OT)
Who had the high assists when the high rebounds were from Nick Collison (15)?
SELECT High assists FROM table WHERE High rebounds = Nick Collison (15)
Who had the high assists @ Dallas?
SELECT High assists FROM table WHERE Team = @ Dallas