combined_text
stringlengths
106
1.05k
###question:What is the lowest Cycle, when Number Of Contestants is 11, and when International Destinations is Paris Gran Canaria?###answer:SELECT MIN(cycle) FROM table_name_57 WHERE number_of_contestants = "11" AND international_destinations = "paris gran canaria"###context:CREATE TABLE table_name_57 (cycle INTEGER, n...
###question:What is the highest Cycle, when the Number of Constestants is 11, and when Premiere Date is September 3, 2012?###answer:SELECT MAX(cycle) FROM table_name_57 WHERE number_of_contestants = "11" AND premiere_date = "september 3, 2012"###context:CREATE TABLE table_name_57 (cycle INTEGER, number_of_contestants V...
###question:What is Number of Contestants, when Cycle is 4?###answer:SELECT number_of_contestants FROM table_name_81 WHERE cycle = 4###context:CREATE TABLE table_name_81 (number_of_contestants VARCHAR, cycle VARCHAR)
###question:What is Number of Contestants, when International Destinations is London Lisbon?###answer:SELECT number_of_contestants FROM table_name_55 WHERE international_destinations = "london lisbon"###context:CREATE TABLE table_name_55 (number_of_contestants VARCHAR, international_destinations VARCHAR)
###question:What is the lowest pick with fewer than 3 rounds and more than 4 overall?###answer:SELECT MIN(pick) FROM table_name_15 WHERE round < 3 AND overall > 4###context:CREATE TABLE table_name_15 (pick INTEGER, round VARCHAR, overall VARCHAR)
###question:Which round has more than 79 overall and a position of QB?###answer:SELECT round FROM table_name_60 WHERE position = "qb" AND overall > 79###context:CREATE TABLE table_name_60 (round VARCHAR, position VARCHAR, overall VARCHAR)
###question:Which Notre Dame position has a pick lower than 5 and round 7?###answer:SELECT position FROM table_name_88 WHERE pick < 5 AND college = "notre dame" AND round = 7###context:CREATE TABLE table_name_88 (position VARCHAR, round VARCHAR, pick VARCHAR, college VARCHAR)
###question:What was week 17's date?###answer:SELECT date FROM table_name_21 WHERE week = 17###context:CREATE TABLE table_name_21 (date VARCHAR, week VARCHAR)
###question:Which Opponent has a Result of l 24–3?###answer:SELECT opponent FROM table_name_16 WHERE result = "l 24–3"###context:CREATE TABLE table_name_16 (opponent VARCHAR, result VARCHAR)
###question:What was week 5's result?###answer:SELECT result FROM table_name_81 WHERE week = 5###context:CREATE TABLE table_name_81 (result VARCHAR, week VARCHAR)
###question:What was the score for Groves High School when the high assist was Giovanni Riley (9)?###answer:SELECT score FROM table_name_21 WHERE location_attendance = "groves high school" AND high_assists = "giovanni riley (9)"###context:CREATE TABLE table_name_21 (score VARCHAR, location_attendance VARCHAR, high_assi...
###question:What was the high points for opponent Mid-Michigan destroyers on January 3?###answer:SELECT high_points FROM table_name_22 WHERE opponent = "mid-michigan destroyers" AND date = "january 3"###context:CREATE TABLE table_name_22 (high_points VARCHAR, opponent VARCHAR, date VARCHAR)
###question:What opponent is at Richmond Academy?###answer:SELECT opponent FROM table_name_38 WHERE location_attendance = "richmond academy"###context:CREATE TABLE table_name_38 (opponent VARCHAR, location_attendance VARCHAR)
###question:What were the high points on March 29?###answer:SELECT high_points FROM table_name_88 WHERE date = "march 29"###context:CREATE TABLE table_name_88 (high_points VARCHAR, date VARCHAR)
###question:Which opponent scored 95-101?###answer:SELECT opponent FROM table_name_34 WHERE score = "95-101"###context:CREATE TABLE table_name_34 (opponent VARCHAR, score VARCHAR)
###question:Who was the (M) Best & Fairest when ray kaduck was president and richard keane was coach?###answer:SELECT _m__best_ & _fairest FROM table_name_2 WHERE president = "ray kaduck" AND _m__coach = "richard keane"###context:CREATE TABLE table_name_2 (_m__best_ VARCHAR, _fairest VARCHAR, president VARCHAR, _m__coa...
###question:What was the (M) Finishe position when ray kaduck was president and corey bowen was coach?###answer:SELECT _m__finishing_position FROM table_name_44 WHERE president = "ray kaduck" AND _m__coach = "corey bowen"###context:CREATE TABLE table_name_44 (_m__finishing_position VARCHAR, president VARCHAR, _m__coach...
###question:Which Game has a Score of l 102–114 (ot)?###answer:SELECT AVG(game) FROM table_name_90 WHERE score = "l 102–114 (ot)"###context:CREATE TABLE table_name_90 (game INTEGER, score VARCHAR)
###question:Which Record has a Date of january 31?###answer:SELECT record FROM table_name_18 WHERE date = "january 31"###context:CREATE TABLE table_name_18 (record VARCHAR, date VARCHAR)
###question:Which Record has a Game larger than 34, and a Date of january 9?###answer:SELECT record FROM table_name_34 WHERE game > 34 AND date = "january 9"###context:CREATE TABLE table_name_34 (record VARCHAR, game VARCHAR, date VARCHAR)
###question:Which Location Attendance has a Record of 11–34?###answer:SELECT location_attendance FROM table_name_27 WHERE record = "11–34"###context:CREATE TABLE table_name_27 (location_attendance VARCHAR, record VARCHAR)
###question:What is the record for the w 100-99 score?###answer:SELECT record FROM table_name_95 WHERE score = "w 100-99"###context:CREATE TABLE table_name_95 (record VARCHAR, score VARCHAR)
###question:What is the location for the 23-17 record?###answer:SELECT location FROM table_name_67 WHERE record = "23-17"###context:CREATE TABLE table_name_67 (location VARCHAR, record VARCHAR)
###question:What is the location before game 44, and a 20-16 record?###answer:SELECT location FROM table_name_10 WHERE game < 44 AND record = "20-16"###context:CREATE TABLE table_name_10 (location VARCHAR, game VARCHAR, record VARCHAR)
###question:What was the result for the match with entry Match Reports?###answer:SELECT result FROM table_name_69 WHERE match = "match reports"###context:CREATE TABLE table_name_69 (result VARCHAR, match VARCHAR)
###question:What was the location of the match that had a result of 3-3?###answer:SELECT location FROM table_name_13 WHERE result = "3-3"###context:CREATE TABLE table_name_13 (location VARCHAR, result VARCHAR)
###question:What was the lineup for match 12 that had a competition of Group Stage?###answer:SELECT lineup FROM table_name_65 WHERE competition = "group stage" AND match = "12"###context:CREATE TABLE table_name_65 (lineup VARCHAR, competition VARCHAR, match VARCHAR)
###question:What was the result for the match held in Boston?###answer:SELECT result FROM table_name_97 WHERE location = "boston"###context:CREATE TABLE table_name_97 (result VARCHAR, location VARCHAR)
###question:How many total games were played against @ St. Louis Hawks this season?###answer:SELECT SUM(game) FROM table_name_42 WHERE opponent = "@ st. louis hawks"###context:CREATE TABLE table_name_42 (game INTEGER, opponent VARCHAR)
###question:On what day was Game 48 played?###answer:SELECT date FROM table_name_39 WHERE game = 48###context:CREATE TABLE table_name_39 (date VARCHAR, game VARCHAR)
###question:What is the pick number later than round 1, for Reyshawn Terry?###answer:SELECT AVG(pick) FROM table_name_17 WHERE round > 1 AND player = "reyshawn terry"###context:CREATE TABLE table_name_17 (pick INTEGER, round VARCHAR, player VARCHAR)
###question:What round was the player Ty Lawson with a pick earlier than 18?###answer:SELECT AVG(round) FROM table_name_90 WHERE player = "ty lawson" AND pick < 18###context:CREATE TABLE table_name_90 (round INTEGER, player VARCHAR, pick VARCHAR)
###question:What is the pick number for Danny Green in a round less than 2?###answer:SELECT COUNT(pick) FROM table_name_21 WHERE player = "danny green" AND round < 2###context:CREATE TABLE table_name_21 (pick VARCHAR, player VARCHAR, round VARCHAR)
###question:What is the pick number in a year earlier than 2009, with a round higher than 1?###answer:SELECT COUNT(pick) FROM table_name_60 WHERE year < 2009 AND round > 1###context:CREATE TABLE table_name_60 (pick VARCHAR, year VARCHAR, round VARCHAR)
###question:What are the notes for the Mandarin Chinese program on CTV earlier than 2013?###answer:SELECT notes FROM table_name_40 WHERE year < 2013 AND language = "mandarin chinese" AND network = "ctv"###context:CREATE TABLE table_name_40 (notes VARCHAR, network VARCHAR, year VARCHAR, language VARCHAR)
###question:What is the language for Strong Heart?###answer:SELECT language FROM table_name_64 WHERE title = "strong heart"###context:CREATE TABLE table_name_64 (language VARCHAR, title VARCHAR)
###question:What is the title for the Korean progran on KBS2?###answer:SELECT title FROM table_name_96 WHERE language = "korean" AND network = "kbs2"###context:CREATE TABLE table_name_96 (title VARCHAR, language VARCHAR, network VARCHAR)
###question:What is the network that aired Star King prior to 2011?###answer:SELECT network FROM table_name_70 WHERE year < 2011 AND title = "star king"###context:CREATE TABLE table_name_70 (network VARCHAR, year VARCHAR, title VARCHAR)
###question:What are the notes for Happy Camp?###answer:SELECT notes FROM table_name_79 WHERE title = "happy camp"###context:CREATE TABLE table_name_79 (notes VARCHAR, title VARCHAR)
###question:Which Pick has a College of ohio state?###answer:SELECT MIN(pick) FROM table_name_22 WHERE college = "ohio state"###context:CREATE TABLE table_name_22 (pick INTEGER, college VARCHAR)
###question:Which Round has a Position of lb, and a Pick smaller than 25?###answer:SELECT COUNT(round) FROM table_name_3 WHERE position = "lb" AND pick < 25###context:CREATE TABLE table_name_3 (round VARCHAR, position VARCHAR, pick VARCHAR)
###question:Which week has a result L 56-3?###answer:SELECT AVG(week) FROM table_name_93 WHERE result = "l 56-3"###context:CREATE TABLE table_name_93 (week INTEGER, result VARCHAR)
###question:Where is the player Raymond Floyd?###answer:SELECT place FROM table_name_47 WHERE player = "raymond floyd"###context:CREATE TABLE table_name_47 (place VARCHAR, player VARCHAR)
###question:Which country has a score of 71-72-73-69=285?###answer:SELECT country FROM table_name_44 WHERE score = 71 - 72 - 73 - 69 = 285###context:CREATE TABLE table_name_44 (country VARCHAR, score VARCHAR)
###question:What is the highest Money ( $ ), when Score is "69-71-70-74=284"?###answer:SELECT MAX(money___) AS $__ FROM table_name_65 WHERE score = 69 - 71 - 70 - 74 = 284###context:CREATE TABLE table_name_65 (money___ INTEGER, score VARCHAR)
###question:What is Place, when Score is "71-71-69-71=282"?###answer:SELECT place FROM table_name_3 WHERE score = 71 - 71 - 69 - 71 = 282###context:CREATE TABLE table_name_3 (place VARCHAR, score VARCHAR)
###question:What is Score, when Player is "Dow Finsterwald"?###answer:SELECT score FROM table_name_76 WHERE player = "dow finsterwald"###context:CREATE TABLE table_name_76 (score VARCHAR, player VARCHAR)
###question:Which venue did the runner have a note of 1:23:07?###answer:SELECT venue FROM table_name_58 WHERE notes = "1:23:07"###context:CREATE TABLE table_name_58 (venue VARCHAR, notes VARCHAR)
###question:What is the note result when the runner finished 19th in 2008?###answer:SELECT notes FROM table_name_94 WHERE year = 2008 AND position = "19th"###context:CREATE TABLE table_name_94 (notes VARCHAR, year VARCHAR, position VARCHAR)
###question:What are the points 1 for the team with position less than 13 and goal difference of +16?###answer:SELECT points_1 FROM table_name_93 WHERE position < 13 AND goal_difference = "+16"###context:CREATE TABLE table_name_93 (points_1 VARCHAR, position VARCHAR, goal_difference VARCHAR)
###question:What is the goal difference where the goals against is less than 54, goals for is greater than 51 and points 1 is 63?###answer:SELECT goal_difference FROM table_name_29 WHERE goals_against < 54 AND goals_for > 51 AND points_1 = "63"###context:CREATE TABLE table_name_29 (goal_difference VARCHAR, points_1 VAR...
###question:What is the number of games lost when goal difference is +13 and draws are more than 12?###answer:SELECT COUNT(lost) FROM table_name_65 WHERE goal_difference = "+13" AND drawn > 12###context:CREATE TABLE table_name_65 (lost VARCHAR, goal_difference VARCHAR, drawn VARCHAR)
###question:What was the finishing position for the car that started in grid 6?###answer:SELECT fin_pos FROM table_name_21 WHERE grid = "6"###context:CREATE TABLE table_name_21 (fin_pos VARCHAR, grid VARCHAR)
###question:What team started in grid 11?###answer:SELECT team FROM table_name_2 WHERE grid = "11"###context:CREATE TABLE table_name_2 (team VARCHAR, grid VARCHAR)
###question:What was the time/retired of car number 6.###answer:SELECT time_retired FROM table_name_93 WHERE car_no = "6"###context:CREATE TABLE table_name_93 (time_retired VARCHAR, car_no VARCHAR)
###question:What was the grid number of the team and driver with 14 points?###answer:SELECT grid FROM table_name_9 WHERE points = "14"###context:CREATE TABLE table_name_9 (grid VARCHAR, points VARCHAR)
###question:Who did Thomaz Bellucci play against when he became runner-up on a clay surface?###answer:SELECT opponent FROM table_name_73 WHERE outcome = "runner-up" AND surface = "clay"###context:CREATE TABLE table_name_73 (opponent VARCHAR, outcome VARCHAR, surface VARCHAR)
###question:What tournament did Thomaz Bellucci become runner-up on a clay surface?###answer:SELECT tournament FROM table_name_82 WHERE outcome = "runner-up" AND surface = "clay"###context:CREATE TABLE table_name_82 (tournament VARCHAR, outcome VARCHAR, surface VARCHAR)
###question:What type of surface did Thomaz Bellucci play against tommy robredo?###answer:SELECT surface FROM table_name_66 WHERE opponent = "tommy robredo"###context:CREATE TABLE table_name_66 (surface VARCHAR, opponent VARCHAR)
###question:What is the result of the match against Ryan Schultz?###answer:SELECT res FROM table_name_12 WHERE opponent = "ryan schultz"###context:CREATE TABLE table_name_12 (res VARCHAR, opponent VARCHAR)
###question:What round was the game against Cedric Marks?###answer:SELECT round FROM table_name_39 WHERE opponent = "cedric marks"###context:CREATE TABLE table_name_39 (round VARCHAR, opponent VARCHAR)
###question:What was the record of the match against Chris Mounce?###answer:SELECT record FROM table_name_96 WHERE opponent = "chris mounce"###context:CREATE TABLE table_name_96 (record VARCHAR, opponent VARCHAR)
###question:What is the method in the round 2 win over Nick Gilardi?###answer:SELECT method FROM table_name_75 WHERE round = "2" AND res = "win" AND opponent = "nick gilardi"###context:CREATE TABLE table_name_75 (method VARCHAR, opponent VARCHAR, round VARCHAR, res VARCHAR)
###question:Who is number 7 when Sophia is number 3 and Abigail is number 10?###answer:SELECT no_7 FROM table_name_70 WHERE no_3 = "sophia" AND no_10 = "abigail"###context:CREATE TABLE table_name_70 (no_7 VARCHAR, no_3 VARCHAR, no_10 VARCHAR)
###question:Which region (year) has Abigail at number 7, Sophia at number 1 and Aaliyah at number 5?###answer:SELECT region__year_ FROM table_name_12 WHERE no_7 = "abigail" AND no_1 = "sophia" AND no_5 = "aaliyah"###context:CREATE TABLE table_name_12 (region__year_ VARCHAR, no_5 VARCHAR, no_7 VARCHAR, no_1 VARCHAR)
###question:Who is number 4 when Harper is number 10 and Abigail is number 5?###answer:SELECT no_4 FROM table_name_24 WHERE no_10 = "harper" AND no_5 = "abigail"###context:CREATE TABLE table_name_24 (no_4 VARCHAR, no_10 VARCHAR, no_5 VARCHAR)
###question:What is Player, when To Par is "+1", and when Score is "75-68=143"?###answer:SELECT player FROM table_name_32 WHERE to_par = "+1" AND score = 75 - 68 = 143###context:CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, score VARCHAR)
###question:What is Score, when Player is "Andy North"?###answer:SELECT score FROM table_name_12 WHERE player = "andy north"###context:CREATE TABLE table_name_12 (score VARCHAR, player VARCHAR)
###question:What is To Par, when Score is "69-72=141"###answer:SELECT to_par FROM table_name_31 WHERE score = 69 - 72 = 141###context:CREATE TABLE table_name_31 (to_par VARCHAR, score VARCHAR)
###question:What is Place, when Score is "73-71=144", and when Player is "Scott Simpson"?###answer:SELECT place FROM table_name_66 WHERE score = 73 - 71 = 144 AND player = "scott simpson"###context:CREATE TABLE table_name_66 (place VARCHAR, player VARCHAR, score VARCHAR)
###question:What is Score, when Country is "United States", and when Player is "John Mahaffey"?###answer:SELECT score FROM table_name_13 WHERE country = "united states" AND player = "john mahaffey"###context:CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR, player VARCHAR)
###question:What is To Par, when Place is "T1", and when Player is "Joey Rassett"?###answer:SELECT to_par FROM table_name_6 WHERE place = "t1" AND player = "joey rassett"###context:CREATE TABLE table_name_6 (to_par VARCHAR, place VARCHAR, player VARCHAR)
###question:What was the score when the away team was brighton & hove albion?###answer:SELECT score FROM table_name_21 WHERE away_team = "brighton & hove albion"###context:CREATE TABLE table_name_21 (score VARCHAR, away_team VARCHAR)
###question:When was the away team burnley?###answer:SELECT date FROM table_name_31 WHERE away_team = "burnley"###context:CREATE TABLE table_name_31 (date VARCHAR, away_team VARCHAR)
###question:Which home team had an away team of Reading?###answer:SELECT home_team FROM table_name_37 WHERE away_team = "reading"###context:CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR)
###question:What year was the accolade for Scottish albums of the decade?###answer:SELECT year FROM table_name_83 WHERE accolade = "scottish albums of the decade"###context:CREATE TABLE table_name_83 (year VARCHAR, accolade VARCHAR)
###question:What country had the publication, Drowned in Sound?###answer:SELECT country FROM table_name_22 WHERE publication = "drowned in sound"###context:CREATE TABLE table_name_22 (country VARCHAR, publication VARCHAR)
###question:What is the name of the home stadium of Brisbane Lions?###answer:SELECT ground FROM table_name_93 WHERE home_team = "brisbane lions"###context:CREATE TABLE table_name_93 (ground VARCHAR, home_team VARCHAR)
###question:How much is the crowd attending at colonial stadium where Hawthorn plays?###answer:SELECT crowd FROM table_name_9 WHERE ground = "colonial stadium" AND home_team = "hawthorn"###context:CREATE TABLE table_name_9 (crowd VARCHAR, ground VARCHAR, home_team VARCHAR)
###question:what is the 2nd leg when team #2 is žalgiris kaunas?###answer:SELECT 2 AS nd_leg FROM table_name_47 WHERE team__number2 = "žalgiris kaunas"###context:CREATE TABLE table_name_47 (team__number2 VARCHAR)
###question:what is the 2nd leg when team #2 is žalgiris kaunas?###answer:SELECT 2 AS nd_leg FROM table_name_67 WHERE team__number2 = "žalgiris kaunas"###context:CREATE TABLE table_name_67 (team__number2 VARCHAR)
###question:Who was the opponent in week 6?###answer:SELECT opponent FROM table_name_30 WHERE week = 6###context:CREATE TABLE table_name_30 (opponent VARCHAR, week VARCHAR)
###question:Which week had an attendance of 55,158?###answer:SELECT SUM(week) FROM table_name_42 WHERE attendance = "55,158"###context:CREATE TABLE table_name_42 (week INTEGER, attendance VARCHAR)
###question:What is the lowest game on February 10?###answer:SELECT MIN(game) FROM table_name_66 WHERE date = "february 10"###context:CREATE TABLE table_name_66 (game INTEGER, date VARCHAR)
###question:Which Player has a Round larger than 5, and a Position of (g)?###answer:SELECT player FROM table_name_1 WHERE round > 5 AND position = "(g)"###context:CREATE TABLE table_name_1 (player VARCHAR, round VARCHAR, position VARCHAR)
###question:Which Round has a Nationality of united states, and a Player of jimmy hayes?###answer:SELECT MAX(round) FROM table_name_34 WHERE nationality = "united states" AND player = "jimmy hayes"###context:CREATE TABLE table_name_34 (round INTEGER, nationality VARCHAR, player VARCHAR)
###question:Which Pick has a Nationality of canada, and a Round of 5?###answer:SELECT pick FROM table_name_98 WHERE nationality = "canada" AND round = 5###context:CREATE TABLE table_name_98 (pick VARCHAR, nationality VARCHAR, round VARCHAR)
###question:Which Club Team has a Position of (d), a Nationality of canada, and a Player of andrew macwilliam?###answer:SELECT club_team FROM table_name_7 WHERE position = "(d)" AND nationality = "canada" AND player = "andrew macwilliam"###context:CREATE TABLE table_name_7 (club_team VARCHAR, player VARCHAR, position V...
###question:How much money did jodie mudd get?###answer:SELECT money___$__ FROM table_name_1 WHERE player = "jodie mudd"###context:CREATE TABLE table_name_1 (money___$__ VARCHAR, player VARCHAR)
###question:What score did Australia get?###answer:SELECT score FROM table_name_85 WHERE country = "australia"###context:CREATE TABLE table_name_85 (score VARCHAR, country VARCHAR)
###question:What is the sort value that had deaths of 71?###answer:SELECT sort_restore FROM table_name_64 WHERE deaths = "71"###context:CREATE TABLE table_name_64 (sort_restore VARCHAR, deaths VARCHAR)
###question:Which month had a sort value under 39 and 2 deaths?###answer:SELECT month FROM table_name_73 WHERE sort_restore < 39 AND deaths = "2"###context:CREATE TABLE table_name_73 (month VARCHAR, sort_restore VARCHAR, deaths VARCHAR)
###question:What is the number of sort values associated with 389 births?###answer:SELECT COUNT(sort_restore) FROM table_name_27 WHERE births = "389"###context:CREATE TABLE table_name_27 (sort_restore VARCHAR, births VARCHAR)
###question:Who was the Manufacturer for the Rider Colin Edwards?###answer:SELECT manufacturer FROM table_name_1 WHERE rider = "colin edwards"###context:CREATE TABLE table_name_1 (manufacturer VARCHAR, rider VARCHAR)
###question:With a Grid less than 15, and a Time of +52.833, what is the highest number of Laps?###answer:SELECT MAX(laps) FROM table_name_86 WHERE grid < 15 AND time = "+52.833"###context:CREATE TABLE table_name_86 (laps INTEGER, grid VARCHAR, time VARCHAR)
###question:What is the average Grid for the Rider Toni Elias with Laps more than 30?###answer:SELECT AVG(grid) FROM table_name_62 WHERE rider = "toni elias" AND laps > 30###context:CREATE TABLE table_name_62 (grid INTEGER, rider VARCHAR, laps VARCHAR)
###question:With a Time of +1:37.055, which has the lowest Grid?###answer:SELECT MIN(grid) FROM table_name_84 WHERE time = "+1:37.055"###context:CREATE TABLE table_name_84 (grid INTEGER, time VARCHAR)
###question:Which Silver is the highest one that has a Rank of 19, and a Gold larger than 0?###answer:SELECT MAX(silver) FROM table_name_71 WHERE rank = "19" AND gold > 0###context:CREATE TABLE table_name_71 (silver INTEGER, rank VARCHAR, gold VARCHAR)
###question:Which Bronze is the highest one that has a Rank of 26, and a Total larger than 1?###answer:SELECT MAX(bronze) FROM table_name_48 WHERE rank = "26" AND total > 1###context:CREATE TABLE table_name_48 (bronze INTEGER, rank VARCHAR, total VARCHAR)
###question:Which Gold has a Nation of india, and a Bronze smaller than 0?###answer:SELECT AVG(gold) FROM table_name_84 WHERE nation = "india" AND bronze < 0###context:CREATE TABLE table_name_84 (gold INTEGER, nation VARCHAR, bronze VARCHAR)