text
stringlengths
114
1.06k
### question: Who had the statistic of most assists? ### answer: SELECT name FROM table_name_93 WHERE statistic = "most assists" ### context: CREATE TABLE table_name_93 (name VARCHAR, statistic VARCHAR)
### question: What is Swimmer, when Year is less than 2011, and when Time is "53.06"? ### answer: SELECT swimmer FROM table_name_64 WHERE year < 2011 AND time = "53.06" ### context: CREATE TABLE table_name_64 (swimmer VARCHAR, year VARCHAR, time VARCHAR)
### question: What is School, when Event is "100 Backstroke"? ### answer: SELECT school FROM table_name_17 WHERE event = "100 backstroke" ### context: CREATE TABLE table_name_17 (school VARCHAR, event VARCHAR)
### question: What is School, when Year is less than 2013, and when Event is "100 Breaststroke"? ### answer: SELECT school FROM table_name_65 WHERE year < 2013 AND event = "100 breaststroke" ### context: CREATE TABLE table_name_65 (school VARCHAR, year VARCHAR, event VARCHAR)
### question: What is Time, when Year is greater than 2011, and when Event is "800 Freestyle Relay"? ### answer: SELECT time FROM table_name_98 WHERE year > 2011 AND event = "800 freestyle relay" ### context: CREATE TABLE table_name_98 (time VARCHAR, year VARCHAR, event VARCHAR)
### question: What is Year, when Time is "1:47.55"? ### answer: SELECT year FROM table_name_37 WHERE time = "1:47.55" ### context: CREATE TABLE table_name_37 (year VARCHAR, time VARCHAR)
### question: What is the Surface of the match against Yaroslava Shvedova? ### answer: SELECT surface FROM table_name_46 WHERE opponent_in_the_final = "yaroslava shvedova" ### context: CREATE TABLE table_name_46 (surface VARCHAR, opponent_in_the_final VARCHAR)
### question: What is the Surface of the match with a Score in the final of 5–7, 6–7 (2–7)? ### answer: SELECT surface FROM table_name_86 WHERE score_in_the_final = "5–7, 6–7 (2–7)" ### context: CREATE TABLE table_name_86 (surface VARCHAR, score_in_the_final VARCHAR)
### question: Who is the Opponent in the final of the match played on Clay Surface with a Score in the final of 4–6, 3–6? ### answer: SELECT opponent_in_the_final FROM table_name_9 WHERE surface = "clay" AND score_in_the_final = "4–6, 3–6" ### context: CREATE TABLE table_name_9 (opponent_in_the_final VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)
### question: On what Date is the match played on Clay Surface with a Score in the final of 6–2, 7–5? ### answer: SELECT date FROM table_name_32 WHERE surface = "clay" AND score_in_the_final = "6–2, 7–5" ### context: CREATE TABLE table_name_32 (date VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)
### question: WHAT IS THE NHL TEAM OF FINLAND? ### answer: SELECT nhl_team FROM table_name_71 WHERE nationality = "finland" ### context: CREATE TABLE table_name_71 (nhl_team VARCHAR, nationality VARCHAR)
### question: What's the to Iran with fewer than 9 survivors, more than 3 damaged, and an ussr an-26 aircraft? ### answer: SELECT AVG(to_iran) FROM table_name_9 WHERE survived < 9 AND aircraft = "ussr an-26" AND damaged > 3 ### context: CREATE TABLE table_name_9 (to_iran INTEGER, damaged VARCHAR, survived VARCHAR, aircraft VARCHAR)
### question: What's the average destroyed with a 1990 over 12, more than 1 damaged, 6 survivors, and a to Iran less than 4? ### answer: SELECT AVG(destroyed) FROM table_name_17 WHERE 1990 > 12 AND damaged > 1 AND to_iran < 4 AND survived = 6 ### context: CREATE TABLE table_name_17 (destroyed INTEGER, survived VARCHAR, to_iran VARCHAR, damaged VARCHAR)
### question: What's the average survived with a to Iran less than 1, more than 1 destroyed, and a brazil tucano aircraft? ### answer: SELECT AVG(survived) FROM table_name_53 WHERE to_iran < 1 AND aircraft = "brazil tucano" AND destroyed > 1 ### context: CREATE TABLE table_name_53 (survived INTEGER, destroyed VARCHAR, to_iran VARCHAR, aircraft VARCHAR)
### question: What home team played when there was an attendance of 568? ### answer: SELECT home_team FROM table_name_53 WHERE attendance = "568" ### context: CREATE TABLE table_name_53 (home_team VARCHAR, attendance VARCHAR)
### question: What away team did Horsham play? ### answer: SELECT away_team FROM table_name_30 WHERE home_team = "horsham" ### context: CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR)
### question: What home team played Hinckley United? ### answer: SELECT home_team FROM table_name_30 WHERE away_team = "hinckley united" ### context: CREATE TABLE table_name_30 (home_team VARCHAR, away_team VARCHAR)
### question: How many points have an Engine of ferrari tipo 033 v6 tc, and a Year larger than 1987? ### answer: SELECT SUM(pts) FROM table_name_37 WHERE engine = "ferrari tipo 033 v6 tc" AND year > 1987 ### context: CREATE TABLE table_name_37 (pts INTEGER, engine VARCHAR, year VARCHAR)
### question: Which Team/Chassis has a Year larger than 1987? ### answer: SELECT team_chassis FROM table_name_46 WHERE year > 1987 ### context: CREATE TABLE table_name_46 (team_chassis VARCHAR, year INTEGER)
### question: How many points have an Engine of ferrari tipo 033 v6 tc, and a Year smaller than 1987? ### answer: SELECT MAX(pts) FROM table_name_90 WHERE engine = "ferrari tipo 033 v6 tc" AND year < 1987 ### context: CREATE TABLE table_name_90 (pts INTEGER, engine VARCHAR, year VARCHAR)
### question: Which Team/Chassis has less than 65 points? ### answer: SELECT team_chassis FROM table_name_66 WHERE pts < 65 ### context: CREATE TABLE table_name_66 (team_chassis VARCHAR, pts INTEGER)
### question: What is the score if the Tie no is 32? ### answer: SELECT score FROM table_name_99 WHERE tie_no = "32" ### context: CREATE TABLE table_name_99 (score VARCHAR, tie_no VARCHAR)
### question: What is the Tie no for Scunthorpe United? ### answer: SELECT tie_no FROM table_name_78 WHERE home_team = "scunthorpe united" ### context: CREATE TABLE table_name_78 (tie_no VARCHAR, home_team VARCHAR)
### question: Which home team played against Stoke City? ### answer: SELECT home_team FROM table_name_91 WHERE away_team = "stoke city" ### context: CREATE TABLE table_name_91 (home_team VARCHAR, away_team VARCHAR)
### question: Which away team has a Tie no of 14? ### answer: SELECT away_team FROM table_name_67 WHERE tie_no = "14" ### context: CREATE TABLE table_name_67 (away_team VARCHAR, tie_no VARCHAR)
### question: On what date does Watford have a Tie no of 2? ### answer: SELECT date FROM table_name_45 WHERE home_team = "watford" AND tie_no = "2" ### context: CREATE TABLE table_name_45 (date VARCHAR, home_team VARCHAR, tie_no VARCHAR)
### question: Which L1 Cache has an FSB speed of 800mhz and a clock speed of 1.2ghz? ### answer: SELECT l1_cache FROM table_name_35 WHERE fsb_speed = "800mhz" AND clock_speed = "1.2ghz" ### context: CREATE TABLE table_name_35 (l1_cache VARCHAR, fsb_speed VARCHAR, clock_speed VARCHAR)
### question: What is the score of Player Tom Kite? ### answer: SELECT score FROM table_name_17 WHERE player = "tom kite" ### context: CREATE TABLE table_name_17 (score VARCHAR, player VARCHAR)
### question: What is the To Par that has a 69-69-73=211 score? ### answer: SELECT to_par FROM table_name_35 WHERE score = 69 - 69 - 73 = 211 ### context: CREATE TABLE table_name_35 (to_par VARCHAR, score VARCHAR)
### question: What is the Top that has a 66-71-66=203 score and a place of t1? ### answer: SELECT to_par FROM table_name_23 WHERE place = "t1" AND score = 66 - 71 - 66 = 203 ### context: CREATE TABLE table_name_23 (to_par VARCHAR, place VARCHAR, score VARCHAR)
### question: What player has a To Par of +1 with a score of 71-67-73=211? ### answer: SELECT player FROM table_name_89 WHERE to_par = "+1" AND score = 71 - 67 - 73 = 211 ### context: CREATE TABLE table_name_89 (player VARCHAR, to_par VARCHAR, score VARCHAR)
### question: Which Player has a Score of 72-68-78-71=289? ### answer: SELECT player FROM table_name_91 WHERE score = 72 - 68 - 78 - 71 = 289 ### context: CREATE TABLE table_name_91 (player VARCHAR, score VARCHAR)
### question: What is the Place for the 66 Score? ### answer: SELECT place FROM table_name_33 WHERE score = 66 ### context: CREATE TABLE table_name_33 (place VARCHAR, score VARCHAR)
### question: What Country has a 67 score by Phil Mickelson? ### answer: SELECT country FROM table_name_89 WHERE score = 67 AND player = "phil mickelson" ### context: CREATE TABLE table_name_89 (country VARCHAR, score VARCHAR, player VARCHAR)
### question: When Cathi O'Malley was featured in Week 3, who was the cyber girl for Week 5? ### answer: SELECT week_5 FROM table_name_96 WHERE week_3 = "cathi o'malley" ### context: CREATE TABLE table_name_96 (week_5 VARCHAR, week_3 VARCHAR)
### question: When Star Zemba was featured in Week 3, who was the cyber girl for Week 2? ### answer: SELECT week_2 FROM table_name_11 WHERE week_3 = "star zemba" ### context: CREATE TABLE table_name_11 (week_2 VARCHAR, week_3 VARCHAR)
### question: When Heather Christensen was featured in Week 2, who was the cyber girl for Week 3? ### answer: SELECT week_3 FROM table_name_11 WHERE week_2 = "heather christensen" ### context: CREATE TABLE table_name_11 (week_3 VARCHAR, week_2 VARCHAR)
### question: When Audra Lynn was featured in Week 2, who was the cyber girl for Week 5? ### answer: SELECT week_5 FROM table_name_36 WHERE week_2 = "audra lynn" ### context: CREATE TABLE table_name_36 (week_5 VARCHAR, week_2 VARCHAR)
### question: What is Agg., when Team 1 is "Tirana"? ### answer: SELECT agg FROM table_name_48 WHERE team_1 = "tirana" ### context: CREATE TABLE table_name_48 (agg VARCHAR, team_1 VARCHAR)
### question: What is 2nd Leg, when Team 2 is "Dunaferr"? ### answer: SELECT 2 AS nd_leg FROM table_name_57 WHERE team_2 = "dunaferr" ### context: CREATE TABLE table_name_57 (team_2 VARCHAR)
### question: What is the elimination number for the time 13:43? ### answer: SELECT elimination FROM table_name_74 WHERE time = "13:43" ### context: CREATE TABLE table_name_74 (elimination VARCHAR, time VARCHAR)
### question: What Elimination number is listed againt Eliminated by Sonjay Dutt? ### answer: SELECT elimination FROM table_name_87 WHERE eliminated_by = "sonjay dutt" ### context: CREATE TABLE table_name_87 (elimination VARCHAR, eliminated_by VARCHAR)
### question: What Elimination number is listed againt Eliminated by Sonjay Dutt? ### answer: SELECT elimination FROM table_name_2 WHERE eliminated_by = "sonjay dutt" ### context: CREATE TABLE table_name_2 (elimination VARCHAR, eliminated_by VARCHAR)
### question: What time is listed against the Wrestler Jimmy Rave? ### answer: SELECT time FROM table_name_15 WHERE wrestler = "jimmy rave" ### context: CREATE TABLE table_name_15 (time VARCHAR, wrestler VARCHAR)
### question: Which Wrestler has an Elimination of 5? ### answer: SELECT wrestler FROM table_name_63 WHERE elimination = "5" ### context: CREATE TABLE table_name_63 (wrestler VARCHAR, elimination VARCHAR)
### question: What time is listed against Elimination number 2? ### answer: SELECT time FROM table_name_21 WHERE elimination = "2" ### context: CREATE TABLE table_name_21 (time VARCHAR, elimination VARCHAR)
### question: What score has 2 as the place? ### answer: SELECT score FROM table_name_78 WHERE place = "2" ### context: CREATE TABLE table_name_78 (score VARCHAR, place VARCHAR)
### question: What is the average money (£) that has +8 as the to par, with 73-72-72-71=288 as the score? ### answer: SELECT AVG(money___) AS £__ FROM table_name_8 WHERE to_par = "+8" AND score = 73 - 72 - 72 - 71 = 288 ### context: CREATE TABLE table_name_8 (money___ INTEGER, to_par VARCHAR, score VARCHAR)
### question: What country has t6 as the place, with seve ballesteros as the player? ### answer: SELECT country FROM table_name_2 WHERE place = "t6" AND player = "seve ballesteros" ### context: CREATE TABLE table_name_2 (country VARCHAR, place VARCHAR, player VARCHAR)
### question: What year weas John McEnroe the champion? ### answer: SELECT AVG(year) FROM table_name_64 WHERE champion = "john mcenroe" ### context: CREATE TABLE table_name_64 (year INTEGER, champion VARCHAR)
### question: Who was the runner-up, when the champion was Björn Borg after 1978? ### answer: SELECT runner_up FROM table_name_66 WHERE champion = "björn borg" AND year > 1978 ### context: CREATE TABLE table_name_66 (runner_up VARCHAR, champion VARCHAR, year VARCHAR)
### question: Who was the champion earlier than 1978 when the runner-up was Jimmy Connors? ### answer: SELECT champion FROM table_name_90 WHERE runner_up = "jimmy connors" AND year < 1978 ### context: CREATE TABLE table_name_90 (champion VARCHAR, runner_up VARCHAR, year VARCHAR)
### question: Which municipality has the code 2401? ### answer: SELECT municipality FROM table_name_84 WHERE code = 2401 ### context: CREATE TABLE table_name_84 (municipality VARCHAR, code VARCHAR)
### question: What is the population of Danderyd municipality in Stockholm County with a code lower than 162? ### answer: SELECT COUNT(population) FROM table_name_62 WHERE county = "stockholm county" AND municipality = "danderyd municipality" AND code < 162 ### context: CREATE TABLE table_name_62 (population VARCHAR, code VARCHAR, county VARCHAR, municipality VARCHAR)
### question: What is the total area for a code less than 1862 and a density (per km 2 land) of 21.6? ### answer: SELECT total_area FROM table_name_53 WHERE code < 1862 AND density__per_km_2_land_ = 21.6 ### context: CREATE TABLE table_name_53 (total_area VARCHAR, code VARCHAR, density__per_km_2_land_ VARCHAR)
### question: what total was the lowest and had a to par of e? ### answer: SELECT MIN(total) FROM table_name_45 WHERE to_par = "e" ### context: CREATE TABLE table_name_45 (total INTEGER, to_par VARCHAR)
### question: Which player played in the united states and scored a total of 144 points? ### answer: SELECT player FROM table_name_85 WHERE country = "united states" AND total = 144 ### context: CREATE TABLE table_name_85 (player VARCHAR, country VARCHAR, total VARCHAR)
### question: What is Trailing Party % Votes, when Party Won is "Bharatiya Janta Party", and when Trailing Party is "Indian National Congress"? ### answer: SELECT trailing_party % votes FROM table_name_74 WHERE party_won = "bharatiya janta party" AND trailing_party = "indian national congress" ### context: CREATE TABLE table_name_74 (trailing_party VARCHAR, votes VARCHAR, party_won VARCHAR)
### question: What is Members of Parliament, when Trailing Party is "Bharatiya Lok Dal"? ### answer: SELECT members_of_parliament FROM table_name_97 WHERE trailing_party = "bharatiya lok dal" ### context: CREATE TABLE table_name_97 (members_of_parliament VARCHAR, trailing_party VARCHAR)
### question: What is Trailing Party, when Party Won is "Janata Dal", and when Year is "1996"? ### answer: SELECT trailing_party FROM table_name_74 WHERE party_won = "janata dal" AND year = 1996 ### context: CREATE TABLE table_name_74 (trailing_party VARCHAR, party_won VARCHAR, year VARCHAR)
### question: What is the lowest Year, when Lok Sabha is "4th Lok Sabha"? ### answer: SELECT MIN(year) FROM table_name_53 WHERE lok_sabha = "4th lok sabha" ### context: CREATE TABLE table_name_53 (year INTEGER, lok_sabha VARCHAR)
### question: Who scored a 68? ### answer: SELECT player FROM table_name_96 WHERE score = 68 ### context: CREATE TABLE table_name_96 (player VARCHAR, score VARCHAR)
### question: How many Grid has a Rider of ryuichi kiyonari? ### answer: SELECT SUM(grid) FROM table_name_91 WHERE rider = "ryuichi kiyonari" ### context: CREATE TABLE table_name_91 (grid INTEGER, rider VARCHAR)
### question: Name the lowest Grid which has a Bike of ducati 1098 rs 08 and a Rider of max biaggi? ### answer: SELECT MIN(grid) FROM table_name_24 WHERE bike = "ducati 1098 rs 08" AND rider = "max biaggi" ### context: CREATE TABLE table_name_24 (grid INTEGER, bike VARCHAR, rider VARCHAR)
### question: Name the Rider which has a Time of +59.304? ### answer: SELECT rider FROM table_name_33 WHERE time = "+59.304" ### context: CREATE TABLE table_name_33 (rider VARCHAR, time VARCHAR)
### question: Name the Rider which has Laps smaller than 11 and a Bike of kawasaki zx-10r, and a Grid of 8? ### answer: SELECT rider FROM table_name_98 WHERE laps < 11 AND bike = "kawasaki zx-10r" AND grid = 8 ### context: CREATE TABLE table_name_98 (rider VARCHAR, grid VARCHAR, laps VARCHAR, bike VARCHAR)
### question: What is the total for player karrie webb? ### answer: SELECT COUNT(total) FROM table_name_1 WHERE player = "karrie webb" ### context: CREATE TABLE table_name_1 (total VARCHAR, player VARCHAR)
### question: What years did the player with a total larger than 157 have wins? ### answer: SELECT year_s__won FROM table_name_75 WHERE total > 157 ### context: CREATE TABLE table_name_75 (year_s__won VARCHAR, total INTEGER)
### question: What is the sum of the to par of player meg mallon, who had a total greater than 157? ### answer: SELECT SUM(to_par) FROM table_name_52 WHERE player = "meg mallon" AND total > 157 ### context: CREATE TABLE table_name_52 (to_par INTEGER, player VARCHAR, total VARCHAR)
### question: What is the highest total of the player with a 7 to par? ### answer: SELECT MAX(total) FROM table_name_71 WHERE to_par = 7 ### context: CREATE TABLE table_name_71 (total INTEGER, to_par VARCHAR)
### question: How many assists did Steve Walker have? ### answer: SELECT assists FROM table_name_4 WHERE player = "steve walker" ### context: CREATE TABLE table_name_4 (assists VARCHAR, player VARCHAR)
### question: How many goals did the player score who had 33 assists in 85 games? ### answer: SELECT goals FROM table_name_84 WHERE assists = "33" AND games = "85" ### context: CREATE TABLE table_name_84 (goals VARCHAR, assists VARCHAR, games VARCHAR)
### question: How many points did Denis Pederson have? ### answer: SELECT points FROM table_name_79 WHERE player = "denis pederson" ### context: CREATE TABLE table_name_79 (points VARCHAR, player VARCHAR)
### question: Which Xenon has a Helium of 5.1? ### answer: SELECT xenon FROM table_name_29 WHERE helium = "5.1" ### context: CREATE TABLE table_name_29 (xenon VARCHAR, helium VARCHAR)
### question: Which Neon has a Argon of −189.6? ### answer: SELECT neon FROM table_name_95 WHERE argon = "−189.6" ### context: CREATE TABLE table_name_95 (neon VARCHAR, argon VARCHAR)
### question: Which Physical property has a Helium of 0.0693? ### answer: SELECT physical_property FROM table_name_13 WHERE helium = "0.0693" ### context: CREATE TABLE table_name_13 (physical_property VARCHAR, helium VARCHAR)
### question: Name the Argon which has a Neon of 0.484? ### answer: SELECT argon FROM table_name_56 WHERE neon = "0.484" ### context: CREATE TABLE table_name_56 (argon VARCHAR, neon VARCHAR)
### question: Which Krypton has a Physical property of critical pressure (atm)? ### answer: SELECT krypton FROM table_name_36 WHERE physical_property = "critical pressure (atm)" ### context: CREATE TABLE table_name_36 (krypton VARCHAR, physical_property VARCHAR)
### question: which Helium has a Argon of −189.6? ### answer: SELECT helium FROM table_name_54 WHERE argon = "−189.6" ### context: CREATE TABLE table_name_54 (helium VARCHAR, argon VARCHAR)
### question: What is Venue, when Opposing Teams is "South Africa", and when Date is "17/06/2000"? ### answer: SELECT venue FROM table_name_46 WHERE opposing_teams = "south africa" AND date = "17/06/2000" ### context: CREATE TABLE table_name_46 (venue VARCHAR, opposing_teams VARCHAR, date VARCHAR)
### question: What is the sum of Against, when Opposing Teams is "South Africa", and when Status is "First Test"? ### answer: SELECT SUM(against) FROM table_name_11 WHERE opposing_teams = "south africa" AND status = "first test" ### context: CREATE TABLE table_name_11 (against INTEGER, opposing_teams VARCHAR, status VARCHAR)
### question: What is Opposing Teams, when Status is "Test Match", and when Date is "25/11/2000"? ### answer: SELECT opposing_teams FROM table_name_96 WHERE status = "test match" AND date = "25/11/2000" ### context: CREATE TABLE table_name_96 (opposing_teams VARCHAR, status VARCHAR, date VARCHAR)
### question: What is Against, when Venue is "Twickenham , London", and when Date is "04/03/2000"? ### answer: SELECT against FROM table_name_55 WHERE venue = "twickenham , london" AND date = "04/03/2000" ### context: CREATE TABLE table_name_55 (against VARCHAR, venue VARCHAR, date VARCHAR)
### question: What is the Statue, when Venue is "Stadio Flaminio , Rome"? ### answer: SELECT status FROM table_name_63 WHERE venue = "stadio flaminio , rome" ### context: CREATE TABLE table_name_63 (status VARCHAR, venue VARCHAR)
### question: What is the H/A of the game on 24 january 2009? ### answer: SELECT h___a FROM table_name_50 WHERE date = "24 january 2009" ### context: CREATE TABLE table_name_50 (h___a VARCHAR, date VARCHAR)
### question: What year was the rank final of 6? ### answer: SELECT year FROM table_name_90 WHERE rank_final = "6" ### context: CREATE TABLE table_name_90 (year VARCHAR, rank_final VARCHAR)
### question: What was the rank final before 2007? ### answer: SELECT rank_final FROM table_name_41 WHERE year < 2007 ### context: CREATE TABLE table_name_41 (rank_final VARCHAR, year INTEGER)
### question: What is District, when Incumbent is "Richard Neal"? ### answer: SELECT district FROM table_name_8 WHERE incumbent = "richard neal" ### context: CREATE TABLE table_name_8 (district VARCHAR, incumbent VARCHAR)
### question: What is the lowest First Elected, when District is "Massachusetts 10"? ### answer: SELECT MIN(first_elected) FROM table_name_40 WHERE district = "massachusetts 10" ### context: CREATE TABLE table_name_40 (first_elected INTEGER, district VARCHAR)
### question: What is the average First Elected, when District is "Massachusetts 3"? ### answer: SELECT AVG(first_elected) FROM table_name_49 WHERE district = "massachusetts 3" ### context: CREATE TABLE table_name_49 (first_elected INTEGER, district VARCHAR)
### question: What team lost with 30 tries against? ### answer: SELECT lost FROM table_name_35 WHERE tries_against = "30" ### context: CREATE TABLE table_name_35 (lost VARCHAR, tries_against VARCHAR)
### question: Who lost with 142 points for? ### answer: SELECT lost FROM table_name_73 WHERE points_for = "142" ### context: CREATE TABLE table_name_73 (lost VARCHAR, points_for VARCHAR)
### question: How many tries against for the team with 67 tries for? ### answer: SELECT tries_against FROM table_name_83 WHERE tries_for = "67" ### context: CREATE TABLE table_name_83 (tries_against VARCHAR, tries_for VARCHAR)
### question: Which club has 101 tries for? ### answer: SELECT club FROM table_name_79 WHERE tries_for = "101" ### context: CREATE TABLE table_name_79 (club VARCHAR, tries_for VARCHAR)
### question: What is the try bonus for the team with 67 tries for? ### answer: SELECT try_bonus FROM table_name_16 WHERE tries_for = "67" ### context: CREATE TABLE table_name_16 (try_bonus VARCHAR, tries_for VARCHAR)
### question: What is the team that lost with 77 tries against? ### answer: SELECT lost FROM table_name_5 WHERE tries_against = "77" ### context: CREATE TABLE table_name_5 (lost VARCHAR, tries_against VARCHAR)
### question: Which Fighting Spirit has a Name of tsurugamine, and a Technique smaller than 10? ### answer: SELECT AVG(fighting_spirit) FROM table_name_55 WHERE name = "tsurugamine" AND technique < 10 ### context: CREATE TABLE table_name_55 (fighting_spirit INTEGER, name VARCHAR, technique VARCHAR)
### question: How much Technique has the Highest rank of yokozuna, and a Total larger than 11? ### answer: SELECT COUNT(technique) FROM table_name_89 WHERE highest_rank = "yokozuna" AND total > 11 ### context: CREATE TABLE table_name_89 (technique VARCHAR, highest_rank VARCHAR, total VARCHAR)
### question: How much Fighting Spirit has a Total of 13, and a Technique smaller than 1? ### answer: SELECT SUM(fighting_spirit) FROM table_name_25 WHERE total = 13 AND technique < 1 ### context: CREATE TABLE table_name_25 (fighting_spirit INTEGER, total VARCHAR, technique VARCHAR)
### question: What are asashio's years? ### answer: SELECT years FROM table_name_31 WHERE name = "asashio" ### context: CREATE TABLE table_name_31 (years VARCHAR, name VARCHAR)