combined_text
stringlengths
106
1.05k
###question:What is the average Heat Points, when Result is "Loss", when Game is greater than 72, and when Date is "April 21"?###answer:SELECT AVG(heat_points) FROM table_name_83 WHERE result = "loss" AND game > 72 AND date = "april 21"###context:CREATE TABLE table_name_83 (heat_points INTEGER, date VARCHAR, result VAR...
###question:What was the attendance for week 2?###answer:SELECT attendance FROM table_name_39 WHERE week = 2###context:CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR)
###question:What was the attendance when the Cincinnati Bengals were the opponents?###answer:SELECT attendance FROM table_name_79 WHERE opponent = "cincinnati bengals"###context:CREATE TABLE table_name_79 (attendance VARCHAR, opponent VARCHAR)
###question:What country had a paste publication in 2009?###answer:SELECT country FROM table_name_9 WHERE year = 2009 AND publication = "paste"###context:CREATE TABLE table_name_9 (country VARCHAR, year VARCHAR, publication VARCHAR)
###question:What was the lowest rank after 2009 with an accolade of 125 best albums of the past 25 years?###answer:SELECT MIN(rank) FROM table_name_79 WHERE year > 2009 AND accolade = "125 best albums of the past 25 years"###context:CREATE TABLE table_name_79 (rank INTEGER, year VARCHAR, accolade VARCHAR)
###question:What is Tom Gillis' score?###answer:SELECT score FROM table_name_33 WHERE player = "tom gillis"###context:CREATE TABLE table_name_33 (score VARCHAR, player VARCHAR)
###question:Which player is T3?###answer:SELECT player FROM table_name_70 WHERE place = "t3"###context:CREATE TABLE table_name_70 (player VARCHAR, place VARCHAR)
###question:Which country has is Len Mattiace in T10 place?###answer:SELECT country FROM table_name_54 WHERE place = "t10" AND player = "len mattiace"###context:CREATE TABLE table_name_54 (country VARCHAR, place VARCHAR, player VARCHAR)
###question:What is the average score for the player who is T5 in the United States?###answer:SELECT AVG(score) FROM table_name_60 WHERE place = "t5" AND country = "united states"###context:CREATE TABLE table_name_60 (score INTEGER, place VARCHAR, country VARCHAR)
###question:what is 1976 when 1980 is 2.0?###answer:SELECT 1976 FROM table_name_46 WHERE 1980 = "2.0"###context:CREATE TABLE table_name_46 (Id VARCHAR)
###question:what is 1980 when 1979 is 951?###answer:SELECT 1980 FROM table_name_9 WHERE 1979 = "951"###context:CREATE TABLE table_name_9 (Id VARCHAR)
###question:what is 1977 when 1980 is chile?###answer:SELECT 1977 FROM table_name_65 WHERE 1980 = "chile"###context:CREATE TABLE table_name_65 (Id VARCHAR)
###question:what is 1976 when 1977 is 3.5?###answer:SELECT 1976 FROM table_name_96 WHERE 1977 = "3.5"###context:CREATE TABLE table_name_96 (Id VARCHAR)
###question:what is 1977 when 1978 is 4.1?###answer:SELECT 1977 FROM table_name_84 WHERE 1978 = "4.1"###context:CREATE TABLE table_name_84 (Id VARCHAR)
###question:what is 1980 when 1978 is 2.3?###answer:SELECT 1980 FROM table_name_22 WHERE 1978 = "2.3"###context:CREATE TABLE table_name_22 (Id VARCHAR)
###question:What is the Frequency for Model Number c7 1.0?###answer:SELECT frequency FROM table_name_54 WHERE model_number = "c7 1.0"###context:CREATE TABLE table_name_54 (frequency VARCHAR, model_number VARCHAR)
###question:What is the Release Date for Model Number c7 1.8?###answer:SELECT release_date FROM table_name_62 WHERE model_number = "c7 1.8"###context:CREATE TABLE table_name_62 (release_date VARCHAR, model_number VARCHAR)
###question:What is the Front Side Bus for Model Number c7 1.5?###answer:SELECT front_side_bus FROM table_name_68 WHERE model_number = "c7 1.5"###context:CREATE TABLE table_name_68 (front_side_bus VARCHAR, model_number VARCHAR)
###question:What to par is located in the united states and has the player by the name of hale irwin?###answer:SELECT to_par FROM table_name_87 WHERE country = "united states" AND player = "hale irwin"###context:CREATE TABLE table_name_87 (to_par VARCHAR, country VARCHAR, player VARCHAR)
###question:What country has the score og 66-70-69-71=276?###answer:SELECT country FROM table_name_63 WHERE score = 66 - 70 - 69 - 71 = 276###context:CREATE TABLE table_name_63 (country VARCHAR, score VARCHAR)
###question:WHAT IS THE HOME TEAM ON APRIL 25?###answer:SELECT home_team FROM table_name_52 WHERE date = "april 25"###context:CREATE TABLE table_name_52 (home_team VARCHAR, date VARCHAR)
###question:WHAT IS THE DATE WITH BOSTON ROAD TEAM AND 126-105 RESULT?###answer:SELECT date FROM table_name_86 WHERE road_team = "boston" AND result = "126-105"###context:CREATE TABLE table_name_86 (date VARCHAR, road_team VARCHAR, result VARCHAR)
###question:WHAT GAME HAD A SCORE OF 99-112?###answer:SELECT game FROM table_name_30 WHERE result = "99-112"###context:CREATE TABLE table_name_30 (game VARCHAR, result VARCHAR)
###question:WHAT IS THE RESULT OF THE GAME ON APRIL 23?###answer:SELECT result FROM table_name_60 WHERE date = "april 23"###context:CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR)
###question:WHAT IS THE RESULT WITH THE BOSTON ROAD TEAM, ON APRIL 23?###answer:SELECT result FROM table_name_68 WHERE road_team = "boston" AND date = "april 23"###context:CREATE TABLE table_name_68 (result VARCHAR, road_team VARCHAR, date VARCHAR)
###question:WHAT IS THE HOME TEAM, RESULT 99-112?###answer:SELECT home_team FROM table_name_21 WHERE result = "99-112"###context:CREATE TABLE table_name_21 (home_team VARCHAR, result VARCHAR)
###question:What is Brown's transfer window?###answer:SELECT transfer_window FROM table_name_52 WHERE name = "brown"###context:CREATE TABLE table_name_52 (transfer_window VARCHAR, name VARCHAR)
###question:What is the transfer window with a status of transfer from the country of Wal?###answer:SELECT transfer_window FROM table_name_65 WHERE status = "transfer" AND country = "wal"###context:CREATE TABLE table_name_65 (transfer_window VARCHAR, status VARCHAR, country VARCHAR)
###question:What is the status of the Eng Country from the Maynard name?###answer:SELECT status FROM table_name_28 WHERE country = "eng" AND name = "maynard"###context:CREATE TABLE table_name_28 (status VARCHAR, country VARCHAR, name VARCHAR)
###question:What is the name of the free transfer fee with a transfer status and an ENG country?###answer:SELECT name FROM table_name_31 WHERE transfer_fee = "free" AND status = "transfer" AND country = "eng"###context:CREATE TABLE table_name_31 (name VARCHAR, country VARCHAR, transfer_fee VARCHAR, status VARCHAR)
###question:What is the status of the ENG Country with the name of Farquharson?###answer:SELECT status FROM table_name_79 WHERE country = "eng" AND name = "farquharson"###context:CREATE TABLE table_name_79 (status VARCHAR, country VARCHAR, name VARCHAR)
###question:What is Left Office, when Took Office is 2006?###answer:SELECT left_office FROM table_name_82 WHERE took_office = "2006"###context:CREATE TABLE table_name_82 (left_office VARCHAR, took_office VARCHAR)
###question:What is Left Office, when Party is Vacant (1999-2001)?###answer:SELECT left_office FROM table_name_83 WHERE party = "vacant (1999-2001)"###context:CREATE TABLE table_name_83 (left_office VARCHAR, party VARCHAR)
###question:What is Name, when President is Khamtai Siphandon, and when Left Office is 1999?###answer:SELECT name FROM table_name_66 WHERE president = "khamtai siphandon" AND left_office = "1999"###context:CREATE TABLE table_name_66 (name VARCHAR, president VARCHAR, left_office VARCHAR)
###question:What is Party, when Name is Oudom Khattigna?###answer:SELECT party FROM table_name_8 WHERE name = "oudom khattigna"###context:CREATE TABLE table_name_8 (party VARCHAR, name VARCHAR)
###question:What is Party, when Took Office is 1998?###answer:SELECT party FROM table_name_14 WHERE took_office = "1998"###context:CREATE TABLE table_name_14 (party VARCHAR, took_office VARCHAR)
###question:What is Left Office, when Took Office is 1998?###answer:SELECT left_office FROM table_name_25 WHERE took_office = "1998"###context:CREATE TABLE table_name_25 (left_office VARCHAR, took_office VARCHAR)
###question:When was the away team geelong?###answer:SELECT date FROM table_name_13 WHERE away_team = "geelong"###context:CREATE TABLE table_name_13 (date VARCHAR, away_team VARCHAR)
###question:What was the ground for away team essendon?###answer:SELECT ground FROM table_name_19 WHERE away_team = "essendon"###context:CREATE TABLE table_name_19 (ground VARCHAR, away_team VARCHAR)
###question:What was the ground for away team sydney?###answer:SELECT ground FROM table_name_59 WHERE away_team = "sydney"###context:CREATE TABLE table_name_59 (ground VARCHAR, away_team VARCHAR)
###question:What date was the week 6 game played on?###answer:SELECT date FROM table_name_80 WHERE week = 6###context:CREATE TABLE table_name_80 (date VARCHAR, week VARCHAR)
###question:What week was the game played at Mile High Stadium?###answer:SELECT week FROM table_name_85 WHERE venue = "mile high stadium"###context:CREATE TABLE table_name_85 (week VARCHAR, venue VARCHAR)
###question:What is the losing bonus when drawn was 0, and there were 101 points?###answer:SELECT losing_bonus FROM table_name_53 WHERE drawn = "0" AND points = "101"###context:CREATE TABLE table_name_53 (losing_bonus VARCHAR, drawn VARCHAR, points VARCHAR)
###question:What is the points when the lost was 11?###answer:SELECT points_for FROM table_name_29 WHERE lost = "11"###context:CREATE TABLE table_name_29 (points_for VARCHAR, lost VARCHAR)
###question:What is the lost when the club was Barry RFC?###answer:SELECT lost FROM table_name_60 WHERE club = "barry rfc"###context:CREATE TABLE table_name_60 (lost VARCHAR, club VARCHAR)
###question:What is the played number when tries against is 84, and drawn is 2?###answer:SELECT played FROM table_name_13 WHERE tries_against = "84" AND drawn = "2"###context:CREATE TABLE table_name_13 (played VARCHAR, tries_against VARCHAR, drawn VARCHAR)
###question:What is the name of the club with 22 points?###answer:SELECT club FROM table_name_2 WHERE points = "22"###context:CREATE TABLE table_name_2 (club VARCHAR, points VARCHAR)
###question:What is the name of the club when the played number is 22, and the try bonus was 0?###answer:SELECT club FROM table_name_62 WHERE played = "22" AND try_bonus = "0"###context:CREATE TABLE table_name_62 (club VARCHAR, played VARCHAR, try_bonus VARCHAR)
###question:What was the nationality of the players with a position of g?###answer:SELECT nationality FROM table_name_77 WHERE position = "g"###context:CREATE TABLE table_name_77 (nationality VARCHAR, position VARCHAR)
###question:What is Team, when High Assists is "Rashard Lewis (4)"?###answer:SELECT team FROM table_name_15 WHERE high_assists = "rashard lewis (4)"###context:CREATE TABLE table_name_15 (team VARCHAR, high_assists VARCHAR)
###question:What is High Points, when High Rebounds is "Dwight Howard (16)"?###answer:SELECT high_points FROM table_name_8 WHERE high_rebounds = "dwight howard (16)"###context:CREATE TABLE table_name_8 (high_points VARCHAR, high_rebounds VARCHAR)
###question:What is Series, when Date is "June 7"?###answer:SELECT series FROM table_name_74 WHERE date = "june 7"###context:CREATE TABLE table_name_74 (series VARCHAR, date VARCHAR)
###question:What is High Assists, when High Rebounds is "Dwight Howard , Rashard Lewis (10)"?###answer:SELECT high_assists FROM table_name_80 WHERE high_rebounds = "dwight howard , rashard lewis (10)"###context:CREATE TABLE table_name_80 (high_assists VARCHAR, high_rebounds VARCHAR)
###question:What is the highest Game, when High Assists is "Hedo Türkoğlu (7)"?###answer:SELECT MAX(game) FROM table_name_86 WHERE high_assists = "hedo türkoğlu (7)"###context:CREATE TABLE table_name_86 (game INTEGER, high_assists VARCHAR)
###question:What Game had a Score of 101–92?###answer:SELECT AVG(game) FROM table_name_71 WHERE score = "101–92"###context:CREATE TABLE table_name_71 (game INTEGER, score VARCHAR)
###question:What is the Score of the Game with a Record of 13–12?###answer:SELECT score FROM table_name_43 WHERE record = "13–12"###context:CREATE TABLE table_name_43 (score VARCHAR, record VARCHAR)
###question:What is the Streak on December 30?###answer:SELECT streak FROM table_name_65 WHERE date = "december 30"###context:CREATE TABLE table_name_65 (streak VARCHAR, date VARCHAR)
###question:What is the date of game 9?###answer:SELECT date FROM table_name_61 WHERE game = 9###context:CREATE TABLE table_name_61 (date VARCHAR, game VARCHAR)
###question:Who had the most assists in the game that led to a 3-7 record?###answer:SELECT high_assists FROM table_name_63 WHERE record = "3-7"###context:CREATE TABLE table_name_63 (high_assists VARCHAR, record VARCHAR)
###question:What is the location of the game with a 6-11-8 record?###answer:SELECT location FROM table_name_71 WHERE record = "6-11-8"###context:CREATE TABLE table_name_71 (location VARCHAR, record VARCHAR)
###question:What game has a 6-12-8 record?###answer:SELECT game FROM table_name_65 WHERE record = "6-12-8"###context:CREATE TABLE table_name_65 (game VARCHAR, record VARCHAR)
###question:What is Points, when Points For is "562"?###answer:SELECT points FROM table_name_25 WHERE points_for = "562"###context:CREATE TABLE table_name_25 (points VARCHAR, points_for VARCHAR)
###question:What is Drawn, when Played is "Correct as of 2006-06-10"?###answer:SELECT drawn FROM table_name_59 WHERE played = "correct as of 2006-06-10"###context:CREATE TABLE table_name_59 (drawn VARCHAR, played VARCHAR)
###question:What is Drawn, when Points Against is "686"?###answer:SELECT drawn FROM table_name_34 WHERE points_against = "686"###context:CREATE TABLE table_name_34 (drawn VARCHAR, points_against VARCHAR)
###question:What is Points Against, when Drawn is "2", and when Points Of is "32"?###answer:SELECT points_against FROM table_name_80 WHERE drawn = "2" AND points = "32"###context:CREATE TABLE table_name_80 (points_against VARCHAR, drawn VARCHAR, points VARCHAR)
###question:What is Lost, when Drawn is "2", and when Points is "36"?###answer:SELECT lost FROM table_name_94 WHERE drawn = "2" AND points = "36"###context:CREATE TABLE table_name_94 (lost VARCHAR, drawn VARCHAR, points VARCHAR)
###question:What is Points For, when Points is "63"?###answer:SELECT points_for FROM table_name_8 WHERE points = "63"###context:CREATE TABLE table_name_8 (points_for VARCHAR, points VARCHAR)
###question:What was the game number that was played on November 15?###answer:SELECT MIN(game) FROM table_name_82 WHERE date = "november 15"###context:CREATE TABLE table_name_82 (game INTEGER, date VARCHAR)
###question:What is the lowest attendance when the h/A is H in the Semi-Finals Second Leg?###answer:SELECT MIN(attendance) FROM table_name_73 WHERE h___a = "h" AND round = "semi-finals second leg"###context:CREATE TABLE table_name_73 (attendance INTEGER, h___a VARCHAR, round VARCHAR)
###question:What is the attendance number in the final round?###answer:SELECT SUM(attendance) FROM table_name_29 WHERE round = "final"###context:CREATE TABLE table_name_29 (attendance INTEGER, round VARCHAR)
###question:What bridge in Sheridan county was built in 1915?###answer:SELECT name FROM table_name_30 WHERE county = "sheridan" AND built = "1915"###context:CREATE TABLE table_name_30 (name VARCHAR, county VARCHAR, built VARCHAR)
###question:What is the listed for the bridge at Daniel in Sublette county?###answer:SELECT listed FROM table_name_86 WHERE county = "sublette" AND location = "daniel"###context:CREATE TABLE table_name_86 (listed VARCHAR, county VARCHAR, location VARCHAR)
###question:In what year was the bridge in Lovell built?###answer:SELECT built FROM table_name_71 WHERE location = "lovell"###context:CREATE TABLE table_name_71 (built VARCHAR, location VARCHAR)
###question:What is the county of the bridge in Boulder?###answer:SELECT county FROM table_name_62 WHERE location = "boulder"###context:CREATE TABLE table_name_62 (county VARCHAR, location VARCHAR)
###question:Which opponent has a score of 84-88 (ot)?###answer:SELECT opponent FROM table_name_79 WHERE score = "84-88 (ot)"###context:CREATE TABLE table_name_79 (opponent VARCHAR, score VARCHAR)
###question:How many games have a score of 85-92?###answer:SELECT COUNT(game) FROM table_name_36 WHERE score = "85-92"###context:CREATE TABLE table_name_36 (game VARCHAR, score VARCHAR)
###question:What is the earliest game with a score of 99-89?###answer:SELECT MIN(game) FROM table_name_81 WHERE score = "99-89"###context:CREATE TABLE table_name_81 (game INTEGER, score VARCHAR)
###question:What game has a score of 89-91?###answer:SELECT AVG(game) FROM table_name_27 WHERE score = "89-91"###context:CREATE TABLE table_name_27 (game INTEGER, score VARCHAR)
###question:On what date did a game higher than 10 have a score of 99-89?###answer:SELECT date FROM table_name_26 WHERE game > 10 AND score = "99-89"###context:CREATE TABLE table_name_26 (date VARCHAR, game VARCHAR, score VARCHAR)
###question:On what date did Fleetcenter have a game lower than 9 with a score of 104-94?###answer:SELECT date FROM table_name_59 WHERE location = "fleetcenter" AND game < 9 AND score = "104-94"###context:CREATE TABLE table_name_59 (date VARCHAR, score VARCHAR, location VARCHAR, game VARCHAR)
###question:What is Place, when Score is less than 70?###answer:SELECT place FROM table_name_44 WHERE score < 70###context:CREATE TABLE table_name_44 (place VARCHAR, score INTEGER)
###question:What is To Par, when Country is "United States", when Place is "T4", and when Player is "Frank Boynton"?###answer:SELECT to_par FROM table_name_80 WHERE country = "united states" AND place = "t4" AND player = "frank boynton"###context:CREATE TABLE table_name_80 (to_par VARCHAR, player VARCHAR, country VARCH...
###question:What is To Par, when Country is "United States", when Place is "T4", and when Player is "Arnold Palmer"?###answer:SELECT to_par FROM table_name_96 WHERE country = "united states" AND place = "t4" AND player = "arnold palmer"###context:CREATE TABLE table_name_96 (to_par VARCHAR, player VARCHAR, country VARCH...
###question:What is the Depart de la main gauche of the do Mode?###answer:SELECT départ_de_la_main_gauche FROM table_name_26 WHERE mode = "do"###context:CREATE TABLE table_name_26 (départ_de_la_main_gauche VARCHAR, mode VARCHAR)
###question:Which Rank has a Name of john curry, and Points larger than 338.43?###answer:SELECT MAX(rank) FROM table_name_8 WHERE name = "john curry" AND points > 338.43###context:CREATE TABLE table_name_8 (rank INTEGER, name VARCHAR, points VARCHAR)
###question:How many Placings have Points smaller than 330.84, and a Name of silvo svajger?###answer:SELECT COUNT(placings) FROM table_name_1 WHERE points < 330.84 AND name = "silvo svajger"###context:CREATE TABLE table_name_1 (placings VARCHAR, points VARCHAR, name VARCHAR)
###question:Which Placings have a Nation of west germany, and Points larger than 303.72?###answer:SELECT SUM(placings) FROM table_name_31 WHERE nation = "west germany" AND points > 303.72###context:CREATE TABLE table_name_31 (placings INTEGER, nation VARCHAR, points VARCHAR)
###question:Which Nation has Points of 300.38?###answer:SELECT nation FROM table_name_90 WHERE points = 300.38###context:CREATE TABLE table_name_90 (nation VARCHAR, points VARCHAR)
###question:Which player finished at +10?###answer:SELECT player FROM table_name_57 WHERE to_par = "+10"###context:CREATE TABLE table_name_57 (player VARCHAR, to_par VARCHAR)
###question:Who is the opponent before game 5 with a 0-1-0 record?###answer:SELECT opponent FROM table_name_31 WHERE game < 5 AND record = "0-1-0"###context:CREATE TABLE table_name_31 (opponent VARCHAR, game VARCHAR, record VARCHAR)
###question:What is the score for the opponent Vancouver Canucks?###answer:SELECT score FROM table_name_23 WHERE opponent = "vancouver canucks"###context:CREATE TABLE table_name_23 (score VARCHAR, opponent VARCHAR)
###question:What date is the record 4-3-0?###answer:SELECT date FROM table_name_94 WHERE record = "4-3-0"###context:CREATE TABLE table_name_94 (date VARCHAR, record VARCHAR)
###question:What is the fleet number with a 4-6-0 wheel arrangement made in 1890?###answer:SELECT fleet_number_s_ FROM table_name_94 WHERE wheel_arrangement = "4-6-0" AND year_made = "1890"###context:CREATE TABLE table_name_94 (fleet_number_s_ VARCHAR, wheel_arrangement VARCHAR, year_made VARCHAR)
###question:What is the wheel arrangement made in 1890?###answer:SELECT wheel_arrangement FROM table_name_99 WHERE year_made = "1890"###context:CREATE TABLE table_name_99 (wheel_arrangement VARCHAR, year_made VARCHAR)
###question:What is the quantity preserved of the e-1 class?###answer:SELECT quantity_preserved FROM table_name_17 WHERE class = "e-1"###context:CREATE TABLE table_name_17 (quantity_preserved VARCHAR, class VARCHAR)
###question:What is the wheel arrangement with 1 quantity preserved?###answer:SELECT wheel_arrangement FROM table_name_1 WHERE quantity_preserved = "1"###context:CREATE TABLE table_name_1 (wheel_arrangement VARCHAR, quantity_preserved VARCHAR)
###question:What is the quantity made of the e-22 class, which has a quantity preserved of 0?###answer:SELECT quantity_made FROM table_name_36 WHERE quantity_preserved = "0" AND class = "e-22"###context:CREATE TABLE table_name_36 (quantity_made VARCHAR, quantity_preserved VARCHAR, class VARCHAR)
###question:What is the sum of Total, when Rank is 8, and when Bronze is less than 1?###answer:SELECT SUM(total) FROM table_name_95 WHERE rank = "8" AND bronze < 1###context:CREATE TABLE table_name_95 (total INTEGER, rank VARCHAR, bronze VARCHAR)
###question:What is the lowest Bronze, when Gold is less than 0?###answer:SELECT MIN(bronze) FROM table_name_58 WHERE gold < 0###context:CREATE TABLE table_name_58 (bronze INTEGER, gold INTEGER)
###question:What is the average Bronze, when Total is 7, and when Silver is greater than 1?###answer:SELECT AVG(bronze) FROM table_name_23 WHERE total = 7 AND silver > 1###context:CREATE TABLE table_name_23 (bronze INTEGER, total VARCHAR, silver VARCHAR)