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