training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_61 (mpg_us_urban INTEGER, mpg_uk_urban__cold_ VARCHAR, mpg_uk_extra_urban VARCHAR) ###human: What's the mpg-US urban when the mpg-UK urban is 20 and the mpg-UK extra urban is less than 37.2? ###assistant: SELECT SUM(mpg_us_urban) FROM table_name_61 WHERE mpg_uk_urban__cold_ = 20 AND mpg_uk_extra_urban < 37.2
###context:CREATE TABLE table_name_56 (score VARCHAR, assist_pass VARCHAR, date VARCHAR) ###human: What was the score on 2010-07-13 when Abby wambach had the assist/pass? ###assistant: SELECT score FROM table_name_56 WHERE assist_pass = "abby wambach" AND date = "2010-07-13"
###context:CREATE TABLE table_name_3 (location VARCHAR, lineup VARCHAR, date VARCHAR) ###human: What is the location on 2008-06-17 when the lineup was start? ###assistant: SELECT location FROM table_name_3 WHERE lineup = "start" AND date = "2008-06-17"
###context:CREATE TABLE table_name_54 (assist_pass VARCHAR, date VARCHAR, score VARCHAR) ###human: What is the assist/pass on 2008-01-16 when the score was 2-0? ###assistant: SELECT assist_pass FROM table_name_54 WHERE date = "2008-01-16" AND score = "2-0"
###context:CREATE TABLE table_name_98 (result VARCHAR, location VARCHAR) ###human: What is the result at match reports? ###assistant: SELECT result FROM table_name_98 WHERE location = "match reports"
###context:CREATE TABLE table_name_24 (points VARCHAR, goals_against VARCHAR) ###human: What's the points if the goals against were 222? ###assistant: SELECT points FROM table_name_24 WHERE goals_against = "222"
###context:CREATE TABLE table_name_95 (points VARCHAR, goals_against VARCHAR) ###human: What are the points if the goals against were 260? ###assistant: SELECT points FROM table_name_95 WHERE goals_against = "260"
###context:CREATE TABLE table_name_72 (games VARCHAR, standing VARCHAR) ###human: What are the games with an Involuntary suspension of Season (hurricane Rita)? ###assistant: SELECT games FROM table_name_72 WHERE standing = "involuntary suspension of season (hurricane rita)"
###context:CREATE TABLE table_name_44 (goals_for VARCHAR, lost VARCHAR) ###human: What are the goals for a lost of Involuntary suspension of Season (hurricane Rita)? ###assistant: SELECT goals_for FROM table_name_44 WHERE lost = "involuntary suspension of season (hurricane rita)"
###context:CREATE TABLE table_name_10 (season VARCHAR, games VARCHAR, lost VARCHAR) ###human: What's the season that had a lost of 9 with 72 games? ###assistant: SELECT season FROM table_name_10 WHERE games = "72" AND lost = "9"
###context:CREATE TABLE table_name_42 (format VARCHAR, location VARCHAR) ###human: What event did he compete in at Taipei? ###assistant: SELECT format FROM table_name_42 WHERE location = "taipei"
###context:CREATE TABLE table_name_81 (season VARCHAR, event_type VARCHAR, location VARCHAR) ###human: In what season did he compete in the Grand Prix in Kuala Lumpur? ###assistant: SELECT season FROM table_name_81 WHERE event_type = "grand prix" AND location = "kuala lumpur"
###context:CREATE TABLE table_name_82 (position VARCHAR, pick VARCHAR, team VARCHAR) ###human: What is the position of the player with a pick less than 3 from team san diego? ###assistant: SELECT position FROM table_name_82 WHERE pick < 3 AND team = "san diego"
###context:CREATE TABLE table_name_38 (location VARCHAR, silver VARCHAR, gold VARCHAR) ###human: What location did david mccann receive a siver and morgan fox win the gold? ###assistant: SELECT location FROM table_name_38 WHERE silver = "david mccann" AND gold = "morgan fox"
###context:CREATE TABLE table_name_71 (bronze VARCHAR, year VARCHAR) ###human: Who received the bronze in 2011? ###assistant: SELECT bronze FROM table_name_71 WHERE year = "2011"
###context:CREATE TABLE table_name_31 (silver VARCHAR, year VARCHAR) ###human: Who received the silver in 2006? ###assistant: SELECT silver FROM table_name_31 WHERE year = "2006"
###context:CREATE TABLE table_name_1 (obese_children_and_adolescents VARCHAR, obesity_rank VARCHAR) ###human: What's the count for obese children and adolescents ranked 48? ###assistant: SELECT obese_children_and_adolescents FROM table_name_1 WHERE obesity_rank = 48
###context:CREATE TABLE table_name_74 (obesity_rank INTEGER, obese_children_and_adolescents VARCHAR) ###human: What's the rank when the obese children and adolescent count is 14.2%? ###assistant: SELECT SUM(obesity_rank) FROM table_name_74 WHERE obese_children_and_adolescents = "14.2%"
###context:CREATE TABLE table_name_87 (obesity_rank VARCHAR, overweight__incl_obese__adults VARCHAR, state_and_district_of_columbia VARCHAR) ###human: What's the rank in West Virginia when the overweight adult was 66.8%? ###assistant: SELECT obesity_rank FROM table_name_87 WHERE overweight__incl_obese__adults = "66.8%" AND state_and_district_of_columbia = "west virginia"
###context:CREATE TABLE table_name_27 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR) ###human: What is reserved for Jawad? ###assistant: SELECT reserved_for___sc___st__none_ FROM table_name_27 WHERE name = "jawad"
###context:CREATE TABLE table_name_65 (reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR) ###human: What is reserved for the constituency of 228? ###assistant: SELECT reserved_for___sc___st__none_ FROM table_name_65 WHERE constituency_number = "228"
###context:CREATE TABLE table_name_68 (county VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR) ###human: Which County has an IHSAA Class of aaa, and an Enrollment smaller than 799? ###assistant: SELECT county FROM table_name_68 WHERE ihsaa_class = "aaa" AND enrollment < 799
###context:CREATE TABLE table_name_34 (location VARCHAR, mascot VARCHAR) ###human: Which Location has a Mascot of tigers? ###assistant: SELECT location FROM table_name_34 WHERE mascot = "tigers"
###context:CREATE TABLE table_name_77 (overall INTEGER, executive_appointments VARCHAR, background VARCHAR) ###human: What's the most overall when the executive appointments were 28 and the background was smaller than 37? ###assistant: SELECT MAX(overall) FROM table_name_77 WHERE executive_appointments = 28 AND background < 37
###context:CREATE TABLE table_name_77 (record VARCHAR, score VARCHAR) ###human: What was the record at the game with a score of 21-16? ###assistant: SELECT record FROM table_name_77 WHERE score = "21-16"
###context:CREATE TABLE table_name_91 (opponent VARCHAR, week VARCHAR, score VARCHAR) ###human: Who was the opponent at the game with a score of 42-28 after week 4? ###assistant: SELECT opponent FROM table_name_91 WHERE week > 4 AND score = "42-28"
###context:CREATE TABLE table_name_12 (result VARCHAR, opponent VARCHAR) ###human: what is the result when the opponent is at dallas cowboys? ###assistant: SELECT result FROM table_name_12 WHERE opponent = "at dallas cowboys"
###context:CREATE TABLE table_name_79 (enrollment INTEGER, year_joined VARCHAR, location VARCHAR) ###human: what is the enrollement for the year joined 1958 in clarksville? ###assistant: SELECT SUM(enrollment) FROM table_name_79 WHERE year_joined = 1958 AND location = "clarksville"
###context:CREATE TABLE table_name_13 (_number___county VARCHAR, mascot VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR) ###human: what is the #/county that is ihsaa class aaa, has enrollment higher than 611 and the dragons is the mascot? ###assistant: SELECT _number___county FROM table_name_13 WHERE ihsaa_class = "aaa" AND enrollment > 611 AND mascot = "dragons"
###context:CREATE TABLE table_name_98 (country_of_release VARCHAR, year_of_release VARCHAR) ###human: Where was the title released in 1977? ###assistant: SELECT country_of_release FROM table_name_98 WHERE year_of_release = 1977
###context:CREATE TABLE table_name_40 (year_of_release INTEGER, label VARCHAR) ###human: What was the last year MCA had a Release? ###assistant: SELECT MAX(year_of_release) FROM table_name_40 WHERE label = "mca"
###context:CREATE TABLE table_name_60 (pick INTEGER, team VARCHAR) ###human: What is the lowest pick for the Buffalo Bills? ###assistant: SELECT MIN(pick) FROM table_name_60 WHERE team = "buffalo bills"
###context:CREATE TABLE table_name_61 (player VARCHAR, team VARCHAR) ###human: Which player played for the Boston Patriots? ###assistant: SELECT player FROM table_name_61 WHERE team = "boston patriots"
###context:CREATE TABLE table_name_10 (attendance INTEGER, result VARCHAR, visitor VARCHAR) ###human: How much Attendance has a Result of 2–4, and a Visitor of brynäs if? ###assistant: SELECT SUM(attendance) FROM table_name_10 WHERE result = "2–4" AND visitor = "brynäs if"
###context:CREATE TABLE table_name_37 (result VARCHAR, round INTEGER) ###human: Which Result has a Round larger than 17? ###assistant: SELECT result FROM table_name_37 WHERE round > 17
###context:CREATE TABLE table_name_57 (electorate INTEGER, name VARCHAR, political_party VARCHAR, constituency VARCHAR) ###human: What is the smallest electorate for the Conservative party in South West Devon constituency, with over 2 conservatives and a name of Plymstock Radford? ###assistant: SELECT MIN(electorate) FROM table_name_57 WHERE political_party = "conservative" AND constituency = "south west devon" AND "conservative" > 2 AND name = "plymstock radford"
###context:CREATE TABLE table_name_66 (event VARCHAR, year VARCHAR, position VARCHAR) ###human: What event was in a year later than 2007 and in the 88th position? ###assistant: SELECT event FROM table_name_66 WHERE year > 2007 AND position = "88th"
###context:CREATE TABLE table_name_36 (notes VARCHAR, year VARCHAR) ###human: What are the notes for 2005? ###assistant: SELECT notes FROM table_name_36 WHERE year = 2005
###context:CREATE TABLE table_name_78 (owner VARCHAR, call_sign VARCHAR) ###human: Who is the owner of CKLF-FM? ###assistant: SELECT owner FROM table_name_78 WHERE call_sign = "cklf-fm"
###context:CREATE TABLE table_name_78 (frequency VARCHAR, format VARCHAR) ###human: What frequency is First Nations Community? ###assistant: SELECT frequency FROM table_name_78 WHERE format = "first nations community"
###context:CREATE TABLE table_name_84 (format VARCHAR, branding VARCHAR) ###human: What format is CBC Radio 2? ###assistant: SELECT format FROM table_name_84 WHERE branding = "cbc radio 2"
###context:CREATE TABLE table_name_72 (owner VARCHAR, call_sign VARCHAR) ###human: Who owns CKSB-8-FM? ###assistant: SELECT owner FROM table_name_72 WHERE call_sign = "cksb-8-fm"
###context:CREATE TABLE table_name_44 (format VARCHAR, branding VARCHAR) ###human: What format is Première Chaîne? ###assistant: SELECT format FROM table_name_44 WHERE branding = "première chaîne"
###context:CREATE TABLE table_name_92 (year INTEGER, result VARCHAR, nation VARCHAR, championship VARCHAR, event VARCHAR) ###human: What year was olympics, Canada and the Men's Eight Event ended with a silver medal? ###assistant: SELECT MAX(year) FROM table_name_92 WHERE championship = "olympics" AND event = "men's eight" AND nation = "canada" AND result = "silver"
###context:CREATE TABLE table_name_2 (event VARCHAR, year VARCHAR) ###human: What event was in 2006? ###assistant: SELECT event FROM table_name_2 WHERE year = 2006
###context:CREATE TABLE table_name_99 (championship VARCHAR, result VARCHAR, nation VARCHAR, year VARCHAR) ###human: What championship was in the USA after 1994, and resulted in 5th place? ###assistant: SELECT championship FROM table_name_99 WHERE nation = "usa" AND year > 1994 AND result = "5th"
###context:CREATE TABLE table_name_65 (year INTEGER, event VARCHAR, championship VARCHAR, nation VARCHAR, result VARCHAR) ###human: What year did Canada get a silver in the olympics in the Men's Coxless Pair event? ###assistant: SELECT MIN(year) FROM table_name_65 WHERE nation = "canada" AND result = "silver" AND championship = "olympics" AND event = "men's coxless pair"
###context:CREATE TABLE table_name_98 (location VARCHAR, school VARCHAR) ###human: Where is the lacrosse school located? ###assistant: SELECT location FROM table_name_98 WHERE school = "lacrosse"
###context:CREATE TABLE table_name_32 (ihsaa_class VARCHAR, mascot VARCHAR) ###human: Which IHSAA Class has a Mascot of tigers? ###assistant: SELECT ihsaa_class FROM table_name_32 WHERE mascot = "tigers"
###context:CREATE TABLE table_name_62 (location VARCHAR, enrollment INTEGER) ###human: Which Location has an Enrollment larger than 543? ###assistant: SELECT location FROM table_name_62 WHERE enrollment > 543
###context:CREATE TABLE table_name_16 (county VARCHAR, enrollment VARCHAR) ###human: Which County has an Enrollment of 297? ###assistant: SELECT county FROM table_name_16 WHERE enrollment = 297
###context:CREATE TABLE table_name_52 (school VARCHAR, enrollment VARCHAR, county VARCHAR) ###human: Which School has an Enrollment larger than 264, and a County of 46 la porte? ###assistant: SELECT school FROM table_name_52 WHERE enrollment > 264 AND county = "46 la porte"
###context:CREATE TABLE table_name_90 (silver INTEGER, gold VARCHAR, bronze VARCHAR) ###human: What is the number of silver medals when there are more than 1 gold, and more than 6 bronze? ###assistant: SELECT MIN(silver) FROM table_name_90 WHERE gold > 1 AND bronze > 6
###context:CREATE TABLE table_name_32 (total INTEGER, silver VARCHAR, nation VARCHAR) ###human: What is the total when the Yugoslavia number of silver won is more than 1? ###assistant: SELECT MAX(total) FROM table_name_32 WHERE silver > 1 AND nation = "yugoslavia"
###context:CREATE TABLE table_name_16 (attendance INTEGER, week INTEGER) ###human: What is the total attendance before week 1? ###assistant: SELECT SUM(attendance) FROM table_name_16 WHERE week < 1
###context:CREATE TABLE table_name_81 (release_date VARCHAR, title VARCHAR) ###human: When was sniffles and the bookworm released? ###assistant: SELECT release_date FROM table_name_81 WHERE title = "sniffles and the bookworm"
###context:CREATE TABLE table_name_54 (release_date VARCHAR, series VARCHAR, title VARCHAR) ###human: When was land of the midnight fun in the mm series released? ###assistant: SELECT release_date FROM table_name_54 WHERE series = "mm" AND title = "land of the midnight fun"
###context:CREATE TABLE table_name_53 (series VARCHAR, release_date VARCHAR, production_num VARCHAR) ###human: Which series had a release on 1939-07-15 with the 8863 production number? ###assistant: SELECT series FROM table_name_53 WHERE release_date = "1939-07-15" AND production_num = "8863"
###context:CREATE TABLE table_name_2 (director VARCHAR, title VARCHAR) ###human: Who directed hamateur night? ###assistant: SELECT director FROM table_name_2 WHERE title = "hamateur night"
###context:CREATE TABLE table_name_29 (release_date VARCHAR, production_num VARCHAR) ###human: When was Production Number 9105 released? ###assistant: SELECT release_date FROM table_name_29 WHERE production_num = "9105"
###context:CREATE TABLE table_name_8 (class VARCHAR, frequency VARCHAR) ###human: What Class has a Frequency of 90.1 FM? ###assistant: SELECT class FROM table_name_8 WHERE frequency = "90.1 fm"
###context:CREATE TABLE table_name_51 (recnet VARCHAR, frequency VARCHAR) ###human: What is listed for the RECNet that also has a Frequency of 91.1 FM? ###assistant: SELECT recnet FROM table_name_51 WHERE frequency = "91.1 fm"
###context:CREATE TABLE table_name_42 (class VARCHAR, identifier VARCHAR) ###human: What Class has the Identifier fo CBFX-FM-2? ###assistant: SELECT class FROM table_name_42 WHERE identifier = "cbfx-fm-2"
###context:CREATE TABLE table_name_51 (recnet VARCHAR, class VARCHAR, city_of_license VARCHAR) ###human: What is the RECNet with a Class of B and the City of License of Rouyn-Noranda? ###assistant: SELECT recnet FROM table_name_51 WHERE class = "b" AND city_of_license = "rouyn-noranda"
###context:CREATE TABLE table_name_21 (class VARCHAR, identifier VARCHAR) ###human: What Class has the Identifier of CBFX-FM-6? ###assistant: SELECT class FROM table_name_21 WHERE identifier = "cbfx-fm-6"
###context:CREATE TABLE table_name_53 (frequency VARCHAR, identifier VARCHAR) ###human: What Frequency has the Identifier of CBFX-FM-6? ###assistant: SELECT frequency FROM table_name_53 WHERE identifier = "cbfx-fm-6"
###context:CREATE TABLE table_name_23 (gold VARCHAR, silver VARCHAR, nation VARCHAR) ###human: What is the total number of gold with less than 1 silver, from Belgium? ###assistant: SELECT COUNT(gold) FROM table_name_23 WHERE silver < 1 AND nation = "belgium"
###context:CREATE TABLE table_name_89 (lost INTEGER, drawn VARCHAR, points VARCHAR, name VARCHAR) ###human: Which Lost has Points smaller than 15, and a Name of sc forst, and Drawn smaller than 0? ###assistant: SELECT AVG(lost) FROM table_name_89 WHERE points < 15 AND name = "sc forst" AND drawn < 0
###context:CREATE TABLE table_name_78 (position INTEGER, lost VARCHAR, played VARCHAR) ###human: How much Position has a Lost of 8, and a Played larger than 14? ###assistant: SELECT SUM(position) FROM table_name_78 WHERE lost = 8 AND played > 14
###context:CREATE TABLE table_name_80 (drawn INTEGER, lost VARCHAR, points VARCHAR) ###human: Which Drawn has a Lost larger than 8, and Points smaller than 7? ###assistant: SELECT SUM(drawn) FROM table_name_80 WHERE lost > 8 AND points < 7
###context:CREATE TABLE table_name_13 (drawn VARCHAR, name VARCHAR, points VARCHAR) ###human: How much Drawn has a Name of erc lechbruck, and Points smaller than 17? ###assistant: SELECT COUNT(drawn) FROM table_name_13 WHERE name = "erc lechbruck" AND points < 17
###context:CREATE TABLE table_name_81 (town VARCHAR, population_rank VARCHAR, municipality VARCHAR, population__2001_ VARCHAR) ###human: What town is from the molėtai district municipality and has a population rank of 187 and a population less than 470 in 2001? ###assistant: SELECT town FROM table_name_81 WHERE municipality = "molėtai district municipality" AND population__2001_ < 470 AND population_rank = 187
###context:CREATE TABLE table_name_78 (county VARCHAR, population_rank VARCHAR) ###human: What county is the town with a rank of 205 located in? ###assistant: SELECT county FROM table_name_78 WHERE population_rank = 205
###context:CREATE TABLE table_name_95 (draw INTEGER, percentage VARCHAR) ###human: What is the fewest draws for percentages of 5.02%? ###assistant: SELECT MIN(draw) FROM table_name_95 WHERE percentage = "5.02%"
###context:CREATE TABLE table_name_28 (position VARCHAR, team VARCHAR) ###human: What is the position of the player from the denver broncos? ###assistant: SELECT position FROM table_name_28 WHERE team = "denver broncos"
###context:CREATE TABLE table_name_12 (pick INTEGER, team VARCHAR) ###human: What is the average pick of the kansas city chiefs? ###assistant: SELECT AVG(pick) FROM table_name_12 WHERE team = "kansas city chiefs"
###context:CREATE TABLE table_name_70 (pick VARCHAR, college VARCHAR) ###human: What is the pick of wiley college? ###assistant: SELECT pick FROM table_name_70 WHERE college = "wiley"
###context:CREATE TABLE table_name_53 (attendance VARCHAR, home_team VARCHAR) ###human: What was the attendance for the game with alfreton town as the home team? ###assistant: SELECT attendance FROM table_name_53 WHERE home_team = "alfreton town"
###context:CREATE TABLE table_name_92 (score VARCHAR, away_team VARCHAR) ###human: What was the score of the game where stafford rangers was the away team? ###assistant: SELECT score FROM table_name_92 WHERE away_team = "stafford rangers"
###context:CREATE TABLE table_name_29 (home_team VARCHAR, tie_no VARCHAR) ###human: Who was the home team that has a tie no of 1? ###assistant: SELECT home_team FROM table_name_29 WHERE tie_no = "1"
###context:CREATE TABLE table_name_28 (tie_no VARCHAR, away_team VARCHAR) ###human: What is the tie no that has southport as the away team? ###assistant: SELECT tie_no FROM table_name_28 WHERE away_team = "southport"
###context:CREATE TABLE table_name_53 (attendance VARCHAR, home_team VARCHAR) ###human: What was the attendance for the game that had the king's lynn as the home team? ###assistant: SELECT attendance FROM table_name_53 WHERE home_team = "king's lynn"
###context:CREATE TABLE table_name_56 (score VARCHAR, tie_no VARCHAR) ###human: What was the score for the game with a tie no of 1? ###assistant: SELECT score FROM table_name_56 WHERE tie_no = "1"
###context:CREATE TABLE table_name_53 (game VARCHAR, date VARCHAR) ###human: What is the game number on December 21? ###assistant: SELECT COUNT(game) FROM table_name_53 WHERE date = "december 21"
###context:CREATE TABLE table_name_71 (game VARCHAR, record VARCHAR) ###human: What is the Game with a Record of 19-15? ###assistant: SELECT game FROM table_name_71 WHERE record = "19-15"
###context:CREATE TABLE table_name_59 (date VARCHAR, game VARCHAR, opponent VARCHAR) ###human: What is the Date of the game against Detroit in game 31 or after? ###assistant: SELECT date FROM table_name_59 WHERE game > 31 AND opponent = "detroit"
###context:CREATE TABLE table_name_42 (year_s__won VARCHAR, total VARCHAR) ###human: During which years did the golfer with the total of 289 win? ###assistant: SELECT year_s__won FROM table_name_42 WHERE total = 289
###context:CREATE TABLE table_name_84 (to_par VARCHAR, finish VARCHAR) ###human: What was the To par for the player who finished t56? ###assistant: SELECT to_par FROM table_name_84 WHERE finish = "t56"
###context:CREATE TABLE table_name_53 (country VARCHAR, total VARCHAR) ###human: Which county did the player with a total of 294 represent? ###assistant: SELECT country FROM table_name_53 WHERE total = 294
###context:CREATE TABLE table_name_72 (total INTEGER, country VARCHAR, player VARCHAR) ###human: What was the total for united states player phil mickelson? ###assistant: SELECT MIN(total) FROM table_name_72 WHERE country = "united states" AND player = "phil mickelson"
###context:CREATE TABLE table_name_52 (lane INTEGER, rank VARCHAR, time VARCHAR) ###human: With a less than 4 rank, and a time less than 24.42 what is the smallest lane? ###assistant: SELECT MIN(lane) FROM table_name_52 WHERE rank < 4 AND time < 24.42
###context:CREATE TABLE table_name_8 (time INTEGER, nationality VARCHAR, lane VARCHAR) ###human: The swimmer from the United States in a lane less than 5, had what as the average time? ###assistant: SELECT AVG(time) FROM table_name_8 WHERE nationality = "united states" AND lane < 5
###context:CREATE TABLE table_name_3 (nationality VARCHAR, lane INTEGER) ###human: What nationality is the swimmer that is in the lane that is less than 2? ###assistant: SELECT nationality FROM table_name_3 WHERE lane < 2
###context:CREATE TABLE table_name_15 (losses INTEGER, draws INTEGER) ###human: Which Losses have Draws smaller than 0? ###assistant: SELECT MAX(losses) FROM table_name_15 WHERE draws < 0
###context:CREATE TABLE table_name_28 (losses INTEGER, draws INTEGER) ###human: Which Losses have Draws larger than 0? ###assistant: SELECT MAX(losses) FROM table_name_28 WHERE draws > 0
###context:CREATE TABLE table_name_66 (against INTEGER, losses VARCHAR, wimmera_fl VARCHAR) ###human: How much Against has Losses smaller than 7, and a Wimmera FL of horsham? ###assistant: SELECT SUM(against) FROM table_name_66 WHERE losses < 7 AND wimmera_fl = "horsham"
###context:CREATE TABLE table_name_83 (draws INTEGER, losses VARCHAR, wins VARCHAR, wimmera_fl VARCHAR) ###human: How many Draws have Wins larger than 7, and a Wimmera FL of nhill, and Losses larger than 8? ###assistant: SELECT SUM(draws) FROM table_name_83 WHERE wins > 7 AND wimmera_fl = "nhill" AND losses > 8
###context:CREATE TABLE table_name_52 (outcome VARCHAR, score VARCHAR) ###human: What was the outcome of the match with a score of 3-6, 2-6? ###assistant: SELECT outcome FROM table_name_52 WHERE score = "3-6, 2-6"
###context:CREATE TABLE table_name_70 (tournament VARCHAR, opponent VARCHAR) ###human: What was the tournament that had byron black playing against magnus larsson? ###assistant: SELECT tournament FROM table_name_70 WHERE opponent = "magnus larsson"
###context:CREATE TABLE table_name_35 (tournament VARCHAR, score VARCHAR) ###human: What tournament had a game with a score of 6-7, 4-6? ###assistant: SELECT tournament FROM table_name_35 WHERE score = "6-7, 4-6"