answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT COUNT(no_stamps_in_sheet) FROM table_15635768_1 WHERE face_value = "37¢" AND printer = "Banknote Corporation of America" | CREATE TABLE table_15635768_1 (no_stamps_in_sheet VARCHAR, face_value VARCHAR, printer VARCHAR) | How many stamps have a face value of 37¢ and were printed in the banknote corporation of america? |
SELECT printer FROM table_15635768_1 WHERE place_of_issue = "Estes Park, Colorado" | CREATE TABLE table_15635768_1 (printer VARCHAR, place_of_issue VARCHAR) | Who was the printer of Estes Park, Colorado? |
SELECT printer FROM table_15635768_1 WHERE face_value = "39¢" | CREATE TABLE table_15635768_1 (printer VARCHAR, face_value VARCHAR) | The stamp was 39¢, who was the printer? |
SELECT attendance FROM table_15647838_3 WHERE location = "El Paso, TX" | CREATE TABLE table_15647838_3 (attendance VARCHAR, location VARCHAR) | What are values of attendance for the El Paso, TX location? |
SELECT COUNT(result) FROM table_15647838_3 WHERE attendance = "74,111" | CREATE TABLE table_15647838_3 (result VARCHAR, attendance VARCHAR) | How many values for result correspond to attendance of 74,111? |
SELECT COUNT(location) FROM table_15647838_3 WHERE stadium = "Sun Life stadium" | CREATE TABLE table_15647838_3 (location VARCHAR, stadium VARCHAR) | How many locations have the Sun Life Stadium? |
SELECT MAX(season) FROM table_15647838_3 WHERE bowl_game = "1993 Independence Bowl" | CREATE TABLE table_15647838_3 (season INTEGER, bowl_game VARCHAR) | What is the highest season for a bowl game of the 1993 Independence Bowl? |
SELECT MIN(_number) FROM table_15647838_3 WHERE location = "Atlanta, GA" AND opponent = "Georgia Bulldogs" | CREATE TABLE table_15647838_3 (_number INTEGER, location VARCHAR, opponent VARCHAR) | What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent? |
SELECT COUNT(attendance) FROM table_15647838_3 WHERE bowl_game = "1986 Peach Bowl" | CREATE TABLE table_15647838_3 (attendance VARCHAR, bowl_game VARCHAR) | How many values for attendance correspond to the 1986 Peach Bowl? |
SELECT interview_subject FROM table_1566848_7 WHERE date = "2-86" | CREATE TABLE table_1566848_7 (interview_subject VARCHAR, date VARCHAR) | Who was the interview subject in the 2-86 issue? |
SELECT COUNT(pictorials) FROM table_1566848_7 WHERE centerfold_model = "Rebekka Armstrong" | CREATE TABLE table_1566848_7 (pictorials VARCHAR, centerfold_model VARCHAR) | Who were all the pictorials when the centerfold model was Rebekka Armstrong? |
SELECT pictorials FROM table_1566848_7 WHERE centerfold_model = "Ava Fabian" | CREATE TABLE table_1566848_7 (pictorials VARCHAR, centerfold_model VARCHAR) | Who were the pictorials when the centerfold model was Ava Fabian? |
SELECT COUNT(interview_subject) FROM table_1566848_7 WHERE centerfold_model = "Sherry Arnett" | CREATE TABLE table_1566848_7 (interview_subject VARCHAR, centerfold_model VARCHAR) | Who was the interview subject when the centerfold model was Sherry Arnett? |
SELECT cover_model FROM table_1566848_7 WHERE date = "7-86" | CREATE TABLE table_1566848_7 (cover_model VARCHAR, date VARCHAR) | Who was the cover model in the 7-86 issue? |
SELECT COUNT(date) FROM table_1566848_7 WHERE pictorials = "Female s disk jockey" | CREATE TABLE table_1566848_7 (date VARCHAR, pictorials VARCHAR) | What is the date of the issue where the pictorials is of Female s disk jockey? |
SELECT cover_model FROM table_1566852_3 WHERE centerfold_model = "Shallan Meiers" | CREATE TABLE table_1566852_3 (cover_model VARCHAR, centerfold_model VARCHAR) | WHO WAS THE COVER MODEL OF PLAYBOY WHERE THE CENTERFOLD MODEL WAS SHALLAN MEIERS? |
SELECT interview_subject FROM table_1566852_3 WHERE centerfold_model = "Nicole Narain" | CREATE TABLE table_1566852_3 (interview_subject VARCHAR, centerfold_model VARCHAR) | IN THE ISSUE WHERE NICOLE NARAIN WAS THE CENTERFOLD MODEL, WHO WAS THE INTERVIEW SUBJECT? |
SELECT COUNT(date) FROM table_1566852_3 WHERE interview_subject = "Harrison Ford" | CREATE TABLE table_1566852_3 (date VARCHAR, interview_subject VARCHAR) | IN HOW MANY ISSUES WAS HARRISON FORD THE INTERVIEW SUBJECT? |
SELECT 20 AS _questions FROM table_1566852_4 WHERE interview_subject = "Mike Piazza" | CREATE TABLE table_1566852_4 (interview_subject VARCHAR) | Who was featured in 20 questions when the subject of the interview was Mike Piazza? |
SELECT 20 AS _questions FROM table_1566852_4 WHERE date = "4-03" | CREATE TABLE table_1566852_4 (date VARCHAR) | Who was featured in 20 questions on 4-03? |
SELECT date FROM table_1566852_4 WHERE centerfold_model = "Luci Victoria" | CREATE TABLE table_1566852_4 (date VARCHAR, centerfold_model VARCHAR) | On what deate was the centerfold featured Luci Victoria? |
SELECT COUNT(centerfold_model) FROM table_1566852_4 WHERE cover_model = "Torrie Wilson" | CREATE TABLE table_1566852_4 (centerfold_model VARCHAR, cover_model VARCHAR) | How many centerfold models were there when the cover model was Torrie Wilson? |
SELECT pictorials FROM table_1566850_9 WHERE date = "11-98" | CREATE TABLE table_1566850_9 (pictorials VARCHAR, date VARCHAR) | What is the name of the pictorial in the 11-98 issue? |
SELECT COUNT(centerfold_model) FROM table_1566850_9 WHERE date = "9-98" | CREATE TABLE table_1566850_9 (centerfold_model VARCHAR, date VARCHAR) | How many centerfolds were in the 9-98 issue? |
SELECT interview_subject FROM table_1566850_9 WHERE date = "8-98" | CREATE TABLE table_1566850_9 (interview_subject VARCHAR, date VARCHAR) | Who was interviewed in the 8-98 issue? |
SELECT 20 AS _questions FROM table_1566850_9 WHERE centerfold_model = "Marliece Andrada" | CREATE TABLE table_1566850_9 (centerfold_model VARCHAR) | Who was asked 20 questions in the issue where the centerfold is Marliece Andrada? |
SELECT 20 AS _questions FROM table_1566850_9 WHERE cover_model = "Linda Brava" | CREATE TABLE table_1566850_9 (cover_model VARCHAR) | Who was asked 20 questions in the issue where the cover model is Linda Brava? |
SELECT COUNT(date) FROM table_1566852_6 WHERE centerfold_model = "Jillian Grace" | CREATE TABLE table_1566852_6 (date VARCHAR, centerfold_model VARCHAR) | How many times was Jillian Grace the centerfold model? |
SELECT interview_subject FROM table_1566852_6 WHERE cover_model = "Bai Ling" | CREATE TABLE table_1566852_6 (interview_subject VARCHAR, cover_model VARCHAR) | What were the interview subjects on those occasions where Bai Ling was the cover model? |
SELECT COUNT(interview_subject) FROM table_1566852_6 WHERE centerfold_model = "Tamara Witmer" | CREATE TABLE table_1566852_6 (interview_subject VARCHAR, centerfold_model VARCHAR) | How many total interview subjects wererthere when the centerfold model was Tamara Witmer? |
SELECT 20 AS _questions FROM table_1566852_6 WHERE centerfold_model = "Jillian Grace" | CREATE TABLE table_1566852_6 (centerfold_model VARCHAR) | What's the subject of 20 questions in those issues where Jillian Grace is the centerfold model? |
SELECT cover_model FROM table_1566852_6 WHERE date = "4-05" | CREATE TABLE table_1566852_6 (cover_model VARCHAR, date VARCHAR) | Who were the cover model(s) on the 4-05 issue? |
SELECT date FROM table_1566852_5 WHERE interview_subject = "Oliver Stone" | CREATE TABLE table_1566852_5 (date VARCHAR, interview_subject VARCHAR) | Name the date for oliver stone |
SELECT 20 AS _questions FROM table_1566852_5 WHERE interview_subject = "Derek Jeter" | CREATE TABLE table_1566852_5 (interview_subject VARCHAR) | Name the 20 questions for derek jeter |
SELECT 20 AS _questions FROM table_1566852_5 WHERE date = "8-04" | CREATE TABLE table_1566852_5 (date VARCHAR) | Name the 20 questions for 8-04 |
SELECT open_cup FROM table_15672920_1 WHERE year = 2010 | CREATE TABLE table_15672920_1 (open_cup VARCHAR, year VARCHAR) | Name the open cup for 2010 |
SELECT date FROM table_1566852_7 WHERE interview_subject = "Shepard Smith" | CREATE TABLE table_1566852_7 (date VARCHAR, interview_subject VARCHAR) | IN WHAT ISSUE OF PLAYBOY WAS SHEPARD SMITH INTERVIEWED? |
SELECT COUNT(cover_model) FROM table_1566852_7 WHERE centerfold_model = "Stephanie Larimore" | CREATE TABLE table_1566852_7 (cover_model VARCHAR, centerfold_model VARCHAR) | HOW MANY MODELS WERE ON THE COVER OF THE ISSUE WHERE THE CENTERFOLD WAS STEPHANIE LARIMORE? |
SELECT interview_subject FROM table_1566852_7 WHERE cover_model = "Kara Monaco" | CREATE TABLE table_1566852_7 (interview_subject VARCHAR, cover_model VARCHAR) | IN THE ISSUE WITH KARA MONACO ON THE COVER, WHO WAS THE INTERVIEW SUBJECT? |
SELECT COUNT(20 AS _questions) FROM table_1566852_7 WHERE interview_subject = "Ludacris" | CREATE TABLE table_1566852_7 (interview_subject VARCHAR) | HOW MANY TIMES WAS LUDACRIS THE INTERVIEW SUBJECT FOR THE 20 QUESTIONS COLUMN? |
SELECT arabic_capital_name FROM table_15694696_1 WHERE english_capital_name = "Manama" | CREATE TABLE table_15694696_1 (arabic_capital_name VARCHAR, english_capital_name VARCHAR) | what is the arabic capital name wher the english capital name is manama? |
SELECT arabic_capital_name FROM table_15694696_1 WHERE english_capital_name = "Beirut" | CREATE TABLE table_15694696_1 (arabic_capital_name VARCHAR, english_capital_name VARCHAR) | what is the arabic capital name where the english capital name is beirut? |
SELECT rank__night_ FROM table_15681686_4 WHERE rating = "4.4" | CREATE TABLE table_15681686_4 (rank__night_ VARCHAR, rating VARCHAR) | what is the rank for the rating 4.4? |
SELECT rating / SHARE(18 - 49) FROM table_15681686_4 WHERE rank__week_ = "48" | CREATE TABLE table_15681686_4 (rating VARCHAR, rank__week_ VARCHAR) | what is the rating where the rank is 48? |
SELECT COUNT(rank__timeslot_) FROM table_15681686_4 WHERE rank__week_ = "58" | CREATE TABLE table_15681686_4 (rank__timeslot_ VARCHAR, rank__week_ VARCHAR) | what is the total rank where the rank is 58? |
SELECT rank__week_ FROM table_15681686_4 WHERE viewers__millions_ = "6.45" | CREATE TABLE table_15681686_4 (rank__week_ VARCHAR, viewers__millions_ VARCHAR) | what rank has viewers at 6.45? |
SELECT COUNT(rank__timeslot_) FROM table_15681686_4 WHERE viewers__millions_ = "9.38" | CREATE TABLE table_15681686_4 (rank__timeslot_ VARCHAR, viewers__millions_ VARCHAR) | what is the total number of rank where viewers is 9.38? |
SELECT destination FROM table_1569516_1 WHERE service_pattern = "Sydenham then fast to Norwood Junction" | CREATE TABLE table_1569516_1 (destination VARCHAR, service_pattern VARCHAR) | Where is the service pattern sydenham then fast to norwood junction? |
SELECT COUNT(platform) FROM table_1569516_1 WHERE operator = "Southern" AND service_pattern = "All stations via Clapham Junction" | CREATE TABLE table_1569516_1 (platform VARCHAR, operator VARCHAR, service_pattern VARCHAR) | How many platforms have a southern opertator and the pattern is all stations via clapham junction? |
SELECT frequency__per_hour_ FROM table_1569516_1 WHERE destination = "London Bridge" | CREATE TABLE table_1569516_1 (frequency__per_hour_ VARCHAR, destination VARCHAR) | When London Bridge is the destination, what is the frequency? |
SELECT COUNT(line) FROM table_1569516_1 WHERE destination = "London Bridge" | CREATE TABLE table_1569516_1 (line VARCHAR, destination VARCHAR) | When London Bridge is the destination, how many lines are there? |
SELECT playoffs FROM table_1570003_2 WHERE year = 1998 | CREATE TABLE table_1570003_2 (playoffs VARCHAR, year VARCHAR) | What was the playoff advancement during the year 1998? |
SELECT open_cup FROM table_1570003_2 WHERE year = 2003 | CREATE TABLE table_1570003_2 (open_cup VARCHAR, year VARCHAR) | During 2003 what was open cup qualifying status? |
SELECT MAX(year) FROM table_1570003_2 WHERE open_cup = "2nd Round" | CREATE TABLE table_1570003_2 (year INTEGER, open_cup VARCHAR) | What is the most recent year where team made it to 2nd round of the Open Cup? |
SELECT margin_of_victory FROM table_1569625_1 WHERE no = 15 | CREATE TABLE table_1569625_1 (margin_of_victory VARCHAR, no VARCHAR) | Name the margin of victory when the number is 15 |
SELECT COUNT(no) FROM table_1569625_1 WHERE runner_s__up = "Howard Clark" | CREATE TABLE table_1569625_1 (no VARCHAR, runner_s__up VARCHAR) | Name the number of numbers for howard clark |
SELECT margin_of_victory FROM table_1569625_1 WHERE tournament = "Algarve Open de Portugal" | CREATE TABLE table_1569625_1 (margin_of_victory VARCHAR, tournament VARCHAR) | Name the margin of victory when tournament is algarve open de portugal |
SELECT tournament FROM table_1569625_1 WHERE margin_of_victory = "3 strokes" AND winning_score = 71 - 66 - 70 - 67 = 274 | CREATE TABLE table_1569625_1 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR) | Name the tournament when margin of victory is 3 strokes and winning score is 71-66-70-67=274 |
SELECT MAX(runs_conceded) FROM table_15700367_4 | CREATE TABLE table_15700367_4 (runs_conceded INTEGER) | Name the most runs conceded |
SELECT wickets FROM table_15700367_4 WHERE overs_bowled = "9" | CREATE TABLE table_15700367_4 (wickets VARCHAR, overs_bowled VARCHAR) | Name the wickets when overs bowled is 9 |
SELECT MAX(maidens) FROM table_15700367_4 WHERE er = "5.11" | CREATE TABLE table_15700367_4 (maidens INTEGER, er VARCHAR) | Name the most maidens when e.r. 5.11 |
SELECT MIN(runs_conceded) FROM table_15700367_4 WHERE name = "Brett Lee" | CREATE TABLE table_15700367_4 (runs_conceded INTEGER, name VARCHAR) | Name the least runs conceded for brett lee |
SELECT runs_conceded FROM table_15700367_6 WHERE er = "4.96" | CREATE TABLE table_15700367_6 (runs_conceded VARCHAR, er VARCHAR) | How many runs conceded when the earned runs was 4.96? |
SELECT COUNT(runs_conceded) FROM table_15700367_6 WHERE name = "Sanath Jayasuriya" | CREATE TABLE table_15700367_6 (runs_conceded VARCHAR, name VARCHAR) | How many players named sanath jayasuriya? |
SELECT runs_conceded FROM table_15700367_6 WHERE name = "Chaminda Vaas" | CREATE TABLE table_15700367_6 (runs_conceded VARCHAR, name VARCHAR) | How many runs conceded for chaminda vaas? |
SELECT COUNT(overs_bowled) FROM table_15700367_6 WHERE name = "Muttiah Muralitharan" | CREATE TABLE table_15700367_6 (overs_bowled VARCHAR, name VARCHAR) | How many overs bowled for muttiah muralitharan? |
SELECT er FROM table_15700367_6 WHERE runs_conceded = 368 | CREATE TABLE table_15700367_6 (er VARCHAR, runs_conceded VARCHAR) | What was the ER average for the player that conceded 368 runs? |
SELECT MIN(wickets) FROM table_15700367_6 WHERE name = "Farveez Maharoof" | CREATE TABLE table_15700367_6 (wickets INTEGER, name VARCHAR) | What is the lowest number of wickets for farveez maharoof? |
SELECT airdate FROM table_15739098_2 WHERE story = "Hugh Leonard" | CREATE TABLE table_15739098_2 (airdate VARCHAR, story VARCHAR) | What is the airdate when the story is listed as hugh leonard? |
SELECT kansas_state_vs FROM table_15740666_6 WHERE last_meeting = "11/26/1988" | CREATE TABLE table_15740666_6 (kansas_state_vs VARCHAR, last_meeting VARCHAR) | who won the kansas state game on 11/26/1988 |
SELECT COUNT(games_played) FROM table_15740666_6 WHERE kansas_state_vs = "DePaul" | CREATE TABLE table_15740666_6 (games_played VARCHAR, kansas_state_vs VARCHAR) | how many games has kansas state and depaul played against each other |
SELECT current_streak FROM table_15740666_6 WHERE last_meeting = "12/5/1987" | CREATE TABLE table_15740666_6 (current_streak VARCHAR, last_meeting VARCHAR) | if they played last on 12/5/1987 what is their record |
SELECT high_points FROM table_15780049_8 WHERE date = "March 7" | CREATE TABLE table_15780049_8 (high_points VARCHAR, date VARCHAR) | Name the high points for march 7 |
SELECT date FROM table_15780049_8 WHERE team = "Sacramento" | CREATE TABLE table_15780049_8 (date VARCHAR, team VARCHAR) | Name the date for sacramento |
SELECT high_rebounds FROM table_15780049_8 WHERE date = "March 17" | CREATE TABLE table_15780049_8 (high_rebounds VARCHAR, date VARCHAR) | Name the high rebounds for march 17 |
SELECT location_attendance FROM table_15780049_8 WHERE team = "Philadelphia" | CREATE TABLE table_15780049_8 (location_attendance VARCHAR, team VARCHAR) | Name the location attendance for philadelphia |
SELECT high_assists FROM table_15780718_8 WHERE game = 59 | CREATE TABLE table_15780718_8 (high_assists VARCHAR, game VARCHAR) | Who scored the most assists in game 59? |
SELECT record FROM table_15780718_8 WHERE team = "Boston" | CREATE TABLE table_15780718_8 (record VARCHAR, team VARCHAR) | What was the record against Boston? |
SELECT COUNT(poll_winner) FROM table_15781170_2 WHERE original_air_date = "March 19, 2008" | CREATE TABLE table_15781170_2 (poll_winner VARCHAR, original_air_date VARCHAR) | Name the poll winner for march 19, 2008 |
SELECT _number FROM table_15781170_2 WHERE poll_winner = "YouTube" | CREATE TABLE table_15781170_2 (_number VARCHAR, poll_winner VARCHAR) | Name the # for youtube |
SELECT original_air_date FROM table_15781170_3 WHERE poll_winner = "Scientology" | CREATE TABLE table_15781170_3 (original_air_date VARCHAR, poll_winner VARCHAR) | What are the original air dates when scientology isthe poll winner? |
SELECT root_of_all_evil FROM table_15781170_3 WHERE poll_winner = "Bloggers" | CREATE TABLE table_15781170_3 (root_of_all_evil VARCHAR, poll_winner VARCHAR) | When bloggers was the poll winner, who was the root of all evil? |
SELECT COUNT(_number) FROM table_15781170_3 WHERE poll_winner = "Drinking Games" | CREATE TABLE table_15781170_3 (_number VARCHAR, poll_winner VARCHAR) | How many times did drinking games win the poll? |
SELECT broadcast_date FROM table_1579922_1 WHERE run_time = "24:30" | CREATE TABLE table_1579922_1 (broadcast_date VARCHAR, run_time VARCHAR) | What date was an episode with a run time of 24:30 broadcasted? |
SELECT episode FROM table_1579922_1 WHERE run_time = "24:25" | CREATE TABLE table_1579922_1 (episode VARCHAR, run_time VARCHAR) | What episode had a run time of 24:25? |
SELECT original_artist FROM table_15796072_1 WHERE week__number = "Top 16 (8 Women)" | CREATE TABLE table_15796072_1 (original_artist VARCHAR, week__number VARCHAR) | Who was the original artist for week number Top 16 (8 women)? |
SELECT order__number FROM table_15796072_1 WHERE original_artist = "The Doors" | CREATE TABLE table_15796072_1 (order__number VARCHAR, original_artist VARCHAR) | What was the order number where the original artist is The Doors? |
SELECT theme FROM table_15796072_1 WHERE original_artist = "The Beatles" | CREATE TABLE table_15796072_1 (theme VARCHAR, original_artist VARCHAR) | What was the theme when the original artist was The Beatles? |
SELECT original_artist FROM table_15796072_1 WHERE theme = "1980s" | CREATE TABLE table_15796072_1 (original_artist VARCHAR, theme VARCHAR) | Who was the original artist when the theme was 1980s? |
SELECT original_artist FROM table_15796072_1 WHERE order__number = "9" | CREATE TABLE table_15796072_1 (original_artist VARCHAR, order__number VARCHAR) | Who was the original artist when the order number is 9? |
SELECT episodes FROM table_15823956_1 WHERE region_1 = "N/A" | CREATE TABLE table_15823956_1 (episodes VARCHAR, region_1 VARCHAR) | Which episode was N/A in region 1 |
SELECT series AS premiere FROM table_15823956_1 WHERE series = "Pilot" | CREATE TABLE table_15823956_1 (series VARCHAR) | When was series premiere on the pilot episode |
SELECT region_1 FROM table_15823956_1 WHERE series = "4" | CREATE TABLE table_15823956_1 (region_1 VARCHAR, series VARCHAR) | What is the region 1 date for series 4 |
SELECT MAX(season__number) FROM table_15824796_3 WHERE original_air_date = "December 5, 1953" | CREATE TABLE table_15824796_3 (season__number INTEGER, original_air_date VARCHAR) | What season began on december 5, 1953? |
SELECT title FROM table_15824796_3 WHERE original_air_date = "February 27, 1954" | CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR) | What is the title of the first episode of the season that begin on february 27, 1954? |
SELECT title FROM table_15824796_3 WHERE original_air_date = "December 12, 1953" | CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR) | What is the title of the episode that aired on december 12, 1953? |
SELECT COUNT(title) FROM table_15824796_3 WHERE original_air_date = "February 13, 1954" | CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR) | How many episodes aired on february 13, 1954? |
SELECT cfl_team FROM table_15817998_5 WHERE pick__number = 36 | CREATE TABLE table_15817998_5 (cfl_team VARCHAR, pick__number VARCHAR) | What are all the CFL teams where the pick number is 36? |
SELECT position FROM table_15817998_5 WHERE college = "Alberta" | CREATE TABLE table_15817998_5 (position VARCHAR, college VARCHAR) | What are the positions in the college of Alberta? |
SELECT COUNT(cfl_team) FROM table_15817998_5 WHERE college = "Wilfrid Laurier" | CREATE TABLE table_15817998_5 (cfl_team VARCHAR, college VARCHAR) | What is the total number of CFL teams in the college Wilfrid Laurier |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.