training_input stringlengths 118 1.06k |
|---|
###context:CREATE TABLE table_27755603_2 (record VARCHAR, high_rebounds VARCHAR)
###human: What's the record in the game where Greg Monroe (8) did the high rebounds?
###assistant: SELECT record FROM table_27755603_2 WHERE high_rebounds = "Greg Monroe (8)" |
###context:CREATE TABLE table_27755603_2 (high_rebounds VARCHAR, high_points VARCHAR)
###human: Who did the high rebounds in the game in which Rodney Stuckey (16) did the high points?
###assistant: SELECT high_rebounds FROM table_27755603_2 WHERE high_points = "Rodney Stuckey (16)" |
###context:CREATE TABLE table_27755603_2 (team VARCHAR, high_points VARCHAR)
###human: Who was the opponent in the game in which Austin Daye (16) did the most high points?
###assistant: SELECT team FROM table_27755603_2 WHERE high_points = "Austin Daye (16)" |
###context:CREATE TABLE table_27755603_2 (location_attendance VARCHAR, high_assists VARCHAR)
###human: Where was the game in which Will Bynum (5) did the high assists played?
###assistant: SELECT location_attendance FROM table_27755603_2 WHERE high_assists = "Will Bynum (5)" |
###context:CREATE TABLE table_27755784_10 (team VARCHAR, high_assists VARCHAR, high_points VARCHAR)
###human: What is the team when the high assists was stephen curry (7) and the high points was monta ellis (27)?
###assistant: SELECT team FROM table_27755784_10 WHERE high_assists = "Stephen Curry (7)" AND high_... |
###context:CREATE TABLE table_27755784_10 (game INTEGER)
###human: What is the highest game number?
###assistant: SELECT MAX(game) FROM table_27755784_10 |
###context:CREATE TABLE table_27755784_10 (score VARCHAR, team VARCHAR)
###human: What is the score when the team is @ dallas?
###assistant: SELECT score FROM table_27755784_10 WHERE team = "@ Dallas" |
###context:CREATE TABLE table_27755603_8 (high_rebounds VARCHAR, date VARCHAR)
###human: Name the high rebounds for january 14
###assistant: SELECT high_rebounds FROM table_27755603_8 WHERE date = "January 14" |
###context:CREATE TABLE table_27755603_8 (score VARCHAR, date VARCHAR)
###human: Name the number of score for january 12
###assistant: SELECT COUNT(score) FROM table_27755603_8 WHERE date = "January 12" |
###context:CREATE TABLE table_27755603_8 (location_attendance VARCHAR, high_points VARCHAR)
###human: Name the location attendance for austin daye , tracy mcgrady , tayshaun prince (20)
###assistant: SELECT location_attendance FROM table_27755603_8 WHERE high_points = "Austin Daye , Tracy McGrady , Tayshaun Pr... |
###context:CREATE TABLE table_27755784_11 (date VARCHAR, high_points VARCHAR)
###human: Name the number of date for stephen curry , dorell wright (27)
###assistant: SELECT COUNT(date) FROM table_27755784_11 WHERE high_points = "Stephen Curry , Dorell Wright (27)" |
###context:CREATE TABLE table_27755784_11 (high_rebounds VARCHAR, game VARCHAR)
###human: Name the high rebounds for 77 game
###assistant: SELECT high_rebounds FROM table_27755784_11 WHERE game = 77 |
###context:CREATE TABLE table_27755784_6 (record VARCHAR, date VARCHAR)
###human: What was the record after the game on November 10?
###assistant: SELECT record FROM table_27755784_6 WHERE date = "November 10" |
###context:CREATE TABLE table_27755784_8 (score VARCHAR, high_points VARCHAR)
###human: What is the score when the hight points is Monta Ellis (29)?
###assistant: SELECT score FROM table_27755784_8 WHERE high_points = "Monta Ellis (29)" |
###context:CREATE TABLE table_27755784_8 (team VARCHAR, high_points VARCHAR)
###human: How many teams have hight points listed as David Lee (31)?
###assistant: SELECT COUNT(team) FROM table_27755784_8 WHERE high_points = "David Lee (31)" |
###context:CREATE TABLE table_27755784_8 (record VARCHAR, high_points VARCHAR)
###human: What is the record when the high points is listed as Stephen Curry (32)?
###assistant: SELECT record FROM table_27755784_8 WHERE high_points = "Stephen Curry (32)" |
###context:CREATE TABLE table_27755784_8 (record VARCHAR, date VARCHAR)
###human: What is the record when the date is January 7?
###assistant: SELECT record FROM table_27755784_8 WHERE date = "January 7" |
###context:CREATE TABLE table_27755784_8 (date VARCHAR, team VARCHAR)
###human: What is the date when the team is listed as New Orleans?
###assistant: SELECT date FROM table_27755784_8 WHERE team = "New Orleans" |
###context:CREATE TABLE table_27756164_11 (team VARCHAR, high_assists VARCHAR)
###human: What was the team where Darren Collison (7) scored high assists?
###assistant: SELECT team FROM table_27756164_11 WHERE high_assists = "Darren Collison (7)" |
###context:CREATE TABLE table_27756164_2 (date VARCHAR, high_points VARCHAR)
###human: When did the Roy Hibbert (27) did the high points?
###assistant: SELECT date FROM table_27756164_2 WHERE high_points = "Roy Hibbert (27)" |
###context:CREATE TABLE table_27756164_2 (game VARCHAR, high_rebounds VARCHAR)
###human: In how many different games did Roy Hibbert (16) did the most high rebounds?
###assistant: SELECT COUNT(game) FROM table_27756164_2 WHERE high_rebounds = "Roy Hibbert (16)" |
###context:CREATE TABLE table_27756164_2 (score VARCHAR, high_points VARCHAR)
###human: What was the score of the game in which Danny Granger (30) did the high points?
###assistant: SELECT score FROM table_27756164_2 WHERE high_points = "Danny Granger (30)" |
###context:CREATE TABLE table_27756014_6 (high_points VARCHAR, team VARCHAR)
###human: Who scored the most points when the Bucks played against Houston?
###assistant: SELECT high_points FROM table_27756014_6 WHERE team = "Houston" |
###context:CREATE TABLE table_27756014_6 (date VARCHAR, game VARCHAR)
###human: What date was game number 22 on?
###assistant: SELECT date FROM table_27756014_6 WHERE game = 22 |
###context:CREATE TABLE table_27756014_6 (high_points VARCHAR, date VARCHAR)
###human: How many people scored the most points during the game on December 10?
###assistant: SELECT COUNT(high_points) FROM table_27756014_6 WHERE date = "December 10" |
###context:CREATE TABLE table_27756164_8 (location_attendance VARCHAR, team VARCHAR)
###human: When the team is chicago what is the location attendence?
###assistant: SELECT location_attendance FROM table_27756164_8 WHERE team = "Chicago" |
###context:CREATE TABLE table_27756164_8 (score VARCHAR, team VARCHAR)
###human: What is the score when the team is Orlando?
###assistant: SELECT COUNT(score) FROM table_27756164_8 WHERE team = "Orlando" |
###context:CREATE TABLE table_27756572_10 (score VARCHAR, date VARCHAR)
###human: What was the score in the game on March 26?
###assistant: SELECT score FROM table_27756572_10 WHERE date = "March 26" |
###context:CREATE TABLE table_27756572_10 (record VARCHAR, team VARCHAR)
###human: What was the record when the Clippers played Philadelphia?
###assistant: SELECT record FROM table_27756572_10 WHERE team = "Philadelphia" |
###context:CREATE TABLE table_27756474_2 (location_attendance VARCHAR, game VARCHAR)
###human: What location and attendance were there for game 5?
###assistant: SELECT location_attendance FROM table_27756474_2 WHERE game = 5 |
###context:CREATE TABLE table_27756474_2 (game VARCHAR, high_points VARCHAR)
###human: Which game did rudy gay (12) have the highest points?
###assistant: SELECT game FROM table_27756474_2 WHERE high_points = "Rudy Gay (12)" |
###context:CREATE TABLE table_27756474_2 (high_assists VARCHAR, team VARCHAR)
###human: How many high assists where there for the team of caja laboral?
###assistant: SELECT COUNT(high_assists) FROM table_27756474_2 WHERE team = "Caja Laboral" |
###context:CREATE TABLE table_27756474_2 (game VARCHAR, high_rebounds VARCHAR)
###human: Which game did marc gasol (10) have the high rebounds?
###assistant: SELECT game FROM table_27756474_2 WHERE high_rebounds = "Marc Gasol (10)" |
###context:CREATE TABLE table_27756474_2 (high_assists VARCHAR, date VARCHAR)
###human: Who had the high assists on october 6?
###assistant: SELECT high_assists FROM table_27756474_2 WHERE date = "October 6" |
###context:CREATE TABLE table_27756474_6 (high_assists VARCHAR, location_attendance VARCHAR)
###human: Name the total number of high assists for fedexforum 11,283
###assistant: SELECT COUNT(high_assists) FROM table_27756474_6 WHERE location_attendance = "FedExForum 11,283" |
###context:CREATE TABLE table_27756474_6 (game INTEGER, location_attendance VARCHAR)
###human: Name the most game for us airways center 16,470
###assistant: SELECT MIN(game) FROM table_27756474_6 WHERE location_attendance = "US Airways Center 16,470" |
###context:CREATE TABLE table_27756572_6 (high_points VARCHAR, team VARCHAR)
###human: Who and what were the high points player for the game against Detroit?
###assistant: SELECT high_points FROM table_27756572_6 WHERE team = "Detroit" |
###context:CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR)
###human: How many times did the Centurions play the Rhein Fire?
###assistant: SELECT COUNT(game_site) FROM table_27764201_2 WHERE opponent = "Rhein Fire" |
###context:CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR)
###human: Where did the Centurions play the Hamburg Sea Devils?
###assistant: SELECT game_site FROM table_27764201_2 WHERE opponent = "Hamburg Sea Devils" |
###context:CREATE TABLE table_27764201_2 (kickoff VARCHAR, opponent VARCHAR)
###human: What time was the kickoff against the Frankfurt Galaxy?
###assistant: SELECT kickoff FROM table_27764201_2 WHERE opponent = "Frankfurt Galaxy" |
###context:CREATE TABLE table_27770426_1 (catches VARCHAR, no VARCHAR)
###human: How many total catches did the player with no. 46 have?
###assistant: SELECT COUNT(catches) FROM table_27770426_1 WHERE no = 46 |
###context:CREATE TABLE table_27782699_3 (manner_of_departure VARCHAR, replaced_by VARCHAR)
###human: How did the manager who was replaced by Jakob Michelsen depart?
###assistant: SELECT manner_of_departure FROM table_27782699_3 WHERE replaced_by = "Jakob Michelsen" |
###context:CREATE TABLE table_27782699_3 (position_in_table VARCHAR, team VARCHAR)
###human: What was the AB team's position in table?
###assistant: SELECT position_in_table FROM table_27782699_3 WHERE team = "AB" |
###context:CREATE TABLE table_27782699_3 (date_of_appointment VARCHAR, replaced_by VARCHAR)
###human: On what date did Kim Fogh replace the previous manager?
###assistant: SELECT date_of_appointment FROM table_27782699_3 WHERE replaced_by = "Kim Fogh" |
###context:CREATE TABLE table_27782699_3 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)
###human: What was the vacancy date for Thomas Thomasberg?
###assistant: SELECT date_of_vacancy FROM table_27782699_3 WHERE outgoing_manager = "Thomas Thomasberg" |
###context:CREATE TABLE table_27782699_3 (outgoing_manager VARCHAR, replaced_by VARCHAR)
###human: Which manager was replaced by Thomas Thomasberg?
###assistant: SELECT outgoing_manager FROM table_27782699_3 WHERE replaced_by = "Thomas Thomasberg" |
###context:CREATE TABLE table_27771406_1 (total_dismissals INTEGER, club VARCHAR)
###human: How many total dismissals did the player for Guyana have?
###assistant: SELECT MAX(total_dismissals) FROM table_27771406_1 WHERE club = "Guyana" |
###context:CREATE TABLE table_27771406_1 (club VARCHAR, tests VARCHAR)
###human: The player for what club had 2 tests?
###assistant: SELECT club FROM table_27771406_1 WHERE tests = 2 |
###context:CREATE TABLE table_27771406_1 (stumpings INTEGER)
###human: What is the most amount of stumpings any player had?
###assistant: SELECT MAX(stumpings) FROM table_27771406_1 |
###context:CREATE TABLE table_27771406_1 (club VARCHAR, player VARCHAR)
###human: What club did Cyril Christiani play for?
###assistant: SELECT club FROM table_27771406_1 WHERE player = "Cyril Christiani" |
###context:CREATE TABLE table_27771406_1 (catches INTEGER, player VARCHAR)
###human: How many catches did Clifford McWatt have?
###assistant: SELECT MIN(catches) FROM table_27771406_1 WHERE player = "Clifford McWatt" |
###context:CREATE TABLE table_27786562_1 (points__margin_ VARCHAR, top_tens VARCHAR, owner VARCHAR)
###human: Name the points for top tens being 24 and ownder david pearson
###assistant: SELECT points__margin_ FROM table_27786562_1 WHERE top_tens = 24 AND owner = "David Pearson" |
###context:CREATE TABLE table_27786562_1 (starts VARCHAR, driver VARCHAR)
###human: Name the starts for bobby labonte
###assistant: SELECT starts FROM table_27786562_1 WHERE driver = "Bobby Labonte" |
###context:CREATE TABLE table_27786562_1 (poles VARCHAR, season VARCHAR)
###human: Name the poles for season 2006
###assistant: SELECT poles FROM table_27786562_1 WHERE season = 2006 |
###context:CREATE TABLE table_27776266_1 (production_code VARCHAR, no_in_series VARCHAR)
###human: What was the production code of the episode no. 55 in the series?
###assistant: SELECT production_code FROM table_27776266_1 WHERE no_in_series = 55 |
###context:CREATE TABLE table_27776266_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)
###human: What was the production code of the episode with an audience of 14.79 million in the US?
###assistant: SELECT production_code FROM table_27776266_1 WHERE us_viewers__million_ = "14.79" |
###context:CREATE TABLE table_27776266_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
###human: Who directed the episode with an audience of 14.11 million?
###assistant: SELECT directed_by FROM table_27776266_1 WHERE us_viewers__million_ = "14.11" |
###context:CREATE TABLE table_27776266_1 (title VARCHAR, production_code VARCHAR)
###human: What was the title of the episode with a production code of 3x6404?
###assistant: SELECT title FROM table_27776266_1 WHERE production_code = "3X6404" |
###context:CREATE TABLE table_2781227_10 (college_junior_club_team VARCHAR, pick VARCHAR)
###human: Which school players have a number of 255
###assistant: SELECT college_junior_club_team FROM table_2781227_10 WHERE pick = 255 |
###context:CREATE TABLE table_2781227_10 (college_junior_club_team VARCHAR, player VARCHAR)
###human: what educational institute does wes swinson attend
###assistant: SELECT college_junior_club_team FROM table_2781227_10 WHERE player = "Wes Swinson" |
###context:CREATE TABLE table_2781227_10 (position VARCHAR, player VARCHAR)
###human: which part on the team does rick schuhwerk play
###assistant: SELECT position FROM table_2781227_10 WHERE player = "Rick Schuhwerk" |
###context:CREATE TABLE table_2781227_4 (player VARCHAR, college_junior_club_team VARCHAR)
###human: For college/junior/club team is brandon wheat kings (whl) mention all the player name
###assistant: SELECT player FROM table_2781227_4 WHERE college_junior_club_team = "Brandon Wheat Kings (WHL)" |
###context:CREATE TABLE table_2781227_4 (pick INTEGER, player VARCHAR)
###human: For player is jamal mayers mention the minimum pick
###assistant: SELECT MIN(pick) FROM table_2781227_4 WHERE player = "Jamal Mayers" |
###context:CREATE TABLE table_2781227_4 (position VARCHAR, player VARCHAR)
###human: For player is john jakopin mention the total number of position
###assistant: SELECT COUNT(position) FROM table_2781227_4 WHERE player = "John Jakopin" |
###context:CREATE TABLE table_2781227_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
###human: For nhl team is san jose sharks mention all the college/junior/club team
###assistant: SELECT college_junior_club_team FROM table_2781227_4 WHERE nhl_team = "San Jose Sharks" |
###context:CREATE TABLE table_2781227_4 (college_junior_club_team VARCHAR, player VARCHAR)
###human: For player is adam wiesel mention all the college/junior/club team
###assistant: SELECT college_junior_club_team FROM table_2781227_4 WHERE player = "Adam Wiesel" |
###context:CREATE TABLE table_2781227_2 (pick VARCHAR, player VARCHAR)
###human: How many values are displayed under pick for Vlastimil Kroupa?
###assistant: SELECT COUNT(pick) FROM table_2781227_2 WHERE player = "Vlastimil Kroupa" |
###context:CREATE TABLE table_2781227_2 (position VARCHAR, player VARCHAR)
###human: How many positions does Janne Niinimaa play?
###assistant: SELECT COUNT(position) FROM table_2781227_2 WHERE player = "Janne Niinimaa" |
###context:CREATE TABLE table_2781227_2 (college_junior_club_team VARCHAR, player VARCHAR)
###human: How many teams does Lee Sorochan play for?
###assistant: SELECT COUNT(college_junior_club_team) FROM table_2781227_2 WHERE player = "Lee Sorochan" |
###context:CREATE TABLE table_2781227_2 (player VARCHAR, nhl_team VARCHAR)
###human: What player belongs to the Chicago Blackhawks?
###assistant: SELECT player FROM table_2781227_2 WHERE nhl_team = "Chicago Blackhawks" |
###context:CREATE TABLE table_2781227_2 (nhl_team VARCHAR, player VARCHAR)
###human: How many teams does Maxim Bets play for?
###assistant: SELECT COUNT(nhl_team) FROM table_2781227_2 WHERE player = "Maxim Bets" |
###context:CREATE TABLE table_2781227_11 (pick INTEGER, nhl_team VARCHAR)
###human: What was the minimum pick by the Florida Panthers?
###assistant: SELECT MIN(pick) FROM table_2781227_11 WHERE nhl_team = "Florida Panthers" |
###context:CREATE TABLE table_2781227_7 (nhl_team VARCHAR, player VARCHAR)
###human: What NHL team picked Ryan Meade for the draft?
###assistant: SELECT nhl_team FROM table_2781227_7 WHERE player = "Ryan Meade" |
###context:CREATE TABLE table_2781227_7 (college_junior_club_team VARCHAR, player VARCHAR)
###human: What college team did Ryan Golden come from?
###assistant: SELECT college_junior_club_team FROM table_2781227_7 WHERE player = "Ryan Golden" |
###context:CREATE TABLE table_2781227_7 (nationality VARCHAR, pick VARCHAR)
###human: How many different nationalities is pick number 179?
###assistant: SELECT COUNT(nationality) FROM table_2781227_7 WHERE pick = 179 |
###context:CREATE TABLE table_2781227_7 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
###human: What college team did the pick for Pittsburgh Penguins come from?
###assistant: SELECT college_junior_club_team FROM table_2781227_7 WHERE nhl_team = "Pittsburgh Penguins" |
###context:CREATE TABLE table_2781227_7 (nhl_team VARCHAR, player VARCHAR)
###human: What NHL team picked Tom White?
###assistant: SELECT nhl_team FROM table_2781227_7 WHERE player = "Tom White" |
###context:CREATE TABLE table_27813010_2 (weeks_in_top_10 INTEGER, artist VARCHAR)
###human: How many weeks in the top 10 was spent by a song performed by Peter Kay?
###assistant: SELECT MAX(weeks_in_top_10) FROM table_27813010_2 WHERE artist = "Peter Kay" |
###context:CREATE TABLE table_27813010_2 (weeks_in_top_10 INTEGER)
###human: How long has the longest song spent in the top 10?
###assistant: SELECT MAX(weeks_in_top_10) FROM table_27813010_2 |
###context:CREATE TABLE table_2781227_9 (college_junior_club_team VARCHAR, player VARCHAR)
###human: What college/junior/club team did dmitri gorenko play for?
###assistant: SELECT college_junior_club_team FROM table_2781227_9 WHERE player = "Dmitri Gorenko" |
###context:CREATE TABLE table_2781227_9 (position VARCHAR, college_junior_club_team VARCHAR)
###human: What position does krylja sovetov (russia) play?
###assistant: SELECT position FROM table_2781227_9 WHERE college_junior_club_team = "Krylja Sovetov (Russia)" |
###context:CREATE TABLE table_2781227_9 (position VARCHAR, player VARCHAR)
###human: What position(s) does barrie moore play?
###assistant: SELECT position FROM table_2781227_9 WHERE player = "Barrie Moore" |
###context:CREATE TABLE table_27816698_2 (pac_12_sports VARCHAR, institution VARCHAR)
###human: How many pac-12 sports are shown for california polytechnic state university?
###assistant: SELECT COUNT(pac_12_sports) FROM table_27816698_2 WHERE institution = "California Polytechnic State University" |
###context:CREATE TABLE table_27816698_2 (founded VARCHAR, location VARCHAR)
###human: When was the institution in boise, idaho founded?
###assistant: SELECT founded FROM table_27816698_2 WHERE location = "Boise, Idaho" |
###context:CREATE TABLE table_27816698_2 (current_conference VARCHAR, institution VARCHAR)
###human: Which conference did boise state university play at?
###assistant: SELECT current_conference FROM table_27816698_2 WHERE institution = "Boise State University" |
###context:CREATE TABLE table_27816698_2 (founded INTEGER, nickname VARCHAR)
###human: When was the Titans founded?
###assistant: SELECT MAX(founded) FROM table_27816698_2 WHERE nickname = "Titans" |
###context:CREATE TABLE table_27816698_2 (institution VARCHAR, founded VARCHAR)
###human: Which institution was founded in 1932?
###assistant: SELECT institution FROM table_27816698_2 WHERE founded = 1932 |
###context:CREATE TABLE table_27816698_2 (institution VARCHAR, location VARCHAR)
###human: Which institution was located in bakersfield, california?
###assistant: SELECT institution FROM table_27816698_2 WHERE location = "Bakersfield, California" |
###context:CREATE TABLE table_27816332_2 (games_played INTEGER, total_points VARCHAR)
###human: Name the least games played for 6 points
###assistant: SELECT MIN(games_played) FROM table_27816332_2 WHERE total_points = 6 |
###context:CREATE TABLE table_27821519_1 (manufacturer VARCHAR, no VARCHAR)
###human: who is the manufacturer is no.50?
###assistant: SELECT manufacturer FROM table_27821519_1 WHERE no = 50 |
###context:CREATE TABLE table_27823058_1 (title VARCHAR, written_by VARCHAR)
###human: Which episodes did Katie Palmer write?
###assistant: SELECT title FROM table_27823058_1 WHERE written_by = "Katie Palmer" |
###context:CREATE TABLE table_27823058_1 (series__number INTEGER)
###human: What's the highest series number ?
###assistant: SELECT MAX(series__number) FROM table_27823058_1 |
###context:CREATE TABLE table_278229_1 (commandery VARCHAR)
###human: when changsha 長沙 is the commandery what is the commandery capital?
###assistant: SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Changsha 長沙" |
###context:CREATE TABLE table_278229_1 (no_of_counties INTEGER, commandery VARCHAR)
###human: When yidu 宜都 is the commandery what is the lowest number of countries?
###assistant: SELECT MIN(no_of_counties) FROM table_278229_1 WHERE commandery = "Yidu 宜都" |
###context:CREATE TABLE table_278229_1 (commandery VARCHAR)
###human: When nanhai 南海 is the commandery what is the commandery capital?
###assistant: SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Nanhai 南海" |
###context:CREATE TABLE table_278229_1 (commandery VARCHAR)
###human: When gaoliang 高涼 is the commandery what is the commandery capital?
###assistant: SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Gaoliang 高涼" |
###context:CREATE TABLE table_27832075_2 (title VARCHAR, episode__number VARCHAR)
###human: What is the title of episode number 9-10?
###assistant: SELECT title FROM table_27832075_2 WHERE episode__number = "9-10" |
###context:CREATE TABLE table_27832075_2 (us_viewers__millions_ VARCHAR, series__number VARCHAR)
###human: How many million U.S. viewers wtched episode 69 of the series?
###assistant: SELECT us_viewers__millions_ FROM table_27832075_2 WHERE series__number = 69 |
###context:CREATE TABLE table_27832075_2 (directed_by VARCHAR, episode__number VARCHAR)
###human: Who directed episode number 23 in the season?
###assistant: SELECT directed_by FROM table_27832075_2 WHERE episode__number = "23" |
###context:CREATE TABLE table_27832075_2 (title VARCHAR, episode__number VARCHAR)
###human: What is the name of episode number 12 of the season?
###assistant: SELECT title FROM table_27832075_2 WHERE episode__number = "12" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.