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