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