training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_65 (week_5 VARCHAR, week_2 VARCHAR) ###human: Who was the girl of the week 3 weeks after brianne bailey in the same month? ###assistant: SELECT week_5 FROM table_name_65 WHERE week_2 = "brianne bailey"
###context:CREATE TABLE table_name_47 (week_2 VARCHAR, week_4 VARCHAR) ###human: Who was the girl of the week 2 weeks before terri lynn farrow in the same month? ###assistant: SELECT week_2 FROM table_name_47 WHERE week_4 = "terri lynn farrow"
###context:CREATE TABLE table_name_13 (tries VARCHAR, points VARCHAR) ###human: How many tries did the player have which ended with 20 Points? ###assistant: SELECT tries FROM table_name_13 WHERE points = 20
###context:CREATE TABLE table_name_14 (points INTEGER, date VARCHAR, attendance VARCHAR) ###human: What is the average Points, when Date is "February 2", and when Attendance is less than 16,874? ###assistant: SELECT AVG(points) FROM table_name_14 WHERE date = "february 2" AND attendance < 16 OFFSET 874
###context:CREATE TABLE table_name_72 (attendance INTEGER, date VARCHAR, points VARCHAR) ###human: What is the lowest Attendance, when Date is "February 4", and when Points is less than 57? ###assistant: SELECT MIN(attendance) FROM table_name_72 WHERE date = "february 4" AND points < 57
###context:CREATE TABLE table_name_93 (years VARCHAR, total VARCHAR, sport VARCHAR) ###human: For a total of 1 and the sport of softball what were the years? ###assistant: SELECT years FROM table_name_93 WHERE total = "1" AND sport = "softball"
###context:CREATE TABLE table_name_39 (total VARCHAR, years VARCHAR) ###human: What was the total for the year of 1925? ###assistant: SELECT total FROM table_name_39 WHERE years = "1925"
###context:CREATE TABLE table_name_19 (label VARCHAR, format VARCHAR) ###human: Which label is in a limited edition cd/dvd format? ###assistant: SELECT label FROM table_name_19 WHERE format = "limited edition cd/dvd"
###context:CREATE TABLE table_name_88 (date VARCHAR, country VARCHAR, format VARCHAR) ###human: What is the date for the United Kingdom with an LP format? ###assistant: SELECT date FROM table_name_88 WHERE country = "united kingdom" AND format = "lp"
###context:CREATE TABLE table_name_37 (format VARCHAR, country VARCHAR) ###human: Which format is in Japan? ###assistant: SELECT format FROM table_name_37 WHERE country = "japan"
###context:CREATE TABLE table_name_70 (format VARCHAR, country VARCHAR, catalogue__number VARCHAR) ###human: What is the format of catalog number 886973273913 (gowow012) in the United Kingdom? ###assistant: SELECT format FROM table_name_70 WHERE country = "united kingdom" AND catalogue__number = "886973273913 (gowow012)"
###context:CREATE TABLE table_name_29 (apps INTEGER, rank VARCHAR, club VARCHAR, season VARCHAR) ###human: Which Apps have a Club of barcelona, and a Season of 1996/97, and a Rank smaller than 7? ###assistant: SELECT MIN(apps) FROM table_name_29 WHERE club = "barcelona" AND season = "1996/97" AND rank < 7
###context:CREATE TABLE table_name_7 (season VARCHAR, goals VARCHAR, club VARCHAR, rank VARCHAR) ###human: Which Season has a Club of real madrid, and a Rank smaller than 6, and less than 121 goals? ###assistant: SELECT season FROM table_name_7 WHERE club = "real madrid" AND rank < 6 AND goals < 121
###context:CREATE TABLE table_name_48 (apps INTEGER, rank VARCHAR, goals VARCHAR) ###human: How many Apps have a Rank larger than 2, and Goals smaller than 102? ###assistant: SELECT SUM(apps) FROM table_name_48 WHERE rank > 2 AND goals < 102
###context:CREATE TABLE table_name_61 (season VARCHAR, goals VARCHAR, rank VARCHAR, club VARCHAR) ###human: Which Season has a Rank smaller than 4, and a Club of barcelona, and less than 115 goals? ###assistant: SELECT season FROM table_name_61 WHERE rank < 4 AND club = "barcelona" AND goals < 115
###context:CREATE TABLE table_name_97 (player VARCHAR, total VARCHAR, country VARCHAR) ###human: What player has a 147 total from Spain? ###assistant: SELECT player FROM table_name_97 WHERE total = 147 AND country = "spain"
###context:CREATE TABLE table_name_58 (year_s__won VARCHAR, total VARCHAR) ###human: What year was the 146 total? ###assistant: SELECT year_s__won FROM table_name_58 WHERE total = 146
###context:CREATE TABLE table_name_39 (country VARCHAR, player VARCHAR) ###human: What country is Paul Lawrie from? ###assistant: SELECT country FROM table_name_39 WHERE player = "paul lawrie"
###context:CREATE TABLE table_name_50 (fuel VARCHAR, output VARCHAR) ###human: Which Fuel has an Output of ps (kw; hp) @6000 rpm? ###assistant: SELECT fuel FROM table_name_50 WHERE output = "ps (kw; hp) @6000 rpm"
###context:CREATE TABLE table_name_21 (torque VARCHAR, volume VARCHAR, co_2 VARCHAR) ###human: Which Torque has a Volume of 1896 cc, and a CO 2 of 140 g/km? ###assistant: SELECT torque FROM table_name_21 WHERE volume = "1896 cc" AND co_2 = "140 g/km"
###context:CREATE TABLE table_name_62 (venue VARCHAR, year VARCHAR, position VARCHAR) ###human: What Venue has a Year smaller than 1986, and a Position of 6th? ###assistant: SELECT venue FROM table_name_62 WHERE year < 1986 AND position = "6th"
###context:CREATE TABLE table_name_78 (position VARCHAR, time VARCHAR) ###human: What Position has a Time of 3:01.78? ###assistant: SELECT position FROM table_name_78 WHERE time = "3:01.78"
###context:CREATE TABLE table_name_77 (event VARCHAR, competition VARCHAR) ###human: What Event has a Competition of world championships? ###assistant: SELECT event FROM table_name_77 WHERE competition = "world championships"
###context:CREATE TABLE table_name_77 (time VARCHAR, year VARCHAR) ###human: What Time has a Year of 1984? ###assistant: SELECT time FROM table_name_77 WHERE year = 1984
###context:CREATE TABLE table_name_52 (competition VARCHAR, year INTEGER) ###human: What Competition has a Year smaller than 1983? ###assistant: SELECT competition FROM table_name_52 WHERE year < 1983
###context:CREATE TABLE table_name_78 (weight INTEGER, year VARCHAR, height VARCHAR) ###human: What is the Weight of the Senior Player with a Height of 6–10? ###assistant: SELECT SUM(weight) FROM table_name_78 WHERE year = "senior" AND height = "6–10"
###context:CREATE TABLE table_name_20 (year VARCHAR, weight VARCHAR, home_town VARCHAR) ###human: What is the Year of the Player with a Weight of 230 or less from San Antonio, Texas? ###assistant: SELECT year FROM table_name_20 WHERE weight < 230 AND home_town = "san antonio, texas"
###context:CREATE TABLE table_name_54 (height VARCHAR, weight VARCHAR, year VARCHAR, position VARCHAR) ###human: What is the Height of the Sophomore Guard weighing 185? ###assistant: SELECT height FROM table_name_54 WHERE year = "sophomore" AND position = "guard" AND weight = 185
###context:CREATE TABLE table_name_45 (year VARCHAR, weight VARCHAR) ###human: What is the Year of the Player weighing 185? ###assistant: SELECT year FROM table_name_45 WHERE weight = 185
###context:CREATE TABLE table_name_15 (club VARCHAR, location VARCHAR) ###human: Which club is located in Thomson, Victoria? ###assistant: SELECT club FROM table_name_15 WHERE location = "thomson, victoria"
###context:CREATE TABLE table_name_25 (nickname VARCHAR, years_in_gfl VARCHAR) ###human: What is the nickname of the team who was in the GFL from 1986-1988? ###assistant: SELECT nickname FROM table_name_25 WHERE years_in_gfl = "1986-1988"
###context:CREATE TABLE table_name_90 (location VARCHAR, nickname VARCHAR) ###human: Which location did the Tigers have? ###assistant: SELECT location FROM table_name_90 WHERE nickname = "tigers"
###context:CREATE TABLE table_name_59 (nickname VARCHAR, club VARCHAR) ###human: What was the nickname of the team in the Geelong West Cricket & Football Club? ###assistant: SELECT nickname FROM table_name_59 WHERE club = "geelong west cricket & football club"
###context:CREATE TABLE table_name_70 (gfl_premierships VARCHAR, nickname VARCHAR) ###human: What GLF Premiership did the Magpies have? ###assistant: SELECT gfl_premierships FROM table_name_70 WHERE nickname = "magpies"
###context:CREATE TABLE table_name_93 (nickname VARCHAR, club VARCHAR) ###human: What was the nickname of the team in the East Geelong club? ###assistant: SELECT nickname FROM table_name_93 WHERE club = "east geelong"
###context:CREATE TABLE table_name_6 (year_s__won VARCHAR, finish VARCHAR) ###human: What year has a winning finish of T27? ###assistant: SELECT year_s__won FROM table_name_6 WHERE finish = "t27"
###context:CREATE TABLE table_name_76 (finish VARCHAR, country VARCHAR) ###human: What was the finish for England? ###assistant: SELECT finish FROM table_name_76 WHERE country = "england"
###context:CREATE TABLE table_name_14 (country VARCHAR, year_s__won VARCHAR) ###human: What county won in 1991? ###assistant: SELECT country FROM table_name_14 WHERE year_s__won = "1991"
###context:CREATE TABLE table_name_40 (total INTEGER, to_par VARCHAR) ###human: What is the highest total to par of +9? ###assistant: SELECT MAX(total) FROM table_name_40 WHERE to_par = "+9"
###context:CREATE TABLE table_name_77 (status VARCHAR, against VARCHAR) ###human: What Status has Against of 12? ###assistant: SELECT status FROM table_name_77 WHERE against = 12
###context:CREATE TABLE table_name_46 (venue VARCHAR, date VARCHAR) ###human: What Venue has a Date of 17/03/1990? ###assistant: SELECT venue FROM table_name_46 WHERE date = "17/03/1990"
###context:CREATE TABLE table_name_30 (week VARCHAR, attendance VARCHAR) ###human: How many weeks had an Attendance of 43,272? ###assistant: SELECT COUNT(week) FROM table_name_30 WHERE attendance = "43,272"
###context:CREATE TABLE table_name_37 (opponent VARCHAR, date VARCHAR) ###human: Who played on december 12, 1993? ###assistant: SELECT opponent FROM table_name_37 WHERE date = "december 12, 1993"
###context:CREATE TABLE table_name_92 (date VARCHAR, opposing_team VARCHAR) ###human: What day was United States the opposing team? ###assistant: SELECT date FROM table_name_92 WHERE opposing_team = "united states"
###context:CREATE TABLE table_name_5 (opposing_team VARCHAR, status VARCHAR) ###human: What was the opposing team for the second test? ###assistant: SELECT opposing_team FROM table_name_5 WHERE status = "second test"
###context:CREATE TABLE table_name_30 (opposing_team VARCHAR, status VARCHAR) ###human: What was the opposing team for the second test? ###assistant: SELECT opposing_team FROM table_name_30 WHERE status = "second test"
###context:CREATE TABLE table_name_40 (round VARCHAR, venue VARCHAR) ###human: What round was in canberra stadium? ###assistant: SELECT round FROM table_name_40 WHERE venue = "canberra stadium"
###context:CREATE TABLE table_name_87 (venue VARCHAR, opponent VARCHAR) ###human: What is the venue of the match with cronulla sharks as the opponent? ###assistant: SELECT venue FROM table_name_87 WHERE opponent = "cronulla sharks"
###context:CREATE TABLE table_name_75 (opponent VARCHAR, venue VARCHAR) ###human: Who is the opponent at toyota stadium? ###assistant: SELECT opponent FROM table_name_75 WHERE venue = "toyota stadium"
###context:CREATE TABLE table_name_83 (score VARCHAR, opponent VARCHAR) ###human: What is the score of the match with the sydney roosters as the opponent? ###assistant: SELECT score FROM table_name_83 WHERE opponent = "sydney roosters"
###context:CREATE TABLE table_name_49 (venue VARCHAR, opponent VARCHAR) ###human: What is the venue of the match with the cronulla sharks as the opponent? ###assistant: SELECT venue FROM table_name_49 WHERE opponent = "cronulla sharks"
###context:CREATE TABLE table_name_9 (location_attendance VARCHAR, game VARCHAR) ###human: What Location Attendance has a Game of 4? ###assistant: SELECT location_attendance FROM table_name_9 WHERE game = "4"
###context:CREATE TABLE table_name_44 (date VARCHAR, location_attendance VARCHAR) ###human: What Date has a Location Attendance of reunion arena? ###assistant: SELECT date FROM table_name_44 WHERE location_attendance = "reunion arena"
###context:CREATE TABLE table_name_68 (record VARCHAR, location_attendance VARCHAR, opponent VARCHAR) ###human: What Record has a Location Attendance of delta center, and an Opponent of vs vancouver grizzlies? ###assistant: SELECT record FROM table_name_68 WHERE location_attendance = "delta center" AND opponent = "vs vancouver grizzlies"
###context:CREATE TABLE table_name_66 (location_attendance VARCHAR, opponent VARCHAR) ###human: What Location Attendance has an Opponent of at denver nuggets? ###assistant: SELECT location_attendance FROM table_name_66 WHERE opponent = "at denver nuggets"
###context:CREATE TABLE table_name_99 (record VARCHAR, opponent VARCHAR) ###human: What Record has an Opponent of vs washington wizards? ###assistant: SELECT record FROM table_name_99 WHERE opponent = "vs washington wizards"
###context:CREATE TABLE table_name_91 (location_attendance VARCHAR, game VARCHAR) ###human: What Location Attendance has a Game of 14? ###assistant: SELECT location_attendance FROM table_name_91 WHERE game = "14"
###context:CREATE TABLE table_name_86 (score_in_final VARCHAR, partnering VARCHAR, opponents_in_final VARCHAR) ###human: What was the final score of the game against shingo kunieda maikel scheffers when robin ammerlaan was Ronald Vink's partner? ###assistant: SELECT score_in_final FROM table_name_86 WHERE partnering = "robin ammerlaan" AND opponents_in_final = "shingo kunieda maikel scheffers"
###context:CREATE TABLE table_name_71 (championship VARCHAR, opponents_in_final VARCHAR, partnering VARCHAR, year VARCHAR) ###human: What championship tournament did Ronald Vink play in with maikel scheffers as his partner in 2007 against stephane houdet nicolas peiffer? ###assistant: SELECT championship FROM table_name_71 WHERE partnering = "maikel scheffers" AND year > 2007 AND opponents_in_final = "stephane houdet nicolas peiffer"
###context:CREATE TABLE table_name_8 (screen_size VARCHAR, bluetooth VARCHAR, model VARCHAR) ###human: What is the screen size of the s45 (Australia only) Model with no bluetooth? ###assistant: SELECT screen_size FROM table_name_8 WHERE bluetooth = "no" AND model = "s45 (australia only)"
###context:CREATE TABLE table_name_31 (bluetooth VARCHAR, model VARCHAR) ###human: Does the S90i model have bluetooth? ###assistant: SELECT bluetooth FROM table_name_31 WHERE model = "s90i"
###context:CREATE TABLE table_name_31 (bluetooth VARCHAR, model VARCHAR) ###human: Does the s35 model have bluetooth? ###assistant: SELECT bluetooth FROM table_name_31 WHERE model = "s35"
###context:CREATE TABLE table_name_49 (height VARCHAR, club VARCHAR) ###human: What is the height for club Havk Mladost? ###assistant: SELECT height FROM table_name_49 WHERE club = "havk mladost"
###context:CREATE TABLE table_name_45 (height VARCHAR, name VARCHAR) ###human: What is the height for Nikola Franković? ###assistant: SELECT height FROM table_name_45 WHERE name = "nikola franković"
###context:CREATE TABLE table_name_95 (weight VARCHAR, name VARCHAR) ###human: What is the weight of Damir Burić? ###assistant: SELECT weight FROM table_name_95 WHERE name = "damir burić"
###context:CREATE TABLE table_name_70 (total VARCHAR, rank_points VARCHAR, event VARCHAR) ###human: What is Total, when Rank Points is "15", and when Event is "WC Beijing"? ###assistant: SELECT total FROM table_name_70 WHERE rank_points = "15" AND event = "wc beijing"
###context:CREATE TABLE table_name_12 (score_points VARCHAR, event VARCHAR, rank_points VARCHAR) ###human: What is Score Points, when Event is "WC Rio De Janeiro", and when Rank Points is "10"? ###assistant: SELECT score_points FROM table_name_12 WHERE event = "wc rio de janeiro" AND rank_points = "10"
###context:CREATE TABLE table_name_51 (shooter VARCHAR, total VARCHAR) ###human: What is Shooter, when Total is "21"? ###assistant: SELECT shooter FROM table_name_51 WHERE total = "21"
###context:CREATE TABLE table_name_81 (score_points VARCHAR, shooter VARCHAR) ###human: What is Score Points, when Shooter is "Sandra Kolly ( SUI )"? ###assistant: SELECT score_points FROM table_name_81 WHERE shooter = "sandra kolly ( sui )"
###context:CREATE TABLE table_name_77 (rank_points VARCHAR, event VARCHAR, shooter VARCHAR) ###human: What is Rank Points, when Event is "WC Milan", and when Shooter is "Lalita Yauhleuskaya ( AUS )"? ###assistant: SELECT rank_points FROM table_name_77 WHERE event = "wc milan" AND shooter = "lalita yauhleuskaya ( aus )"
###context:CREATE TABLE table_name_12 (rank_points VARCHAR, total VARCHAR, shooter VARCHAR) ###human: What is Rank Points, when Total is "17", and when Shooter is "Lalita Yauhleuskaya ( AUS )"? ###assistant: SELECT rank_points FROM table_name_12 WHERE total = "17" AND shooter = "lalita yauhleuskaya ( aus )"
###context:CREATE TABLE table_name_32 (artist VARCHAR, week VARCHAR) ###human: Which Artist is listed as having Top 6 in Week ###assistant: SELECT artist FROM table_name_32 WHERE week = "top 6"
###context:CREATE TABLE table_name_17 (song_sung VARCHAR, artist VARCHAR, week VARCHAR) ###human: Which song was sung by Artist Luther Vandross in the Week Top 20? ###assistant: SELECT song_sung FROM table_name_17 WHERE artist = "luther vandross" AND week = "top 20"
###context:CREATE TABLE table_name_54 (artist VARCHAR, week VARCHAR) ###human: Which Artist has a Week of Top 12? ###assistant: SELECT artist FROM table_name_54 WHERE week = "top 12"
###context:CREATE TABLE table_name_32 (status VARCHAR, artist VARCHAR) ###human: What Status does Freddie Jackson have? ###assistant: SELECT status FROM table_name_32 WHERE artist = "freddie jackson"
###context:CREATE TABLE table_name_14 (song_sung VARCHAR, status VARCHAR) ###human: Which Song Sung has a Status of Eliminated? ###assistant: SELECT song_sung FROM table_name_14 WHERE status = "eliminated"
###context:CREATE TABLE table_name_95 (place VARCHAR, score VARCHAR) ###human: What is the place of the player with a 71-69-66=206 score? ###assistant: SELECT place FROM table_name_95 WHERE score = 71 - 69 - 66 = 206
###context:CREATE TABLE table_name_44 (place VARCHAR, score VARCHAR) ###human: What is the place of the player with a 71-66-64=201 score? ###assistant: SELECT place FROM table_name_44 WHERE score = 71 - 66 - 64 = 201
###context:CREATE TABLE table_name_91 (to_par VARCHAR, player VARCHAR) ###human: What is the to par of player peter senior? ###assistant: SELECT to_par FROM table_name_91 WHERE player = "peter senior"
###context:CREATE TABLE table_name_30 (finalist VARCHAR, year VARCHAR) ###human: What is Finalist, when Year is "2008"? ###assistant: SELECT finalist FROM table_name_30 WHERE year = 2008
###context:CREATE TABLE table_name_37 (place VARCHAR, year VARCHAR, champion VARCHAR) ###human: What is Place, when Year is greater than 2006, and when Champion is "Asvel"? ###assistant: SELECT place FROM table_name_37 WHERE year > 2006 AND champion = "asvel"
###context:CREATE TABLE table_name_71 (champion VARCHAR, year VARCHAR, finalist VARCHAR) ###human: What is Champion, when Year is greater than 2007, and when Finalist is "Asvel"? ###assistant: SELECT champion FROM table_name_71 WHERE year > 2007 AND finalist = "asvel"
###context:CREATE TABLE table_name_82 (election VARCHAR) ###human: What is 2nd Party, when Election is "1865"? ###assistant: SELECT 2 AS nd_party FROM table_name_82 WHERE election = "1865"
###context:CREATE TABLE table_name_95 (first_member VARCHAR, election VARCHAR) ###human: What is First Member, when Election is "1871 by-election"? ###assistant: SELECT first_member FROM table_name_95 WHERE election = "1871 by-election"
###context:CREATE TABLE table_name_18 (first_member VARCHAR, second_member VARCHAR) ###human: What is 1st Party, when First Member is "Peter John Locke King", and when Second Member is "James Watney"? ###assistant: SELECT 1 AS st_party FROM table_name_18 WHERE first_member = "peter john locke king" AND second_member = "james watney"
###context:CREATE TABLE table_name_99 (second_member VARCHAR, election VARCHAR) ###human: What is Second Member, when Election is "1835"? ###assistant: SELECT second_member FROM table_name_99 WHERE election = "1835"
###context:CREATE TABLE table_name_64 (played INTEGER, goals_against VARCHAR, goals_for VARCHAR) ###human: How much Played has Goals Against of 45, and Goals For smaller than 65? ###assistant: SELECT SUM(played) FROM table_name_64 WHERE goals_against = 45 AND goals_for < 65
###context:CREATE TABLE table_name_40 (goals_against VARCHAR, position VARCHAR) ###human: How many Goals Against have a Position of 4? ###assistant: SELECT COUNT(goals_against) FROM table_name_40 WHERE position = 4
###context:CREATE TABLE table_name_65 (total INTEGER, bronze VARCHAR, gold VARCHAR) ###human: What is the highest total when bronze is less than 1 and gold more than 0? ###assistant: SELECT MAX(total) FROM table_name_65 WHERE bronze < 1 AND gold > 0
###context:CREATE TABLE table_name_89 (bronze INTEGER, gold VARCHAR, rank VARCHAR, nation VARCHAR) ###human: what is the sum of bronze when the rank is 5, the nation is poland and gold is less than 0? ###assistant: SELECT SUM(bronze) FROM table_name_89 WHERE rank = 5 AND nation = "poland" AND gold < 0
###context:CREATE TABLE table_name_99 (silver INTEGER, bronze VARCHAR, rank VARCHAR, nation VARCHAR) ###human: what is the sum of silver when the rank is 3, nation is france and bronze is less than 0? ###assistant: SELECT SUM(silver) FROM table_name_99 WHERE rank = 3 AND nation = "france" AND bronze < 0
###context:CREATE TABLE table_name_4 (rank VARCHAR, nation VARCHAR, bronze VARCHAR) ###human: How many times is the nation china and bronze more than 0? ###assistant: SELECT COUNT(rank) FROM table_name_4 WHERE nation = "china" AND bronze > 0
###context:CREATE TABLE table_name_82 (gold VARCHAR, rank VARCHAR, bronze VARCHAR) ###human: How many times is the rank higher than 3 and bronze more than 1? ###assistant: SELECT COUNT(gold) FROM table_name_82 WHERE rank > 3 AND bronze > 1
###context:CREATE TABLE table_name_98 (silver INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR) ###human: what is the least silver when bronze is 1, rank is less than 2 and gold is more than 4? ###assistant: SELECT MIN(silver) FROM table_name_98 WHERE bronze = 1 AND rank < 2 AND gold > 4
###context:CREATE TABLE table_name_2 (draws INTEGER, against VARCHAR, byes VARCHAR) ###human: What is the average value for Draws, when Against is "2177", and when Byes is less than 4? ###assistant: SELECT AVG(draws) FROM table_name_2 WHERE against = 2177 AND byes < 4
###context:CREATE TABLE table_name_22 (losses VARCHAR, wins VARCHAR, against VARCHAR) ###human: What is the total number of Losses, when Wins is "16", and when Against is less than 772? ###assistant: SELECT COUNT(losses) FROM table_name_22 WHERE wins = 16 AND against < 772
###context:CREATE TABLE table_name_12 (draws INTEGER, losses VARCHAR, byes VARCHAR) ###human: What is the lowest value for Draws, when Losses is "0", and when Byes is greater than 4? ###assistant: SELECT MIN(draws) FROM table_name_12 WHERE losses = 0 AND byes > 4
###context:CREATE TABLE table_name_64 (byes INTEGER, against VARCHAR, wins VARCHAR, benalla_dfl VARCHAR) ###human: What is the highest value for Byes, when Wins is less than 16, when Benalla DFL is "Swanpool", and when Against is less than 2177? ###assistant: SELECT MAX(byes) FROM table_name_64 WHERE wins < 16 AND benalla_dfl = "swanpool" AND against < 2177
###context:CREATE TABLE table_name_61 (byes INTEGER, draws VARCHAR, against VARCHAR, losses VARCHAR) ###human: What is the highest value for Byes, when Against is less than 1794, when Losses is "6", and when Draws is less than 0? ###assistant: SELECT MAX(byes) FROM table_name_61 WHERE against < 1794 AND losses = 6 AND draws < 0
###context:CREATE TABLE table_name_89 (teams VARCHAR, season VARCHAR) ###human: what is the teams for season 1950-51? ###assistant: SELECT teams FROM table_name_89 WHERE season = "1950-51"