Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
39,800 | <question>: What's the record in the game where Greg Monroe (8) did the high rebounds? <context>: CREATE TABLE table_27755603_2 (record VARCHAR, high_rebounds VARCHAR) | SELECT record FROM table_27755603_2 WHERE high_rebounds = "Greg Monroe (8)" |
39,801 | <question>: Who did the high rebounds in the game in which Rodney Stuckey (16) did the high points? <context>: CREATE TABLE table_27755603_2 (high_rebounds VARCHAR, high_points VARCHAR) | SELECT high_rebounds FROM table_27755603_2 WHERE high_points = "Rodney Stuckey (16)" |
39,802 | <question>: Who was the opponent in the game in which Austin Daye (16) did the most high points? <context>: CREATE TABLE table_27755603_2 (team VARCHAR, high_points VARCHAR) | SELECT team FROM table_27755603_2 WHERE high_points = "Austin Daye (16)" |
39,803 | <question>: Where was the game in which Will Bynum (5) did the high assists played? <context>: CREATE TABLE table_27755603_2 (location_attendance VARCHAR, high_assists VARCHAR) | SELECT location_attendance FROM table_27755603_2 WHERE high_assists = "Will Bynum (5)" |
39,804 | <question>: What is the team when the high assists was stephen curry (7) and the high points was monta ellis (27)? <context>: CREATE TABLE table_27755784_10 (team VARCHAR, high_assists VARCHAR, high_points VARCHAR) | SELECT team FROM table_27755784_10 WHERE high_assists = "Stephen Curry (7)" AND high_points = "Monta Ellis (27)" |
39,805 | <question>: What is the highest game number? <context>: CREATE TABLE table_27755784_10 (game INTEGER) | SELECT MAX(game) FROM table_27755784_10 |
39,806 | <question>: What is the score when the team is @ dallas? <context>: CREATE TABLE table_27755784_10 (score VARCHAR, team VARCHAR) | SELECT score FROM table_27755784_10 WHERE team = "@ Dallas" |
39,807 | <question>: Name the high rebounds for january 14 <context>: CREATE TABLE table_27755603_8 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_27755603_8 WHERE date = "January 14" |
39,808 | <question>: Name the number of score for january 12 <context>: CREATE TABLE table_27755603_8 (score VARCHAR, date VARCHAR) | SELECT COUNT(score) FROM table_27755603_8 WHERE date = "January 12" |
39,809 | <question>: Name the location attendance for austin daye , tracy mcgrady , tayshaun prince (20) <context>: CREATE TABLE table_27755603_8 (location_attendance VARCHAR, high_points VARCHAR) | SELECT location_attendance FROM table_27755603_8 WHERE high_points = "Austin Daye , Tracy McGrady , Tayshaun Prince (20)" |
39,810 | <question>: Name the number of date for stephen curry , dorell wright (27) <context>: CREATE TABLE table_27755784_11 (date VARCHAR, high_points VARCHAR) | SELECT COUNT(date) FROM table_27755784_11 WHERE high_points = "Stephen Curry , Dorell Wright (27)" |
39,811 | <question>: Name the high rebounds for 77 game <context>: CREATE TABLE table_27755784_11 (high_rebounds VARCHAR, game VARCHAR) | SELECT high_rebounds FROM table_27755784_11 WHERE game = 77 |
39,812 | <question>: What was the record after the game on November 10? <context>: CREATE TABLE table_27755784_6 (record VARCHAR, date VARCHAR) | SELECT record FROM table_27755784_6 WHERE date = "November 10" |
39,813 | <question>: What is the score when the hight points is Monta Ellis (29)? <context>: CREATE TABLE table_27755784_8 (score VARCHAR, high_points VARCHAR) | SELECT score FROM table_27755784_8 WHERE high_points = "Monta Ellis (29)" |
39,814 | <question>: How many teams have hight points listed as David Lee (31)? <context>: CREATE TABLE table_27755784_8 (team VARCHAR, high_points VARCHAR) | SELECT COUNT(team) FROM table_27755784_8 WHERE high_points = "David Lee (31)" |
39,815 | <question>: What is the record when the high points is listed as Stephen Curry (32)? <context>: CREATE TABLE table_27755784_8 (record VARCHAR, high_points VARCHAR) | SELECT record FROM table_27755784_8 WHERE high_points = "Stephen Curry (32)" |
39,816 | <question>: What is the record when the date is January 7? <context>: CREATE TABLE table_27755784_8 (record VARCHAR, date VARCHAR) | SELECT record FROM table_27755784_8 WHERE date = "January 7" |
39,817 | <question>: What is the date when the team is listed as New Orleans? <context>: CREATE TABLE table_27755784_8 (date VARCHAR, team VARCHAR) | SELECT date FROM table_27755784_8 WHERE team = "New Orleans" |
39,818 | <question>: What was the team where Darren Collison (7) scored high assists? <context>: CREATE TABLE table_27756164_11 (team VARCHAR, high_assists VARCHAR) | SELECT team FROM table_27756164_11 WHERE high_assists = "Darren Collison (7)" |
39,819 | <question>: When did the Roy Hibbert (27) did the high points? <context>: CREATE TABLE table_27756164_2 (date VARCHAR, high_points VARCHAR) | SELECT date FROM table_27756164_2 WHERE high_points = "Roy Hibbert (27)" |
39,820 | <question>: In how many different games did Roy Hibbert (16) did the most high rebounds? <context>: CREATE TABLE table_27756164_2 (game VARCHAR, high_rebounds VARCHAR) | SELECT COUNT(game) FROM table_27756164_2 WHERE high_rebounds = "Roy Hibbert (16)" |
39,821 | <question>: What was the score of the game in which Danny Granger (30) did the high points? <context>: CREATE TABLE table_27756164_2 (score VARCHAR, high_points VARCHAR) | SELECT score FROM table_27756164_2 WHERE high_points = "Danny Granger (30)" |
39,822 | <question>: Who scored the most points when the Bucks played against Houston? <context>: CREATE TABLE table_27756014_6 (high_points VARCHAR, team VARCHAR) | SELECT high_points FROM table_27756014_6 WHERE team = "Houston" |
39,823 | <question>: What date was game number 22 on? <context>: CREATE TABLE table_27756014_6 (date VARCHAR, game VARCHAR) | SELECT date FROM table_27756014_6 WHERE game = 22 |
39,824 | <question>: How many people scored the most points during the game on December 10? <context>: CREATE TABLE table_27756014_6 (high_points VARCHAR, date VARCHAR) | SELECT COUNT(high_points) FROM table_27756014_6 WHERE date = "December 10" |
39,825 | <question>: When the team is chicago what is the location attendence? <context>: CREATE TABLE table_27756164_8 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_27756164_8 WHERE team = "Chicago" |
39,826 | <question>: What is the score when the team is Orlando? <context>: CREATE TABLE table_27756164_8 (score VARCHAR, team VARCHAR) | SELECT COUNT(score) FROM table_27756164_8 WHERE team = "Orlando" |
39,827 | <question>: What was the score in the game on March 26? <context>: CREATE TABLE table_27756572_10 (score VARCHAR, date VARCHAR) | SELECT score FROM table_27756572_10 WHERE date = "March 26" |
39,828 | <question>: What was the record when the Clippers played Philadelphia? <context>: CREATE TABLE table_27756572_10 (record VARCHAR, team VARCHAR) | SELECT record FROM table_27756572_10 WHERE team = "Philadelphia" |
39,829 | <question>: What location and attendance were there for game 5? <context>: CREATE TABLE table_27756474_2 (location_attendance VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_27756474_2 WHERE game = 5 |
39,830 | <question>: Which game did rudy gay (12) have the highest points? <context>: CREATE TABLE table_27756474_2 (game VARCHAR, high_points VARCHAR) | SELECT game FROM table_27756474_2 WHERE high_points = "Rudy Gay (12)" |
39,831 | <question>: How many high assists where there for the team of caja laboral? <context>: CREATE TABLE table_27756474_2 (high_assists VARCHAR, team VARCHAR) | SELECT COUNT(high_assists) FROM table_27756474_2 WHERE team = "Caja Laboral" |
39,832 | <question>: Which game did marc gasol (10) have the high rebounds? <context>: CREATE TABLE table_27756474_2 (game VARCHAR, high_rebounds VARCHAR) | SELECT game FROM table_27756474_2 WHERE high_rebounds = "Marc Gasol (10)" |
39,833 | <question>: Who had the high assists on october 6? <context>: CREATE TABLE table_27756474_2 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_27756474_2 WHERE date = "October 6" |
39,834 | <question>: Name the total number of high assists for fedexforum 11,283 <context>: CREATE TABLE table_27756474_6 (high_assists VARCHAR, location_attendance VARCHAR) | SELECT COUNT(high_assists) FROM table_27756474_6 WHERE location_attendance = "FedExForum 11,283" |
39,835 | <question>: Name the most game for us airways center 16,470 <context>: CREATE TABLE table_27756474_6 (game INTEGER, location_attendance VARCHAR) | SELECT MIN(game) FROM table_27756474_6 WHERE location_attendance = "US Airways Center 16,470" |
39,836 | <question>: Who and what were the high points player for the game against Detroit? <context>: CREATE TABLE table_27756572_6 (high_points VARCHAR, team VARCHAR) | SELECT high_points FROM table_27756572_6 WHERE team = "Detroit" |
39,837 | <question>: How many times did the Centurions play the Rhein Fire? <context>: CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR) | SELECT COUNT(game_site) FROM table_27764201_2 WHERE opponent = "Rhein Fire" |
39,838 | <question>: Where did the Centurions play the Hamburg Sea Devils? <context>: CREATE TABLE table_27764201_2 (game_site VARCHAR, opponent VARCHAR) | SELECT game_site FROM table_27764201_2 WHERE opponent = "Hamburg Sea Devils" |
39,839 | <question>: What time was the kickoff against the Frankfurt Galaxy? <context>: CREATE TABLE table_27764201_2 (kickoff VARCHAR, opponent VARCHAR) | SELECT kickoff FROM table_27764201_2 WHERE opponent = "Frankfurt Galaxy" |
39,840 | <question>: How many total catches did the player with no. 46 have? <context>: CREATE TABLE table_27770426_1 (catches VARCHAR, no VARCHAR) | SELECT COUNT(catches) FROM table_27770426_1 WHERE no = 46 |
39,841 | <question>: How did the manager who was replaced by Jakob Michelsen depart? <context>: CREATE TABLE table_27782699_3 (manner_of_departure VARCHAR, replaced_by VARCHAR) | SELECT manner_of_departure FROM table_27782699_3 WHERE replaced_by = "Jakob Michelsen" |
39,842 | <question>: What was the AB team's position in table? <context>: CREATE TABLE table_27782699_3 (position_in_table VARCHAR, team VARCHAR) | SELECT position_in_table FROM table_27782699_3 WHERE team = "AB" |
39,843 | <question>: On what date did Kim Fogh replace the previous manager? <context>: CREATE TABLE table_27782699_3 (date_of_appointment VARCHAR, replaced_by VARCHAR) | SELECT date_of_appointment FROM table_27782699_3 WHERE replaced_by = "Kim Fogh" |
39,844 | <question>: What was the vacancy date for Thomas Thomasberg? <context>: CREATE TABLE table_27782699_3 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) | SELECT date_of_vacancy FROM table_27782699_3 WHERE outgoing_manager = "Thomas Thomasberg" |
39,845 | <question>: Which manager was replaced by Thomas Thomasberg? <context>: CREATE TABLE table_27782699_3 (outgoing_manager VARCHAR, replaced_by VARCHAR) | SELECT outgoing_manager FROM table_27782699_3 WHERE replaced_by = "Thomas Thomasberg" |
39,846 | <question>: How many total dismissals did the player for Guyana have? <context>: CREATE TABLE table_27771406_1 (total_dismissals INTEGER, club VARCHAR) | SELECT MAX(total_dismissals) FROM table_27771406_1 WHERE club = "Guyana" |
39,847 | <question>: The player for what club had 2 tests? <context>: CREATE TABLE table_27771406_1 (club VARCHAR, tests VARCHAR) | SELECT club FROM table_27771406_1 WHERE tests = 2 |
39,848 | <question>: What is the most amount of stumpings any player had? <context>: CREATE TABLE table_27771406_1 (stumpings INTEGER) | SELECT MAX(stumpings) FROM table_27771406_1 |
39,849 | <question>: What club did Cyril Christiani play for? <context>: CREATE TABLE table_27771406_1 (club VARCHAR, player VARCHAR) | SELECT club FROM table_27771406_1 WHERE player = "Cyril Christiani" |
39,850 | <question>: How many catches did Clifford McWatt have? <context>: CREATE TABLE table_27771406_1 (catches INTEGER, player VARCHAR) | SELECT MIN(catches) FROM table_27771406_1 WHERE player = "Clifford McWatt" |
39,851 | <question>: Name the points for top tens being 24 and ownder david pearson <context>: CREATE TABLE table_27786562_1 (points__margin_ VARCHAR, top_tens VARCHAR, owner VARCHAR) | SELECT points__margin_ FROM table_27786562_1 WHERE top_tens = 24 AND owner = "David Pearson" |
39,852 | <question>: Name the starts for bobby labonte <context>: CREATE TABLE table_27786562_1 (starts VARCHAR, driver VARCHAR) | SELECT starts FROM table_27786562_1 WHERE driver = "Bobby Labonte" |
39,853 | <question>: Name the poles for season 2006 <context>: CREATE TABLE table_27786562_1 (poles VARCHAR, season VARCHAR) | SELECT poles FROM table_27786562_1 WHERE season = 2006 |
39,854 | <question>: What was the production code of the episode no. 55 in the series? <context>: CREATE TABLE table_27776266_1 (production_code VARCHAR, no_in_series VARCHAR) | SELECT production_code FROM table_27776266_1 WHERE no_in_series = 55 |
39,855 | <question>: What was the production code of the episode with an audience of 14.79 million in the US? <context>: CREATE TABLE table_27776266_1 (production_code VARCHAR, us_viewers__million_ VARCHAR) | SELECT production_code FROM table_27776266_1 WHERE us_viewers__million_ = "14.79" |
39,856 | <question>: Who directed the episode with an audience of 14.11 million? <context>: CREATE TABLE table_27776266_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT directed_by FROM table_27776266_1 WHERE us_viewers__million_ = "14.11" |
39,857 | <question>: What was the title of the episode with a production code of 3x6404? <context>: CREATE TABLE table_27776266_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_27776266_1 WHERE production_code = "3X6404" |
39,858 | <question>: Which school players have a number of 255 <context>: CREATE TABLE table_2781227_10 (college_junior_club_team VARCHAR, pick VARCHAR) | SELECT college_junior_club_team FROM table_2781227_10 WHERE pick = 255 |
39,859 | <question>: what educational institute does wes swinson attend <context>: CREATE TABLE table_2781227_10 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2781227_10 WHERE player = "Wes Swinson" |
39,860 | <question>: which part on the team does rick schuhwerk play <context>: CREATE TABLE table_2781227_10 (position VARCHAR, player VARCHAR) | SELECT position FROM table_2781227_10 WHERE player = "Rick Schuhwerk" |
39,861 | <question>: For college/junior/club team is brandon wheat kings (whl) mention all the player name <context>: CREATE TABLE table_2781227_4 (player VARCHAR, college_junior_club_team VARCHAR) | SELECT player FROM table_2781227_4 WHERE college_junior_club_team = "Brandon Wheat Kings (WHL)" |
39,862 | <question>: For player is jamal mayers mention the minimum pick <context>: CREATE TABLE table_2781227_4 (pick INTEGER, player VARCHAR) | SELECT MIN(pick) FROM table_2781227_4 WHERE player = "Jamal Mayers" |
39,863 | <question>: For player is john jakopin mention the total number of position <context>: CREATE TABLE table_2781227_4 (position VARCHAR, player VARCHAR) | SELECT COUNT(position) FROM table_2781227_4 WHERE player = "John Jakopin" |
39,864 | <question>: For nhl team is san jose sharks mention all the college/junior/club team <context>: CREATE TABLE table_2781227_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | SELECT college_junior_club_team FROM table_2781227_4 WHERE nhl_team = "San Jose Sharks" |
39,865 | <question>: For player is adam wiesel mention all the college/junior/club team <context>: CREATE TABLE table_2781227_4 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2781227_4 WHERE player = "Adam Wiesel" |
39,866 | <question>: How many values are displayed under pick for Vlastimil Kroupa? <context>: CREATE TABLE table_2781227_2 (pick VARCHAR, player VARCHAR) | SELECT COUNT(pick) FROM table_2781227_2 WHERE player = "Vlastimil Kroupa" |
39,867 | <question>: How many positions does Janne Niinimaa play? <context>: CREATE TABLE table_2781227_2 (position VARCHAR, player VARCHAR) | SELECT COUNT(position) FROM table_2781227_2 WHERE player = "Janne Niinimaa" |
39,868 | <question>: How many teams does Lee Sorochan play for? <context>: CREATE TABLE table_2781227_2 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT COUNT(college_junior_club_team) FROM table_2781227_2 WHERE player = "Lee Sorochan" |
39,869 | <question>: What player belongs to the Chicago Blackhawks? <context>: CREATE TABLE table_2781227_2 (player VARCHAR, nhl_team VARCHAR) | SELECT player FROM table_2781227_2 WHERE nhl_team = "Chicago Blackhawks" |
39,870 | <question>: How many teams does Maxim Bets play for? <context>: CREATE TABLE table_2781227_2 (nhl_team VARCHAR, player VARCHAR) | SELECT COUNT(nhl_team) FROM table_2781227_2 WHERE player = "Maxim Bets" |
39,871 | <question>: What was the minimum pick by the Florida Panthers? <context>: CREATE TABLE table_2781227_11 (pick INTEGER, nhl_team VARCHAR) | SELECT MIN(pick) FROM table_2781227_11 WHERE nhl_team = "Florida Panthers" |
39,872 | <question>: What NHL team picked Ryan Meade for the draft? <context>: CREATE TABLE table_2781227_7 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_2781227_7 WHERE player = "Ryan Meade" |
39,873 | <question>: What college team did Ryan Golden come from? <context>: CREATE TABLE table_2781227_7 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2781227_7 WHERE player = "Ryan Golden" |
39,874 | <question>: How many different nationalities is pick number 179? <context>: CREATE TABLE table_2781227_7 (nationality VARCHAR, pick VARCHAR) | SELECT COUNT(nationality) FROM table_2781227_7 WHERE pick = 179 |
39,875 | <question>: What college team did the pick for Pittsburgh Penguins come from? <context>: CREATE TABLE table_2781227_7 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | SELECT college_junior_club_team FROM table_2781227_7 WHERE nhl_team = "Pittsburgh Penguins" |
39,876 | <question>: What NHL team picked Tom White? <context>: CREATE TABLE table_2781227_7 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_2781227_7 WHERE player = "Tom White" |
39,877 | <question>: How many weeks in the top 10 was spent by a song performed by Peter Kay? <context>: CREATE TABLE table_27813010_2 (weeks_in_top_10 INTEGER, artist VARCHAR) | SELECT MAX(weeks_in_top_10) FROM table_27813010_2 WHERE artist = "Peter Kay" |
39,878 | <question>: How long has the longest song spent in the top 10? <context>: CREATE TABLE table_27813010_2 (weeks_in_top_10 INTEGER) | SELECT MAX(weeks_in_top_10) FROM table_27813010_2 |
39,879 | <question>: What college/junior/club team did dmitri gorenko play for? <context>: CREATE TABLE table_2781227_9 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_2781227_9 WHERE player = "Dmitri Gorenko" |
39,880 | <question>: What position does krylja sovetov (russia) play? <context>: CREATE TABLE table_2781227_9 (position VARCHAR, college_junior_club_team VARCHAR) | SELECT position FROM table_2781227_9 WHERE college_junior_club_team = "Krylja Sovetov (Russia)" |
39,881 | <question>: What position(s) does barrie moore play? <context>: CREATE TABLE table_2781227_9 (position VARCHAR, player VARCHAR) | SELECT position FROM table_2781227_9 WHERE player = "Barrie Moore" |
39,882 | <question>: How many pac-12 sports are shown for california polytechnic state university? <context>: CREATE TABLE table_27816698_2 (pac_12_sports VARCHAR, institution VARCHAR) | SELECT COUNT(pac_12_sports) FROM table_27816698_2 WHERE institution = "California Polytechnic State University" |
39,883 | <question>: When was the institution in boise, idaho founded? <context>: CREATE TABLE table_27816698_2 (founded VARCHAR, location VARCHAR) | SELECT founded FROM table_27816698_2 WHERE location = "Boise, Idaho" |
39,884 | <question>: Which conference did boise state university play at? <context>: CREATE TABLE table_27816698_2 (current_conference VARCHAR, institution VARCHAR) | SELECT current_conference FROM table_27816698_2 WHERE institution = "Boise State University" |
39,885 | <question>: When was the Titans founded? <context>: CREATE TABLE table_27816698_2 (founded INTEGER, nickname VARCHAR) | SELECT MAX(founded) FROM table_27816698_2 WHERE nickname = "Titans" |
39,886 | <question>: Which institution was founded in 1932? <context>: CREATE TABLE table_27816698_2 (institution VARCHAR, founded VARCHAR) | SELECT institution FROM table_27816698_2 WHERE founded = 1932 |
39,887 | <question>: Which institution was located in bakersfield, california? <context>: CREATE TABLE table_27816698_2 (institution VARCHAR, location VARCHAR) | SELECT institution FROM table_27816698_2 WHERE location = "Bakersfield, California" |
39,888 | <question>: Name the least games played for 6 points <context>: CREATE TABLE table_27816332_2 (games_played INTEGER, total_points VARCHAR) | SELECT MIN(games_played) FROM table_27816332_2 WHERE total_points = 6 |
39,889 | <question>: who is the manufacturer is no.50? <context>: CREATE TABLE table_27821519_1 (manufacturer VARCHAR, no VARCHAR) | SELECT manufacturer FROM table_27821519_1 WHERE no = 50 |
39,890 | <question>: Which episodes did Katie Palmer write? <context>: CREATE TABLE table_27823058_1 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_27823058_1 WHERE written_by = "Katie Palmer" |
39,891 | <question>: What's the highest series number ? <context>: CREATE TABLE table_27823058_1 (series__number INTEGER) | SELECT MAX(series__number) FROM table_27823058_1 |
39,892 | <question>: when changsha 長沙 is the commandery what is the commandery capital? <context>: CREATE TABLE table_278229_1 (commandery VARCHAR) | SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Changsha 長沙" |
39,893 | <question>: When yidu 宜都 is the commandery what is the lowest number of countries? <context>: CREATE TABLE table_278229_1 (no_of_counties INTEGER, commandery VARCHAR) | SELECT MIN(no_of_counties) FROM table_278229_1 WHERE commandery = "Yidu 宜都" |
39,894 | <question>: When nanhai 南海 is the commandery what is the commandery capital? <context>: CREATE TABLE table_278229_1 (commandery VARCHAR) | SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Nanhai 南海" |
39,895 | <question>: When gaoliang 高涼 is the commandery what is the commandery capital? <context>: CREATE TABLE table_278229_1 (commandery VARCHAR) | SELECT commandery AS capital FROM table_278229_1 WHERE commandery = "Gaoliang 高涼" |
39,896 | <question>: What is the title of episode number 9-10? <context>: CREATE TABLE table_27832075_2 (title VARCHAR, episode__number VARCHAR) | SELECT title FROM table_27832075_2 WHERE episode__number = "9-10" |
39,897 | <question>: How many million U.S. viewers wtched episode 69 of the series? <context>: CREATE TABLE table_27832075_2 (us_viewers__millions_ VARCHAR, series__number VARCHAR) | SELECT us_viewers__millions_ FROM table_27832075_2 WHERE series__number = 69 |
39,898 | <question>: Who directed episode number 23 in the season? <context>: CREATE TABLE table_27832075_2 (directed_by VARCHAR, episode__number VARCHAR) | SELECT directed_by FROM table_27832075_2 WHERE episode__number = "23" |
39,899 | <question>: What is the name of episode number 12 of the season? <context>: CREATE TABLE table_27832075_2 (title VARCHAR, episode__number VARCHAR) | 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.