text
stringlengths
114
1.06k
### question: What is the Background of the contestant with a Result of 07 fired in task 6 (2009-04-05)? ### answer: SELECT background FROM table_name_20 WHERE result = "07 fired in task 6 (2009-04-05)" ### context: CREATE TABLE table_name_20 (background VARCHAR, result VARCHAR)
### question: What is the Original Team of the contestant from Wrightsville, Georgia ? ### answer: SELECT original_team FROM table_name_13 WHERE hometown = "wrightsville, georgia" ### context: CREATE TABLE table_name_13 (original_team VARCHAR, hometown VARCHAR)
### question: Which Attendance has an Opponent of carolina panthers? ### answer: SELECT attendance FROM table_name_27 WHERE opponent = "carolina panthers" ### context: CREATE TABLE table_name_27 (attendance VARCHAR, opponent VARCHAR)
### question: Which Date has a Week smaller than 11, and a Attendance of 54,094? ### answer: SELECT date FROM table_name_17 WHERE week < 11 AND attendance = "54,094" ### context: CREATE TABLE table_name_17 (date VARCHAR, week VARCHAR, attendance VARCHAR)
### question: What is the number of the episode titled 'Sugar Daddy'? ### answer: SELECT AVG(episode_number) FROM table_name_40 WHERE title = "sugar daddy" ### context: CREATE TABLE table_name_40 (episode_number INTEGER, title VARCHAR)
### question: Which nations have more than 1 gold medal and 4 silver medals? ### answer: SELECT nation FROM table_name_87 WHERE gold > 1 AND silver = 4 ### context: CREATE TABLE table_name_87 (nation VARCHAR, gold VARCHAR, silver VARCHAR)
### question: In Week 7, what is the highest attendance number? ### answer: SELECT MAX(attendance) FROM table_name_77 WHERE week = 7 ### context: CREATE TABLE table_name_77 (attendance INTEGER, week VARCHAR)
### question: In Week 13, who was the opponent? ### answer: SELECT opponent FROM table_name_98 WHERE week = 13 ### context: CREATE TABLE table_name_98 (opponent VARCHAR, week VARCHAR)
### question: What date did Week 9 begin? ### answer: SELECT date FROM table_name_27 WHERE week = 9 ### context: CREATE TABLE table_name_27 (date VARCHAR, week VARCHAR)
### question: Which award was given in 2012? ### answer: SELECT award FROM table_name_16 WHERE year = "2012" ### context: CREATE TABLE table_name_16 (award VARCHAR, year VARCHAR)
### question: Which award was given for the role of Elphaba in 2009? ### answer: SELECT award FROM table_name_92 WHERE role = "elphaba" AND year = "2009" ### context: CREATE TABLE table_name_92 (award VARCHAR, role VARCHAR, year VARCHAR)
### question: What was the result for the role of Ellie Greenwich in 2005? ### answer: SELECT result FROM table_name_73 WHERE role = "ellie greenwich" AND year = "2005" ### context: CREATE TABLE table_name_73 (result VARCHAR, role VARCHAR, year VARCHAR)
### question: Which award was An Officer and a Gentleman nominated for? ### answer: SELECT award FROM table_name_81 WHERE result = "nominated" AND production = "an officer and a gentleman" ### context: CREATE TABLE table_name_81 (award VARCHAR, result VARCHAR, production VARCHAR)
### question: During what year was Wicked associated with the Green Room Awards? ### answer: SELECT year FROM table_name_44 WHERE production = "wicked" AND award = "green room awards" ### context: CREATE TABLE table_name_44 (year VARCHAR, production VARCHAR, award VARCHAR)
### question: What manufacturer makes locomotive number CTN 46? ### answer: SELECT manufacturer FROM table_name_73 WHERE locomotive_number = "ctn 46" ### context: CREATE TABLE table_name_73 (manufacturer VARCHAR, locomotive_number VARCHAR)
### question: What type is locomotive number CTN 46? ### answer: SELECT type FROM table_name_26 WHERE locomotive_number = "ctn 46" ### context: CREATE TABLE table_name_26 (type VARCHAR, locomotive_number VARCHAR)
### question: What type is locomotive CTN 1364? ### answer: SELECT type FROM table_name_29 WHERE locomotive_number = "ctn 1364" ### context: CREATE TABLE table_name_29 (type VARCHAR, locomotive_number VARCHAR)
### question: What cuts made has a wins less than 3 and 23 for the events? ### answer: SELECT cuts_made FROM table_name_43 WHERE wins < 3 AND events = 23 ### context: CREATE TABLE table_name_43 (cuts_made VARCHAR, wins VARCHAR, events VARCHAR)
### question: What is the lowest events that have 17 as the cuts made, with a top-25 less than 8? ### answer: SELECT MIN(events) FROM table_name_14 WHERE cuts_made = 17 AND top_25 < 8 ### context: CREATE TABLE table_name_14 (events INTEGER, cuts_made VARCHAR, top_25 VARCHAR)
### question: What are the lowest cuts made that have events less than 4? ### answer: SELECT MIN(cuts_made) FROM table_name_84 WHERE events < 4 ### context: CREATE TABLE table_name_84 (cuts_made INTEGER, events INTEGER)
### question: What is the highest top-10 that has a u.s. open for the tournament, and a top-25 greater than 12? ### answer: SELECT MAX(top_10) FROM table_name_49 WHERE tournament = "u.s. open" AND top_25 > 12 ### context: CREATE TABLE table_name_49 (top_10 INTEGER, tournament VARCHAR, top_25 VARCHAR)
### question: How many points are there with more losses than 16, more goals than 44, and a smaller position than 13? ### answer: SELECT COUNT(points) FROM table_name_99 WHERE loses > 16 AND goals_scored > 44 AND position < 13 ### context: CREATE TABLE table_name_99 (points VARCHAR, position VARCHAR, loses VARCHAR, goa...
### question: What is the sum of the points with less goals conceded than 51, larger than position 1, has a draw of 7, and more losses than 5? ### answer: SELECT SUM(points) FROM table_name_12 WHERE goals_conceded < 51 AND position > 1 AND draws = 7 AND loses > 5 ### context: CREATE TABLE table_name_12 (points INTEGER,...
### question: Which has a Score of 6–1, 3–0 ret.? ### answer: SELECT surface FROM table_name_45 WHERE score = "6–1, 3–0 ret." ### context: CREATE TABLE table_name_45 (surface VARCHAR, score VARCHAR)
### question: Which Surface is on 23 january 2011? ### answer: SELECT surface FROM table_name_79 WHERE date = "23 january 2011" ### context: CREATE TABLE table_name_79 (surface VARCHAR, date VARCHAR)
### question: When has a Surface of hard, a Tournament of wrexham , great britain? ### answer: SELECT date FROM table_name_46 WHERE surface = "hard" AND tournament = "wrexham , great britain" ### context: CREATE TABLE table_name_46 (date VARCHAR, surface VARCHAR, tournament VARCHAR)
### question: Which Surface has an Opponent in the final of stéphane robert? ### answer: SELECT surface FROM table_name_96 WHERE opponent_in_the_final = "stéphane robert" ### context: CREATE TABLE table_name_96 (surface VARCHAR, opponent_in_the_final VARCHAR)
### question: What kind of Surface has a Score of 6–4, 0–6, 6–2? ### answer: SELECT surface FROM table_name_68 WHERE score = "6–4, 0–6, 6–2" ### context: CREATE TABLE table_name_68 (surface VARCHAR, score VARCHAR)
### question: Which Call sign has a Branding of cbc radio one? ### answer: SELECT call_sign FROM table_name_60 WHERE branding = "cbc radio one" ### context: CREATE TABLE table_name_60 (call_sign VARCHAR, branding VARCHAR)
### question: WHich Frequency has a Format of country / news / sports? ### answer: SELECT frequency FROM table_name_67 WHERE format = "country / news / sports" ### context: CREATE TABLE table_name_67 (frequency VARCHAR, format VARCHAR)
### question: Which Format has a Frequency of 100.5 fm? ### answer: SELECT format FROM table_name_98 WHERE frequency = "100.5 fm" ### context: CREATE TABLE table_name_98 (format VARCHAR, frequency VARCHAR)
### question: Which Frequency has a Branding of country 600? ### answer: SELECT frequency FROM table_name_26 WHERE branding = "country 600" ### context: CREATE TABLE table_name_26 (frequency VARCHAR, branding VARCHAR)
### question: WHich format has a Frequency of 99.3 fm? ### answer: SELECT format FROM table_name_30 WHERE frequency = "99.3 fm" ### context: CREATE TABLE table_name_30 (format VARCHAR, frequency VARCHAR)
### question: What School Year has a Class AAAA of Dickinson? ### answer: SELECT school_year FROM table_name_61 WHERE class_aAAA = dickinson ### context: CREATE TABLE table_name_61 (school_year VARCHAR, class_aAAA VARCHAR, dickinson VARCHAR)
### question: If the Class A is Anton and Class AAA is Burnet, what is Class AA? ### answer: SELECT class_aA FROM table_name_88 WHERE class_a = "anton" AND class_aAA = burnet ### context: CREATE TABLE table_name_88 (class_aA VARCHAR, class_a VARCHAR, class_aAA VARCHAR, burnet VARCHAR)
### question: Where Class AAA is Atlanta and Class AA is Weimar, what is Class AAAAA? ### answer: SELECT class_aAAAA FROM table_name_65 WHERE class_aAA = atlanta AND class_aA = weimar ### context: CREATE TABLE table_name_65 (class_aAAAA VARCHAR, class_aAA VARCHAR, atlanta VARCHAR, class_aA VARCHAR, weimar VARCHAR)
### question: What was the result of the game on week 11? ### answer: SELECT result FROM table_name_55 WHERE week = 11 ### context: CREATE TABLE table_name_55 (result VARCHAR, week VARCHAR)
### question: After week 2, how many people attended the game at Rich Stadium against the Miami Dolphins? ### answer: SELECT COUNT(attendance) FROM table_name_61 WHERE game_site = "rich stadium" AND opponent = "miami dolphins" AND week > 2 ### context: CREATE TABLE table_name_61 (attendance VARCHAR, week VARCHAR, game_...
### question: What is the attendance when the opponent is the San Francisco 49ers? ### answer: SELECT attendance FROM table_name_86 WHERE opponent = "san francisco 49ers" ### context: CREATE TABLE table_name_86 (attendance VARCHAR, opponent VARCHAR)
### question: What is the result when the week is greater than 6 and the Buffalo Bills are the opponent? ### answer: SELECT result FROM table_name_43 WHERE week > 6 AND opponent = "buffalo bills" ### context: CREATE TABLE table_name_43 (result VARCHAR, week VARCHAR, opponent VARCHAR)
### question: What is the result when the attendance is 54,814? ### answer: SELECT result FROM table_name_7 WHERE attendance = "54,814" ### context: CREATE TABLE table_name_7 (result VARCHAR, attendance VARCHAR)
### question: What is the total number of weeks when the New York Jets are the opponent? ### answer: SELECT COUNT(week) FROM table_name_35 WHERE opponent = "new york jets" ### context: CREATE TABLE table_name_35 (week VARCHAR, opponent VARCHAR)
### question: What is the result of the game when the attendance is 56,906? ### answer: SELECT result FROM table_name_38 WHERE attendance = "56,906" ### context: CREATE TABLE table_name_38 (result VARCHAR, attendance VARCHAR)
### question: What is Song's 会呼吸的痛 Index? ### answer: SELECT index FROM table_name_54 WHERE song = "会呼吸的痛" ### context: CREATE TABLE table_name_54 (index VARCHAR, song VARCHAR)
### question: What Song's Index is F6? ### answer: SELECT song FROM table_name_58 WHERE index = "f6" ### context: CREATE TABLE table_name_58 (song VARCHAR, index VARCHAR)
### question: What Group Song of Shine 王幸儿? ### answer: SELECT Group AS song FROM table_name_60 WHERE name = "shine 王幸儿" ### context: CREATE TABLE table_name_60 (Group VARCHAR, name VARCHAR)
### question: What is the Score of 我等的人会是谁? ### answer: SELECT score FROM table_name_78 WHERE song = "我等的人会是谁" ### context: CREATE TABLE table_name_78 (score VARCHAR, song VARCHAR)
### question: What is the Name of Index F3? ### answer: SELECT name FROM table_name_1 WHERE index = "f3" ### context: CREATE TABLE table_name_1 (name VARCHAR, index VARCHAR)
### question: What is the record after the game on Feb 10? ### answer: SELECT record FROM table_name_89 WHERE february = 10 ### context: CREATE TABLE table_name_89 (record VARCHAR, february VARCHAR)
### question: What is the earliest day that had a game against the Boston Bruins? ### answer: SELECT MIN(february) FROM table_name_90 WHERE opponent = "boston bruins" ### context: CREATE TABLE table_name_90 (february INTEGER, opponent VARCHAR)
### question: What is the sum of Solidat (c) that's purpose is display type, heavy duty jobs, and a hardness (brinell) is smaller than 33? ### answer: SELECT SUM(solidat__) AS °c_ FROM table_name_15 WHERE purpose = "display type, heavy duty jobs" AND hardness___brinell__ < 33 ### context: CREATE TABLE table_name_15 (so...
### question: When the Sn/Sb (%) of 13/17, and a Liquidat (c) bigger than 283 what's the solidat (c)? ### answer: SELECT SUM(solidat__) AS °c_ FROM table_name_46 WHERE sn_sb___percentage_ = "13/17" AND liquidat__°c_ > 283 ### context: CREATE TABLE table_name_46 (solidat__ INTEGER, sn_sb___percentage_ VARCHAR, liquidat_...
### question: How many Liquidat (c) have a purpose of dual (machine & hand composition)? ### answer: SELECT COUNT(liquidat__) AS °c_ FROM table_name_94 WHERE purpose = "dual (machine & hand composition)" ### context: CREATE TABLE table_name_94 (liquidat__ VARCHAR, purpose VARCHAR)
### question: What was the record for the Chargers on Week 10? ### answer: SELECT record FROM table_name_84 WHERE week = 10 ### context: CREATE TABLE table_name_84 (record VARCHAR, week VARCHAR)
### question: What was the result of the game on week 4? ### answer: SELECT result FROM table_name_16 WHERE week = 4 ### context: CREATE TABLE table_name_16 (result VARCHAR, week VARCHAR)
### question: How many weeks did a game happen on September 17, 2000? ### answer: SELECT COUNT(week) FROM table_name_57 WHERE date = "september 17, 2000" ### context: CREATE TABLE table_name_57 (week VARCHAR, date VARCHAR)
### question: What was the result of the game against San Francisco 49ers before week 16? ### answer: SELECT result FROM table_name_17 WHERE week < 16 AND opponent = "san francisco 49ers" ### context: CREATE TABLE table_name_17 (result VARCHAR, week VARCHAR, opponent VARCHAR)
### question: Who were semi-finalists in the event with a runner-up of Lisa Raymond? ### answer: SELECT semi_finalists FROM table_name_3 WHERE runner_up = "lisa raymond" ### context: CREATE TABLE table_name_3 (semi_finalists VARCHAR, runner_up VARCHAR)
### question: Which song by David Essex spent 2 weeks on top of the charts? ### answer: SELECT song FROM table_name_1 WHERE weeks_on_top = 2 AND artist = "david essex" ### context: CREATE TABLE table_name_1 (song VARCHAR, weeks_on_top VARCHAR, artist VARCHAR)
### question: What is the Volume:Issue number of the George McCrae song that spent less than 2 weeks on top of the charts? ### answer: SELECT volume AS :issue FROM table_name_96 WHERE weeks_on_top < 2 AND artist = "george mccrae" ### context: CREATE TABLE table_name_96 (volume VARCHAR, weeks_on_top VARCHAR, artist VARC...
### question: Which venues closed in the 1990s? ### answer: SELECT venue FROM table_name_76 WHERE closed = "1990s" ### context: CREATE TABLE table_name_76 (venue VARCHAR, closed VARCHAR)
### question: Which venues were closed because they were replaced? ### answer: SELECT location FROM table_name_5 WHERE reason = "replaced" ### context: CREATE TABLE table_name_5 (location VARCHAR, reason VARCHAR)
### question: Which venue closed in 1996? ### answer: SELECT venue FROM table_name_86 WHERE closed = "1996" ### context: CREATE TABLE table_name_86 (venue VARCHAR, closed VARCHAR)
### question: What were the reasons that venues closed in the 1990s? ### answer: SELECT reason FROM table_name_59 WHERE closed = "1990s" ### context: CREATE TABLE table_name_59 (reason VARCHAR, closed VARCHAR)
### question: Why did the Belk Gymnasium close? ### answer: SELECT reason FROM table_name_95 WHERE venue = "belk gymnasium" ### context: CREATE TABLE table_name_95 (reason VARCHAR, venue VARCHAR)
### question: Can you tell me the Score that has the Home team of townsville crocodiles? ### answer: SELECT score FROM table_name_24 WHERE home_team = "townsville crocodiles" ### context: CREATE TABLE table_name_24 (score VARCHAR, home_team VARCHAR)
### question: Can you tell me the Venue that has the Away team of south dragons? ### answer: SELECT venue FROM table_name_98 WHERE away_team = "south dragons" ### context: CREATE TABLE table_name_98 (venue VARCHAR, away_team VARCHAR)
### question: Can you tell me the lowest Crowd that has the Away team of melbourne tigers? ### answer: SELECT MIN(crowd) FROM table_name_24 WHERE away_team = "melbourne tigers" ### context: CREATE TABLE table_name_24 (crowd INTEGER, away_team VARCHAR)
### question: Can you tell me the Away team that has the Home team of south dragons, and the Score of 94-81? ### answer: SELECT away_team FROM table_name_17 WHERE home_team = "south dragons" AND score = "94-81" ### context: CREATE TABLE table_name_17 (away_team VARCHAR, home_team VARCHAR, score VARCHAR)
### question: Which position has a pick # of 238 and a round above 3? ### answer: SELECT position FROM table_name_45 WHERE round > 3 AND pick__number = 238 ### context: CREATE TABLE table_name_45 (position VARCHAR, round VARCHAR, pick__number VARCHAR)
### question: Which player went to Vanderbilt? ### answer: SELECT player FROM table_name_20 WHERE college = "vanderbilt" ### context: CREATE TABLE table_name_20 (player VARCHAR, college VARCHAR)
### question: How many grids had a Time/Retired of +4 laps? ### answer: SELECT COUNT(grid) FROM table_name_72 WHERE time_retired = "+4 laps" ### context: CREATE TABLE table_name_72 (grid VARCHAR, time_retired VARCHAR)
### question: How many laps had a constructor of toyota and a Time/Retired of +13.409? ### answer: SELECT COUNT(laps) FROM table_name_3 WHERE constructor = "toyota" AND time_retired = "+13.409" ### context: CREATE TABLE table_name_3 (laps VARCHAR, constructor VARCHAR, time_retired VARCHAR)
### question: What was the constructor when the laps were larger than 54, and the time/retired was +1 lap on a grid of 20? ### answer: SELECT constructor FROM table_name_28 WHERE laps > 54 AND time_retired = "+1 lap" AND grid = 20 ### context: CREATE TABLE table_name_28 (constructor VARCHAR, grid VARCHAR, laps VARCHAR,...
### question: How many grids had a constructor of renault and less than 4 laps? ### answer: SELECT SUM(grid) FROM table_name_35 WHERE constructor = "renault" AND laps < 4 ### context: CREATE TABLE table_name_35 (grid INTEGER, constructor VARCHAR, laps VARCHAR)
### question: Which census ranking is 57.06 km big? ### answer: SELECT census_ranking FROM table_name_95 WHERE area_km_2 = 57.06 ### context: CREATE TABLE table_name_95 (census_ranking VARCHAR, area_km_2 VARCHAR)
### question: Which status is 75.35 km2 and is named sussex? ### answer: SELECT status FROM table_name_20 WHERE area_km_2 < 75.35 AND official_name = "sussex" ### context: CREATE TABLE table_name_20 (status VARCHAR, area_km_2 VARCHAR, official_name VARCHAR)
### question: What was the distance for the winner or 2nd Waterline? ### answer: SELECT distance FROM table_name_21 WHERE winner_or_2nd = "waterline" ### context: CREATE TABLE table_name_21 (distance VARCHAR, winner_or_2nd VARCHAR)
### question: What is the result for the distance of 10f, and a winner or 2nd of Lampra? ### answer: SELECT result FROM table_name_30 WHERE distance = "10f" AND winner_or_2nd = "lampra" ### context: CREATE TABLE table_name_30 (result VARCHAR, distance VARCHAR, winner_or_2nd VARCHAR)
### question: What is 1987, when 1986 is "1R"? ### answer: SELECT 1987 FROM table_name_15 WHERE 1986 = "1r" ### context: CREATE TABLE table_name_15 (Id VARCHAR)
### question: What is 1986, when 1978 is "A", when 1979 is "A", and when 1980 is "1R"? ### answer: SELECT 1986 FROM table_name_99 WHERE 1978 = "a" AND 1979 = "a" AND 1980 = "1r" ### context: CREATE TABLE table_name_99 (Id VARCHAR)
### question: What is 1984, when 1979 is "1R"? ### answer: SELECT 1984 FROM table_name_94 WHERE 1979 = "1r" ### context: CREATE TABLE table_name_94 (Id VARCHAR)
### question: What is 1982, when 1978 is "A", when 1985 is "4R", and when 1991 is "1R"? ### answer: SELECT 1982 FROM table_name_64 WHERE 1978 = "a" AND 1985 = "4r" AND 1991 = "1r" ### context: CREATE TABLE table_name_64 (Id VARCHAR)
### question: What is 1989, when 1982 is "SF"? ### answer: SELECT 1989 FROM table_name_37 WHERE 1982 = "sf" ### context: CREATE TABLE table_name_37 (Id VARCHAR)
### question: What is 1992, when 1990 is "Grand Slams"? ### answer: SELECT 1992 FROM table_name_29 WHERE 1990 = "grand slams" ### context: CREATE TABLE table_name_29 (Id VARCHAR)
### question: What is the attendance date of the game home team Shrewsbury Town played? ### answer: SELECT attendance FROM table_name_48 WHERE home_team = "shrewsbury town" ### context: CREATE TABLE table_name_48 (attendance VARCHAR, home_team VARCHAR)
### question: What is the final score of the game home team Bolton Wanderers played? ### answer: SELECT score FROM table_name_66 WHERE home_team = "bolton wanderers" ### context: CREATE TABLE table_name_66 (score VARCHAR, home_team VARCHAR)
### question: Which round has an opponent of Freiburg? ### answer: SELECT round FROM table_name_39 WHERE opponent = "freiburg" ### context: CREATE TABLE table_name_39 (round VARCHAR, opponent VARCHAR)
### question: Who was the home when the opponent was slovan liberec? ### answer: SELECT home FROM table_name_44 WHERE opponent = "slovan liberec" ### context: CREATE TABLE table_name_44 (home VARCHAR, opponent VARCHAR)
### question: Which Game has a January larger than 18, and a Decision of valiquette? ### answer: SELECT MAX(game) FROM table_name_56 WHERE january > 18 AND decision = "valiquette" ### context: CREATE TABLE table_name_56 (game INTEGER, january VARCHAR, decision VARCHAR)
### question: Who has a Game smaller than 43, and a Record of 23-14-3? ### answer: SELECT opponent FROM table_name_37 WHERE game < 43 AND record = "23-14-3" ### context: CREATE TABLE table_name_37 (opponent VARCHAR, game VARCHAR, record VARCHAR)
### question: What is the time for qual 2 that has the best time of 59.266? ### answer: SELECT qual_2 FROM table_name_45 WHERE best = "59.266" ### context: CREATE TABLE table_name_45 (qual_2 VARCHAR, best VARCHAR)
### question: Who is the driver for the Forsythe Racing team that has the best time of 1:00.099? ### answer: SELECT name FROM table_name_42 WHERE team = "forsythe racing" AND best = "1:00.099" ### context: CREATE TABLE table_name_42 (name VARCHAR, team VARCHAR, best VARCHAR)
### question: Justin Wilson has what has his best time? ### answer: SELECT best FROM table_name_99 WHERE name = "justin wilson" ### context: CREATE TABLE table_name_99 (best VARCHAR, name VARCHAR)
### question: Team Rusport has the best of 59.654 and what qual 1? ### answer: SELECT qual_1 FROM table_name_15 WHERE team = "rusport" AND best = "59.654" ### context: CREATE TABLE table_name_15 (qual_1 VARCHAR, team VARCHAR, best VARCHAR)
### question: Sébastien Bourdais of the team Newman/Haas Racing has what qual 1? ### answer: SELECT qual_1 FROM table_name_32 WHERE team = "newman/haas racing" AND name = "sébastien bourdais" ### context: CREATE TABLE table_name_32 (qual_1 VARCHAR, team VARCHAR, name VARCHAR)
### question: What is Alex Tagliani's qual 1? ### answer: SELECT qual_1 FROM table_name_89 WHERE name = "alex tagliani" ### context: CREATE TABLE table_name_89 (qual_1 VARCHAR, name VARCHAR)
### question: Which Bask has Soft of 18, and a Total larger than 35? ### answer: SELECT AVG(bask) FROM table_name_17 WHERE soft = "18" AND total > 35 ### context: CREATE TABLE table_name_17 (bask INTEGER, soft VARCHAR, total VARCHAR)
### question: Which Volleyball has a Golf of 2, and an Indoor track of 3? ### answer: SELECT volleyball FROM table_name_52 WHERE golf = "2" AND indoor_track = "3" ### context: CREATE TABLE table_name_52 (volleyball VARCHAR, golf VARCHAR, indoor_track VARCHAR)
### question: Which Bask has an Indoor track of 0, and a Swimming of 5? ### answer: SELECT MIN(bask) FROM table_name_73 WHERE indoor_track = "0" AND swimming = "5" ### context: CREATE TABLE table_name_73 (bask INTEGER, indoor_track VARCHAR, swimming VARCHAR)