combined_text
stringlengths
106
1.05k
###question:What is every game on November 21?###answer:SELECT game FROM table_27539535_4 WHERE november = 21###context:CREATE TABLE table_27539535_4 (game VARCHAR, november VARCHAR)
###question:What is the highest amount of points?###answer:SELECT MAX(points) FROM table_27539535_4###context:CREATE TABLE table_27539535_4 (points INTEGER)
###question:What is every record for game 13?###answer:SELECT record FROM table_27539535_4 WHERE game = 13###context:CREATE TABLE table_27539535_4 (record VARCHAR, game VARCHAR)
###question:What is the least amount of points?###answer:SELECT MIN(points) FROM table_27539535_4###context:CREATE TABLE table_27539535_4 (points INTEGER)
###question:who was the opponent where the game is 14?###answer:SELECT opponent FROM table_27539272_5 WHERE game = 14###context:CREATE TABLE table_27539272_5 (opponent VARCHAR, game VARCHAR)
###question:what is the total number of locations that had a score of 1-3?###answer:SELECT COUNT(location_attendance) FROM table_27539272_5 WHERE score = "1-3"###context:CREATE TABLE table_27539272_5 (location_attendance VARCHAR, score VARCHAR)
###question:what is the maximum number of points?###answer:SELECT MAX(points) FROM table_27539272_5###context:CREATE TABLE table_27539272_5 (points INTEGER)
###question:what is the record that had a score of 5-3?###answer:SELECT record FROM table_27539272_5 WHERE score = "5-3"###context:CREATE TABLE table_27539272_5 (record VARCHAR, score VARCHAR)
###question:what is the record for score 1-3?###answer:SELECT record FROM table_27539272_5 WHERE score = "1-3"###context:CREATE TABLE table_27539272_5 (record VARCHAR, score VARCHAR)
###question:what is the number of original airdate written by allan hawco?###answer:SELECT COUNT(original_airdate) FROM table_27547668_4 WHERE written_by = "Allan Hawco"###context:CREATE TABLE table_27547668_4 (original_airdate VARCHAR, written_by VARCHAR)
###question:what is the total number of films directy and written by john callaghan?###answer:SELECT COUNT(directed_by) FROM table_27547668_4 WHERE written_by = "John Callaghan"###context:CREATE TABLE table_27547668_4 (directed_by VARCHAR, written_by VARCHAR)
###question:How many times was the date october 3, 2010?###answer:SELECT COUNT(player) FROM table_27552095_27 WHERE date = "October 3, 2010"###context:CREATE TABLE table_27552095_27 (player VARCHAR, date VARCHAR)
###question:How many institutions are shown for the football stadium of mosaic stadium?###answer:SELECT COUNT(institution) FROM table_27599216_6 WHERE football_stadium = "Mosaic Stadium"###context:CREATE TABLE table_27599216_6 (institution VARCHAR, football_stadium VARCHAR)
###question:What year was mcmahon stadium founded?###answer:SELECT MAX(founded) FROM table_27599216_6 WHERE football_stadium = "McMahon Stadium"###context:CREATE TABLE table_27599216_6 (founded INTEGER, football_stadium VARCHAR)
###question:What is the year founded for the team Dinos?###answer:SELECT MAX(founded) FROM table_27599216_6 WHERE team = "Dinos"###context:CREATE TABLE table_27599216_6 (founded INTEGER, team VARCHAR)
###question:What is the capacity for the institution of university of alberta?###answer:SELECT capacity FROM table_27599216_6 WHERE institution = "University of Alberta"###context:CREATE TABLE table_27599216_6 (capacity VARCHAR, institution VARCHAR)
###question:Which institution has an endowment of $25.9m?###answer:SELECT institution FROM table_27599216_6 WHERE endowment = "$25.9M"###context:CREATE TABLE table_27599216_6 (institution VARCHAR, endowment VARCHAR)
###question:What is the ramsan-810 transfer delay?###answer:SELECT COUNT(latency__microseconds_) FROM table_27615520_1 WHERE product_name = "RamSan-810"###context:CREATE TABLE table_27615520_1 (latency__microseconds_ VARCHAR, product_name VARCHAR)
###question:What is the shape distortion for the range frequency of 10?###answer:SELECT form_factor FROM table_27615520_1 WHERE bandwidth__gb_s_ = "10"###context:CREATE TABLE table_27615520_1 (form_factor VARCHAR, bandwidth__gb_s_ VARCHAR)
###question:List the number of ramsan-720 hard drives?###answer:SELECT COUNT(storage_medium) FROM table_27615520_1 WHERE product_name = "RamSan-720"###context:CREATE TABLE table_27615520_1 (storage_medium VARCHAR, product_name VARCHAR)
###question:List the range distroration for the ramsan-630###answer:SELECT form_factor FROM table_27615520_1 WHERE product_name = "RamSan-630"###context:CREATE TABLE table_27615520_1 (form_factor VARCHAR, product_name VARCHAR)
###question:What is the Input/output operations per second for the emlc flash?###answer:SELECT speed___iops__ FROM table_27615520_1 WHERE storage_medium = "eMLC Flash"###context:CREATE TABLE table_27615520_1 (speed___iops__ VARCHAR, storage_medium VARCHAR)
###question:What is the score for the game with the record of 3–12?###answer:SELECT score FROM table_27698941_6 WHERE record = "3–12"###context:CREATE TABLE table_27698941_6 (score VARCHAR, record VARCHAR)
###question:What is the game number for the game with a score of l 90–106 (ot)?###answer:SELECT game FROM table_27698941_6 WHERE score = "L 90–106 (OT)"###context:CREATE TABLE table_27698941_6 (game VARCHAR, score VARCHAR)
###question:How many games are shown for the game where andre iguodala (9) had the high rebounds?###answer:SELECT COUNT(game) FROM table_27698941_6 WHERE high_rebounds = "Andre Iguodala (9)"###context:CREATE TABLE table_27698941_6 (game VARCHAR, high_rebounds VARCHAR)
###question:Who had the most the most rebounds and how many did they have on April 1?###answer:SELECT high_rebounds FROM table_27700530_14 WHERE date = "April 1"###context:CREATE TABLE table_27700530_14 (high_rebounds VARCHAR, date VARCHAR)
###question:Where was the game and what was the attendance on April 3? ###answer:SELECT location_attendance FROM table_27700530_14 WHERE date = "April 3"###context:CREATE TABLE table_27700530_14 (location_attendance VARCHAR, date VARCHAR)
###question:How many high rebounds are listed for game 35?###answer:SELECT COUNT(high_rebounds) FROM table_27704187_8 WHERE game = 35###context:CREATE TABLE table_27704187_8 (high_rebounds VARCHAR, game VARCHAR)
###question:If the Close ranged weapons are the knife (stone), knife (iron), what are the Long ranged weapons?###answer:SELECT long_ranged_weapons FROM table_27704991_1 WHERE close_ranged_weapons = "Knife (stone), Knife (iron)"###context:CREATE TABLE table_27704991_1 (long_ranged_weapons VARCHAR, close_ranged_weapons V...
###question:If the special weapon is the Grenado, what is the armor?###answer:SELECT armor FROM table_27704991_1 WHERE special_weapon = "Grenado"###context:CREATE TABLE table_27704991_1 (armor VARCHAR, special_weapon VARCHAR)
###question:If the armor is bronze cuirass , linothorax, what are the close ranged weapons?###answer:SELECT close_ranged_weapons FROM table_27704991_1 WHERE armor = "Bronze cuirass , Linothorax"###context:CREATE TABLE table_27704991_1 (close_ranged_weapons VARCHAR, armor VARCHAR)
###question:If the special weapon is glass egg, what is the close ranged weapon?###answer:SELECT close_ranged_weapons FROM table_27704991_1 WHERE special_weapon = "Glass egg"###context:CREATE TABLE table_27704991_1 (close_ranged_weapons VARCHAR, special_weapon VARCHAR)
###question:Who had the high rebounds record on December 12?###answer:SELECT high_rebounds FROM table_27712702_8 WHERE date = "December 12"###context:CREATE TABLE table_27712702_8 (high_rebounds VARCHAR, date VARCHAR)
###question:What was the record on December 27?###answer:SELECT record FROM table_27712702_8 WHERE date = "December 27"###context:CREATE TABLE table_27712702_8 (record VARCHAR, date VARCHAR)
###question:What game number is the Washington team.###answer:SELECT COUNT(game) FROM table_27713583_6 WHERE team = "Washington"###context:CREATE TABLE table_27713583_6 (game VARCHAR, team VARCHAR)
###question:Name the location attendance april 5###answer:SELECT location_attendance FROM table_27713583_11 WHERE date = "April 5"###context:CREATE TABLE table_27713583_11 (location_attendance VARCHAR, date VARCHAR)
###question:Name the high assists for madison square garden 19,763 and record is 39–38###answer:SELECT high_assists FROM table_27713583_11 WHERE location_attendance = "Madison Square Garden 19,763" AND record = "39–38"###context:CREATE TABLE table_27713583_11 (high_assists VARCHAR, location_attendance VARCHAR, record V...
###question:Name the date for cleveland###answer:SELECT date FROM table_27713583_11 WHERE team = "Cleveland"###context:CREATE TABLE table_27713583_11 (date VARCHAR, team VARCHAR)
###question:What is the original air date when the u.s. viewers in millions was 5.39?###answer:SELECT original_air_date FROM table_27720737_1 WHERE us_viewers__million_ = "5.39"###context:CREATE TABLE table_27720737_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
###question:What is the title of the series # 8?###answer:SELECT title FROM table_27720737_1 WHERE series__number = 8###context:CREATE TABLE table_27720737_1 (title VARCHAR, series__number VARCHAR)
###question:What is the highest series # directed by ken whittingham?###answer:SELECT MAX(series__number) FROM table_27720737_1 WHERE directed_by = "Ken Whittingham"###context:CREATE TABLE table_27720737_1 (series__number INTEGER, directed_by VARCHAR)
###question:How many episodes had a production code 120?###answer:SELECT COUNT(series__number) FROM table_27720737_1 WHERE production_code = 120###context:CREATE TABLE table_27720737_1 (series__number VARCHAR, production_code VARCHAR)
###question:Who had the most rebounds and how many did they have on October 16?###answer:SELECT high_rebounds FROM table_27722408_2 WHERE date = "October 16"###context:CREATE TABLE table_27722408_2 (high_rebounds VARCHAR, date VARCHAR)
###question:Who had the most assists and how many did they have on October 7? ###answer:SELECT high_assists FROM table_27722408_2 WHERE date = "October 7"###context:CREATE TABLE table_27722408_2 (high_assists VARCHAR, date VARCHAR)
###question:What team did the Hornets play in game 4?###answer:SELECT team FROM table_27723228_3 WHERE game = 4###context:CREATE TABLE table_27723228_3 (team VARCHAR, game VARCHAR)
###question:Name the high assists for l 103–104 (ot)###answer:SELECT high_assists FROM table_27723526_12 WHERE score = "L 103–104 (OT)"###context:CREATE TABLE table_27723526_12 (high_assists VARCHAR, score VARCHAR)
###question:Name the high points for march 30###answer:SELECT high_points FROM table_27723526_12 WHERE date = "March 30"###context:CREATE TABLE table_27723526_12 (high_points VARCHAR, date VARCHAR)
###question:Name the score for josé juan barea (8)###answer:SELECT score FROM table_27723526_12 WHERE high_assists = "José Juan Barea (8)"###context:CREATE TABLE table_27723526_12 (score VARCHAR, high_assists VARCHAR)
###question:What is the game number played on April 3?###answer:SELECT MAX(game) FROM table_27723526_13 WHERE date = "April 3"###context:CREATE TABLE table_27723526_13 (game INTEGER, date VARCHAR)
###question:What is the record after the Phoenix game?###answer:SELECT record FROM table_27723526_13 WHERE team = "Phoenix"###context:CREATE TABLE table_27723526_13 (record VARCHAR, team VARCHAR)
###question:How many games had Robin Lopez (10) for the most rebounds?###answer:SELECT COUNT(game) FROM table_27733258_2 WHERE high_rebounds = "Robin Lopez (10)"###context:CREATE TABLE table_27733258_2 (game VARCHAR, high_rebounds VARCHAR)
###question:What two players had the highest rebounds for the October 14 game?###answer:SELECT high_rebounds FROM table_27733258_2 WHERE date = "October 14"###context:CREATE TABLE table_27733258_2 (high_rebounds VARCHAR, date VARCHAR)
###question:Name the team for january 17###answer:SELECT team FROM table_27733909_7 WHERE date = "January 17"###context:CREATE TABLE table_27733909_7 (team VARCHAR, date VARCHAR)
###question:Name the team for score l 102–122 (ot)###answer:SELECT team FROM table_27733909_7 WHERE score = "L 102–122 (OT)"###context:CREATE TABLE table_27733909_7 (team VARCHAR, score VARCHAR)
###question:Name the number of high rebounds for january 5###answer:SELECT COUNT(high_rebounds) FROM table_27733909_7 WHERE date = "January 5"###context:CREATE TABLE table_27733909_7 (high_rebounds VARCHAR, date VARCHAR)
###question:Who is the mixed doubled on the tour korea super series?###answer:SELECT mixed_doubles FROM table_27753492_2 WHERE tour = "Korea Super Series"###context:CREATE TABLE table_27753492_2 (mixed_doubles VARCHAR, tour VARCHAR)
###question:Who is the women's doubles when the mixed doubles are sudket prapakamol saralee thungthongkam?###answer:SELECT womens_doubles FROM table_27753492_2 WHERE mixed_doubles = "Sudket Prapakamol Saralee Thungthongkam"###context:CREATE TABLE table_27753492_2 (womens_doubles VARCHAR, mixed_doubles VARCHAR)
###question:Who were the womens doubles when the mixed doubles were zhang nan zhao yunlei on the tour all england super series?###answer:SELECT womens_doubles FROM table_27753492_2 WHERE mixed_doubles = "Zhang Nan Zhao Yunlei" AND tour = "All England Super Series"###context:CREATE TABLE table_27753492_2 (womens_doubles...
###question:Who is the womens doubles on the tour french super series?###answer:SELECT womens_doubles FROM table_27753492_2 WHERE tour = "French Super Series"###context:CREATE TABLE table_27753492_2 (womens_doubles VARCHAR, tour VARCHAR)
###question:What was the score in the game in which Michael Beasley (26) did the high points?###answer:SELECT score FROM table_27756314_11 WHERE high_points = "Michael Beasley (26)"###context:CREATE TABLE table_27756314_11 (score VARCHAR, high_points VARCHAR)
###question:Who did the most high rebounds on April 6?###answer:SELECT high_rebounds FROM table_27756314_11 WHERE date = "April 6"###context:CREATE TABLE table_27756314_11 (high_rebounds VARCHAR, date VARCHAR)
###question:How many different results for high rebounds were there for game number 76?###answer:SELECT COUNT(high_rebounds) FROM table_27756314_11 WHERE game = 76###context:CREATE TABLE table_27756314_11 (high_rebounds VARCHAR, game VARCHAR)
###question:In how many different games did Luke Ridnour (5) did the most high assists?###answer:SELECT COUNT(game) FROM table_27756314_11 WHERE high_assists = "Luke Ridnour (5)"###context:CREATE TABLE table_27756314_11 (game VARCHAR, high_assists VARCHAR)
###question:Who had the high points when the team was charlotte?###answer:SELECT high_points FROM table_27756314_8 WHERE team = "Charlotte"###context:CREATE TABLE table_27756314_8 (high_points VARCHAR, team VARCHAR)
###question:What is the highest game with team @ l.a. clippers?###answer:SELECT MAX(game) FROM table_27756314_8 WHERE team = "@ L.A. Clippers"###context:CREATE TABLE table_27756314_8 (game INTEGER, team VARCHAR)
###question:What is the date for the game with team orlando?###answer:SELECT date FROM table_27756314_8 WHERE team = "Orlando"###context:CREATE TABLE table_27756314_8 (date VARCHAR, team VARCHAR)
###question:How many times did kevin love (22) have the high points?###answer:SELECT COUNT(date) FROM table_27756314_8 WHERE high_points = "Kevin Love (22)"###context:CREATE TABLE table_27756314_8 (date VARCHAR, high_points VARCHAR)
###question:What is the date for the game 35?###answer:SELECT date FROM table_27756314_8 WHERE game = 35###context:CREATE TABLE table_27756314_8 (date VARCHAR, game VARCHAR)
###question:who directed the episode that 6.3 million u.s. viewers saw?###answer:SELECT directed_by FROM table_27811555_1 WHERE us_viewers__millions_ = "6.3"###context:CREATE TABLE table_27811555_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
###question:What is the college/junior/club team name of player Mats Lindgren?###answer:SELECT college_junior_club_team FROM table_2781227_1 WHERE player = "Mats Lindgren"###context:CREATE TABLE table_2781227_1 (college_junior_club_team VARCHAR, player VARCHAR)
###question:How many NHL teams is Denis Pederson a draft pick for?###answer:SELECT COUNT(nhl_team) FROM table_2781227_1 WHERE player = "Denis Pederson"###context:CREATE TABLE table_2781227_1 (nhl_team VARCHAR, player VARCHAR)
###question:Who wrote episode 23 in the season?###answer:SELECT written_by FROM table_27823359_1 WHERE season__number = "23"###context:CREATE TABLE table_27823359_1 (written_by VARCHAR, season__number VARCHAR)
###question:Where was the location and attendance when they played milwaukee?###answer:SELECT location_attendance FROM table_27882867_9 WHERE team = "Milwaukee"###context:CREATE TABLE table_27882867_9 (location_attendance VARCHAR, team VARCHAR)
###question:What was the date of the game when g. rivers (5) had the high assists?###answer:SELECT date FROM table_27882867_9 WHERE high_assists = "G. Rivers (5)"###context:CREATE TABLE table_27882867_9 (date VARCHAR, high_assists VARCHAR)
###question:How many people had the high points when a. webb (7) had the high assists?###answer:SELECT COUNT(high_points) FROM table_27882867_9 WHERE high_assists = "A. Webb (7)"###context:CREATE TABLE table_27882867_9 (high_points VARCHAR, high_assists VARCHAR)
###question:What date was the game score w 104-98?###answer:SELECT date FROM table_27882867_9 WHERE score = "W 104-98"###context:CREATE TABLE table_27882867_9 (date VARCHAR, score VARCHAR)
###question:Who had the high assists when the opponent was Indiana?###answer:SELECT high_assists FROM table_27882867_9 WHERE team = "Indiana"###context:CREATE TABLE table_27882867_9 (high_assists VARCHAR, team VARCHAR)
###question:What was the location and attendance when d. wilkins (29) had the high points?###answer:SELECT location_attendance FROM table_27882867_9 WHERE high_points = "D. Wilkins (29)"###context:CREATE TABLE table_27882867_9 (location_attendance VARCHAR, high_points VARCHAR)
###question:What is the location and attendance for the game where b. benjamin (10) had the high rebounds?###answer:SELECT location_attendance FROM table_27902171_7 WHERE high_rebounds = "B. Benjamin (10)"###context:CREATE TABLE table_27902171_7 (location_attendance VARCHAR, high_rebounds VARCHAR)
###question:What dated was the game played at the location delta center 19,911?###answer:SELECT date FROM table_27902171_7 WHERE location_attendance = "Delta Center 19,911"###context:CREATE TABLE table_27902171_7 (date VARCHAR, location_attendance VARCHAR)
###question:Which game had a score of w 95-85?###answer:SELECT MIN(game) FROM table_27902171_7 WHERE score = "W 95-85"###context:CREATE TABLE table_27902171_7 (game INTEGER, score VARCHAR)
###question:Who had the high points when the score was w 112-110?###answer:SELECT high_points FROM table_27902171_7 WHERE score = "W 112-110"###context:CREATE TABLE table_27902171_7 (high_points VARCHAR, score VARCHAR)
###question:What date was the game played in seattle center coliseum 12,126?###answer:SELECT date FROM table_27902171_7 WHERE location_attendance = "Seattle Center Coliseum 12,126"###context:CREATE TABLE table_27902171_7 (date VARCHAR, location_attendance VARCHAR)
###question:How many production codes had a total number in the season of 8?###answer:SELECT COUNT(production_code) FROM table_27988382_1 WHERE no_in_season = 8###context:CREATE TABLE table_27988382_1 (production_code VARCHAR, no_in_season VARCHAR)
###question:what is the total rank on airdate march 30, 2011?###answer:SELECT COUNT(rank_timeslot_) FROM table_27987623_4 WHERE airdate = "March 30, 2011"###context:CREATE TABLE table_27987623_4 (rank_timeslot_ VARCHAR, airdate VARCHAR)
###question:for the ben williams name what was the previous club###answer:SELECT previous_club FROM table_27998152_1 WHERE name = "Ben Williams"###context:CREATE TABLE table_27998152_1 (previous_club VARCHAR, name VARCHAR)
###question:what is the fee for ankaragücü previous club###answer:SELECT fee FROM table_27998152_1 WHERE previous_club = "Ankaragücü"###context:CREATE TABLE table_27998152_1 (fee VARCHAR, previous_club VARCHAR)
###question:how many date of birts are if the previous club is chelsea###answer:SELECT COUNT(date_of_birth) FROM table_27998152_1 WHERE previous_club = "Chelsea"###context:CREATE TABLE table_27998152_1 (date_of_birth VARCHAR, previous_club VARCHAR)
###question:for the no. 7 what is the date of birth###answer:SELECT date_of_birth FROM table_27998152_1 WHERE no = 7###context:CREATE TABLE table_27998152_1 (date_of_birth VARCHAR, no VARCHAR)
###question:How many episodes were written by seth hoffman, russel friend & garrett lerner?###answer:SELECT COUNT(rank__week_) FROM table_28026156_1 WHERE written_by = "Seth Hoffman, Russel Friend & Garrett Lerner"###context:CREATE TABLE table_28026156_1 (rank__week_ VARCHAR, written_by VARCHAR)
###question:Where did the episode rank that was written by thomas l. moran?###answer:SELECT rank__week_ FROM table_28026156_1 WHERE written_by = "Thomas L. Moran"###context:CREATE TABLE table_28026156_1 (rank__week_ VARCHAR, written_by VARCHAR)
###question:Who won Womens Singles in the year that Ma Lin won Mens Singles?###answer:SELECT womens_singles FROM table_28138035_15 WHERE mens_singles = "Ma Lin"###context:CREATE TABLE table_28138035_15 (womens_singles VARCHAR, mens_singles VARCHAR)
###question:What is the place and when was the year when the women's doubles womens were Bai yang Niu Jianfeng?###answer:SELECT year_location FROM table_28138035_33 WHERE womens_doubles = "Bai Yang Niu Jianfeng"###context:CREATE TABLE table_28138035_33 (year_location VARCHAR, womens_doubles VARCHAR)
###question:How many times has Ma Long won the men's singles?###answer:SELECT COUNT(mens_doubles) FROM table_28138035_33 WHERE mens_singles = "Ma Long"###context:CREATE TABLE table_28138035_33 (mens_doubles VARCHAR, mens_singles VARCHAR)
###question:How many times has Sun Jin won the women's doubles?###answer:SELECT COUNT(mens_doubles) FROM table_28138035_33 WHERE womens_singles = "Sun Jin"###context:CREATE TABLE table_28138035_33 (mens_doubles VARCHAR, womens_singles VARCHAR)
###question:How many artists were there for the show thoroughly modern millie?###answer:SELECT COUNT(artist) FROM table_28140141_1 WHERE show = "Thoroughly Modern Millie"###context:CREATE TABLE table_28140141_1 (artist VARCHAR, show VARCHAR)
###question:How many shows were in 1994?###answer:SELECT COUNT(difficulty) FROM table_28140141_1 WHERE year = 1994###context:CREATE TABLE table_28140141_1 (difficulty VARCHAR, year VARCHAR)
###question:Name the engine for ecurie lutetia###answer:SELECT engine FROM table_28190534_1 WHERE entrant = "Ecurie Lutetia"###context:CREATE TABLE table_28190534_1 (engine VARCHAR, entrant VARCHAR)
###question:Name the chassis for sfacs ecurie france###answer:SELECT chassis FROM table_28190534_1 WHERE entrant = "SFACS Ecurie France"###context:CREATE TABLE table_28190534_1 (chassis VARCHAR, entrant VARCHAR)
###question:Name the constructor for b. bira###answer:SELECT constructor FROM table_28190534_1 WHERE driver = "B. Bira"###context:CREATE TABLE table_28190534_1 (constructor VARCHAR, driver VARCHAR)