text stringlengths 114 1.06k |
|---|
### question: How many totals had more than 4 bronze? ### answer: SELECT SUM(total) FROM table_name_93 WHERE bronze > 4 ### context: CREATE TABLE table_name_93 (total INTEGER, bronze INTEGER) |
### question: What was Austria's lowest total when the gold was more than 3? ### answer: SELECT MIN(total) FROM table_name_84 WHERE nation = "austria" AND gold > 3 ### context: CREATE TABLE table_name_84 (total INTEGER, nation VARCHAR, gold VARCHAR) |
### question: What are the years won when the to par is +5? ### answer: SELECT year_s__won FROM table_name_76 WHERE to_par = "+5" ### context: CREATE TABLE table_name_76 (year_s__won VARCHAR, to_par VARCHAR) |
### question: What is the average total for Tiger Woods? ### answer: SELECT AVG(total) FROM table_name_26 WHERE player = "tiger woods" ### context: CREATE TABLE table_name_26 (total INTEGER, player VARCHAR) |
### question: Which country had a total of 295? ### answer: SELECT country FROM table_name_46 WHERE total = 295 ### context: CREATE TABLE table_name_46 (country VARCHAR, total VARCHAR) |
### question: What is the finish when the to par is +18? ### answer: SELECT finish FROM table_name_18 WHERE to_par = "+18" ### context: CREATE TABLE table_name_18 (finish VARCHAR, to_par VARCHAR) |
### question: How many total No Results occured when the team had less than 46 wins and more than 16 matches? ### answer: SELECT SUM(no_result) FROM table_name_63 WHERE matches > 16 AND wins < 46 ### context: CREATE TABLE table_name_63 (no_result INTEGER, matches VARCHAR, wins VARCHAR) |
### question: When the team had more than 46 wins, what were the average losses? ### answer: SELECT AVG(losses) FROM table_name_13 WHERE wins > 46 ### context: CREATE TABLE table_name_13 (losses INTEGER, wins INTEGER) |
### question: How many total No Results are recorded for less than 6 wins? ### answer: SELECT COUNT(no_result) FROM table_name_21 WHERE wins < 6 ### context: CREATE TABLE table_name_21 (no_result VARCHAR, wins INTEGER) |
### question: What Interview subject was on a Date that is 11-92? ### answer: SELECT interview_subject FROM table_name_42 WHERE date = "11-92" ### context: CREATE TABLE table_name_42 (interview_subject VARCHAR, date VARCHAR) |
### question: What is the lowest game number with Aris Thessaloniki with points smaller than 120? ### answer: SELECT MIN(games) FROM table_name_70 WHERE team = "aris thessaloniki" AND points < 120 ### context: CREATE TABLE table_name_70 (games INTEGER, team VARCHAR, points VARCHAR) |
### question: What is the game average that has a rank larger than 2 with team Olympiacos and points larger than 113? ### answer: SELECT AVG(games) FROM table_name_76 WHERE rank > 2 AND team = "olympiacos" AND points > 113 ### context: CREATE TABLE table_name_76 (games INTEGER, points VARCHAR, rank VARCHAR, team VARCHA... |
### question: Which result was there when the opponents were the Buffalo Bills? ### answer: SELECT result FROM table_name_14 WHERE opponent = "buffalo bills" ### context: CREATE TABLE table_name_14 (result VARCHAR, opponent VARCHAR) |
### question: What was the Purse ($) total for Iowa? ### answer: SELECT COUNT(purse__) AS $__ FROM table_name_88 WHERE location = "iowa" ### context: CREATE TABLE table_name_88 (purse__ VARCHAR, location VARCHAR) |
### question: When did the Score of 195 (-21) happen? ### answer: SELECT date FROM table_name_4 WHERE score = "195 (-21)" ### context: CREATE TABLE table_name_4 (date VARCHAR, score VARCHAR) |
### question: When did Scott Hoch (2) win? ### answer: SELECT date FROM table_name_78 WHERE winner = "scott hoch (2)" ### context: CREATE TABLE table_name_78 (date VARCHAR, winner VARCHAR) |
### question: What team placed second during the season where Western Australia placed fifth, South Australia placed sixth, and Tasmania placed fourth? ### answer: SELECT second FROM table_name_2 WHERE fifth = "western australia" AND sixth = "south australia" AND fourth = "tasmania" ### context: CREATE TABLE table_name... |
### question: What team placed sixth during the season where Western Australia placed fourth and Tasmania placed first? ### answer: SELECT sixth FROM table_name_91 WHERE fourth = "western australia" AND first = "tasmania" ### context: CREATE TABLE table_name_91 (sixth VARCHAR, fourth VARCHAR, first VARCHAR) |
### question: What team placed sixth during the season where Tasmania placed second and Western Australia placed fourth? ### answer: SELECT sixth FROM table_name_70 WHERE second = "tasmania" AND fourth = "western australia" ### context: CREATE TABLE table_name_70 (sixth VARCHAR, second VARCHAR, fourth VARCHAR) |
### question: What team placed fifth during the season where Victoria placed second, Tasmania placed first, and South Australia placed sixth? ### answer: SELECT fifth FROM table_name_96 WHERE second = "victoria" AND first = "tasmania" AND sixth = "south australia" ### context: CREATE TABLE table_name_96 (fifth VARCHAR,... |
### question: What is the smallest number of losses for a position greater than 2 with 4 points and more than 2 draws? ### answer: SELECT MIN(lost) FROM table_name_4 WHERE position > 2 AND points = 4 AND drawn > 2 ### context: CREATE TABLE table_name_4 (lost INTEGER, drawn VARCHAR, position VARCHAR, points VARCHAR) |
### question: How many points occurred with a difference of 2 for position less than 4? ### answer: SELECT COUNT(points) FROM table_name_90 WHERE difference = "2" AND position < 4 ### context: CREATE TABLE table_name_90 (points VARCHAR, difference VARCHAR, position VARCHAR) |
### question: What is the highest number of points for a position less than 3 and less than 1 loss? ### answer: SELECT MAX(points) FROM table_name_19 WHERE position < 3 AND lost < 1 ### context: CREATE TABLE table_name_19 (points INTEGER, position VARCHAR, lost VARCHAR) |
### question: When Estudiantes was team #2, what was their agg. value? ### answer: SELECT agg FROM table_name_28 WHERE team__number2 = "estudiantes" ### context: CREATE TABLE table_name_28 (agg VARCHAR, team__number2 VARCHAR) |
### question: Who played against TSV bayer 04 leverkusen when they were team #1? ### answer: SELECT 2 AS nd_leg FROM table_name_9 WHERE team__number1 = "tsv bayer 04 leverkusen" ### context: CREATE TABLE table_name_9 (team__number1 VARCHAR) |
### question: Who played against Hapoel tel aviv when they were team #1? ### answer: SELECT team__number2 FROM table_name_89 WHERE team__number1 = "hapoel tel aviv" ### context: CREATE TABLE table_name_89 (team__number2 VARCHAR, team__number1 VARCHAR) |
### question: What is the 2013 BAFA adult flag division in Aylesbury? ### answer: SELECT 2013 AS _bafa_adult_flag_division FROM table_name_95 WHERE location = "aylesbury" ### context: CREATE TABLE table_name_95 (location VARCHAR) |
### question: Records from Kontor Records from the catalog of Kontor446 was released in what format? ### answer: SELECT format FROM table_name_63 WHERE label = "kontor records" AND catalog = "kontor446" ### context: CREATE TABLE table_name_63 (format VARCHAR, label VARCHAR, catalog VARCHAR) |
### question: What date was the release that was Wrongun as the label? ### answer: SELECT date FROM table_name_66 WHERE label = "wrongun" ### context: CREATE TABLE table_name_66 (date VARCHAR, label VARCHAR) |
### question: Catalog Nebdj068 was released when? ### answer: SELECT date FROM table_name_26 WHERE catalog = "nebdj068" ### context: CREATE TABLE table_name_26 (date VARCHAR, catalog VARCHAR) |
### question: In what format was the release from the Nebt068 catalog on April 11, 2005 in? ### answer: SELECT format FROM table_name_62 WHERE date = "april 11, 2005" AND catalog = "nebt068" ### context: CREATE TABLE table_name_62 (format VARCHAR, date VARCHAR, catalog VARCHAR) |
### question: What region has the date of 2005 and Playground Music Scandinavia as a label? ### answer: SELECT region FROM table_name_16 WHERE date = "2005" AND label = "playground music scandinavia" ### context: CREATE TABLE table_name_16 (region VARCHAR, date VARCHAR, label VARCHAR) |
### question: What is the Result with a Venue that is filbert street? ### answer: SELECT result FROM table_name_16 WHERE venue = "filbert street" ### context: CREATE TABLE table_name_16 (result VARCHAR, venue VARCHAR) |
### question: When did the Texans play BYE? ### answer: SELECT date FROM table_name_8 WHERE opponent = "bye" ### context: CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR) |
### question: Who did the Texans play when there were 70,724 people in attendance? ### answer: SELECT opponent FROM table_name_11 WHERE attendance = "70,724" ### context: CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR) |
### question: Who has the status of jr synonym of protosialis casca? ### answer: SELECT novelty FROM table_name_75 WHERE status = "jr synonym of protosialis casca" ### context: CREATE TABLE table_name_75 (novelty VARCHAR, status VARCHAR) |
### question: Which writer is named mongolbittacus? ### answer: SELECT authors FROM table_name_62 WHERE name = "mongolbittacus" ### context: CREATE TABLE table_name_62 (authors VARCHAR, name VARCHAR) |
### question: What is the score of the game that had 359 people in attendance? ### answer: SELECT score FROM table_name_59 WHERE attendance = "359" ### context: CREATE TABLE table_name_59 (score VARCHAR, attendance VARCHAR) |
### question: What is the home team of the game that ended with a score of 0-1? ### answer: SELECT home_team FROM table_name_95 WHERE score = "0-1" ### context: CREATE TABLE table_name_95 (home_team VARCHAR, score VARCHAR) |
### question: How many people attended Match No. 31? ### answer: SELECT attendance FROM table_name_51 WHERE match_no = "31" ### context: CREATE TABLE table_name_51 (attendance VARCHAR, match_no VARCHAR) |
### question: Who is the Home Team for Match No. 23? ### answer: SELECT home_team FROM table_name_42 WHERE match_no = "23" ### context: CREATE TABLE table_name_42 (home_team VARCHAR, match_no VARCHAR) |
### question: What is the score of the game with 1,125 people in attendance? ### answer: SELECT score FROM table_name_37 WHERE attendance = "1,125" ### context: CREATE TABLE table_name_37 (score VARCHAR, attendance VARCHAR) |
### question: What is the Country with a Launched that is april 3, 1990? ### answer: SELECT country FROM table_name_70 WHERE launched = "april 3, 1990" ### context: CREATE TABLE table_name_70 (country VARCHAR, launched VARCHAR) |
### question: What is the Launched from a Country that is spain? ### answer: SELECT launched FROM table_name_45 WHERE country = "spain" ### context: CREATE TABLE table_name_45 (launched VARCHAR, country VARCHAR) |
### question: What is the lowest order with a Minister that is joe hockey? ### answer: SELECT MIN(order) FROM table_name_66 WHERE minister = "joe hockey" ### context: CREATE TABLE table_name_66 (order INTEGER, minister VARCHAR) |
### question: Which Years in Orlando has a Nationality of united states, and a Player of doug overton? ### answer: SELECT years_in_orlando FROM table_name_43 WHERE nationality = "united states" AND player = "doug overton" ### context: CREATE TABLE table_name_43 (years_in_orlando VARCHAR, nationality VARCHAR, player VAR... |
### question: Which Years in Orlando has a Nationality of united states, a Position of center, and a Player of jawann oldham? ### answer: SELECT years_in_orlando FROM table_name_10 WHERE nationality = "united states" AND position = "center" AND player = "jawann oldham" ### context: CREATE TABLE table_name_10 (years_in_... |
### question: Which Years in Orlando has a Player of bo outlaw? ### answer: SELECT years_in_orlando FROM table_name_54 WHERE player = "bo outlaw" ### context: CREATE TABLE table_name_54 (years_in_orlando VARCHAR, player VARCHAR) |
### question: Which Years in Orlando has a School/Club Team of seattle? ### answer: SELECT years_in_orlando FROM table_name_16 WHERE school_club_team = "seattle" ### context: CREATE TABLE table_name_16 (years_in_orlando VARCHAR, school_club_team VARCHAR) |
### question: Which Nationality has a Position of center, and a Years in Orlando of 2010–2012? ### answer: SELECT nationality FROM table_name_63 WHERE position = "center" AND years_in_orlando = "2010–2012" ### context: CREATE TABLE table_name_63 (nationality VARCHAR, position VARCHAR, years_in_orlando VARCHAR) |
### question: Which Nationality has a School/Club Team of seattle? ### answer: SELECT nationality FROM table_name_40 WHERE school_club_team = "seattle" ### context: CREATE TABLE table_name_40 (nationality VARCHAR, school_club_team VARCHAR) |
### question: When did they play at Candlestick Park? ### answer: SELECT date FROM table_name_25 WHERE game_site = "candlestick park" ### context: CREATE TABLE table_name_25 (date VARCHAR, game_site VARCHAR) |
### question: What is the average number of top-10s for events under 57 and 0 top-5s? ### answer: SELECT AVG(top_10) FROM table_name_6 WHERE events < 57 AND top_5 < 0 ### context: CREATE TABLE table_name_6 (top_10 INTEGER, events VARCHAR, top_5 VARCHAR) |
### question: What is the average number of top-10s for events with more than 12 cuts made and 0 wins? ### answer: SELECT AVG(top_10) FROM table_name_56 WHERE cuts_made > 12 AND wins < 0 ### context: CREATE TABLE table_name_56 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR) |
### question: What is the average number of top-25s for events with less than 2 top-10s? ### answer: SELECT AVG(top_25) FROM table_name_93 WHERE top_10 < 2 ### context: CREATE TABLE table_name_93 (top_25 INTEGER, top_10 INTEGER) |
### question: Which Works number has a Builder of canadian engine & machinery company, and a Number smaller than 3? ### answer: SELECT works_number FROM table_name_20 WHERE builder = "canadian engine & machinery company" AND number < 3 ### context: CREATE TABLE table_name_20 (works_number VARCHAR, builder VARCHAR, numb... |
### question: Which Works number has a Builder of avonside engine company, and a Type of 4-6-0, and a Number smaller than 12, and a Date of december 1871? ### answer: SELECT works_number FROM table_name_76 WHERE builder = "avonside engine company" AND type = "4-6-0" AND number < 12 AND date = "december 1871" ### contex... |
### question: Which Type has a Builder of avonside engine company, and a Number of 9? ### answer: SELECT type FROM table_name_55 WHERE builder = "avonside engine company" AND number = 9 ### context: CREATE TABLE table_name_55 (type VARCHAR, builder VARCHAR, number VARCHAR) |
### question: Which Date has a Type of 4-6-0, and a Number larger than 11? ### answer: SELECT date FROM table_name_22 WHERE type = "4-6-0" AND number > 11 ### context: CREATE TABLE table_name_22 (date VARCHAR, type VARCHAR, number VARCHAR) |
### question: Which Builder has a Date of early 1871? ### answer: SELECT builder FROM table_name_39 WHERE date = "early 1871" ### context: CREATE TABLE table_name_39 (builder VARCHAR, date VARCHAR) |
### question: What ist he Home with a Score that is 42-64? ### answer: SELECT home FROM table_name_69 WHERE score = "42-64" ### context: CREATE TABLE table_name_69 (home VARCHAR, score VARCHAR) |
### question: What is the Home with a Time that is 12:00? ### answer: SELECT home FROM table_name_34 WHERE time = "12:00" ### context: CREATE TABLE table_name_34 (home VARCHAR, time VARCHAR) |
### question: What is the Ground with a Score that is 49-80? ### answer: SELECT ground FROM table_name_61 WHERE score = "49-80" ### context: CREATE TABLE table_name_61 (ground VARCHAR, score VARCHAR) |
### question: What's the smallest March when the record is 22-12-6? ### answer: SELECT MIN(march) FROM table_name_7 WHERE record = "22-12-6" ### context: CREATE TABLE table_name_7 (march INTEGER, record VARCHAR) |
### question: Which record's march was 26? ### answer: SELECT record FROM table_name_77 WHERE march = 26 ### context: CREATE TABLE table_name_77 (record VARCHAR, march VARCHAR) |
### question: What is the Lost with a Losing Bonus that is 4? ### answer: SELECT lost FROM table_name_30 WHERE losing_bonus = "4" ### context: CREATE TABLE table_name_30 (lost VARCHAR, losing_bonus VARCHAR) |
### question: What is the Points with a Tries For that is 21? ### answer: SELECT points FROM table_name_13 WHERE tries_for = "21" ### context: CREATE TABLE table_name_13 (points VARCHAR, tries_for VARCHAR) |
### question: What is the Lost with a Try Bonus that is try bonus? ### answer: SELECT lost FROM table_name_77 WHERE try_bonus = "try bonus" ### context: CREATE TABLE table_name_77 (lost VARCHAR, try_bonus VARCHAR) |
### question: What is the highest Total for the rank 12, and gold less than 0? ### answer: SELECT MAX(total) FROM table_name_53 WHERE rank = "12" AND gold < 0 ### context: CREATE TABLE table_name_53 (total INTEGER, rank VARCHAR, gold VARCHAR) |
### question: What is the total number of Total when the Silver is less than 2, and a Bronze is less than 0? ### answer: SELECT COUNT(total) FROM table_name_70 WHERE silver < 2 AND bronze < 0 ### context: CREATE TABLE table_name_70 (total VARCHAR, silver VARCHAR, bronze VARCHAR) |
### question: What is the nickname of the team that has the colors blue and gold? ### answer: SELECT nickname FROM table_name_42 WHERE colors = "blue and gold" ### context: CREATE TABLE table_name_42 (nickname VARCHAR, colors VARCHAR) |
### question: What is the nickname of the team that has the colors black and gold? ### answer: SELECT nickname FROM table_name_27 WHERE colors = "black and gold" ### context: CREATE TABLE table_name_27 (nickname VARCHAR, colors VARCHAR) |
### question: What is the nickname of the team in division 2? ### answer: SELECT nickname FROM table_name_34 WHERE division = "division 2" ### context: CREATE TABLE table_name_34 (nickname VARCHAR, division VARCHAR) |
### question: What is the class of the Middletown High School team that is in the DSHA league? ### answer: SELECT class FROM table_name_98 WHERE league = "dsha" AND school = "middletown high school" ### context: CREATE TABLE table_name_98 (class VARCHAR, league VARCHAR, school VARCHAR) |
### question: What school is the team from that has the colors blue and gold? ### answer: SELECT school FROM table_name_29 WHERE colors = "blue and gold" ### context: CREATE TABLE table_name_29 (school VARCHAR, colors VARCHAR) |
### question: What are the colors for the division 2 team with the nickname, the seahawks? ### answer: SELECT colors FROM table_name_74 WHERE division = "division 2" AND nickname = "seahawks" ### context: CREATE TABLE table_name_74 (colors VARCHAR, division VARCHAR, nickname VARCHAR) |
### question: Who's the Centerfold model with a Pictorials of adrianne curry, girls of tuscany? ### answer: SELECT centerfold_model FROM table_name_47 WHERE pictorials = "adrianne curry, girls of tuscany" ### context: CREATE TABLE table_name_47 (centerfold_model VARCHAR, pictorials VARCHAR) |
### question: Which Interview subject has a Pictorials of vida guerra? ### answer: SELECT interview_subject FROM table_name_30 WHERE pictorials = "vida guerra" ### context: CREATE TABLE table_name_30 (interview_subject VARCHAR, pictorials VARCHAR) |
### question: Which Date has a Pictorials of mercedes mcnab, girls of hawaiian tropic? ### answer: SELECT date FROM table_name_67 WHERE pictorials = "mercedes mcnab, girls of hawaiian tropic" ### context: CREATE TABLE table_name_67 (date VARCHAR, pictorials VARCHAR) |
### question: Which Interview subject has a Centerfold model of athena lundberg? ### answer: SELECT interview_subject FROM table_name_60 WHERE centerfold_model = "athena lundberg" ### context: CREATE TABLE table_name_60 (interview_subject VARCHAR, centerfold_model VARCHAR) |
### question: What is the total number of votes from the Labour Party? ### answer: SELECT COUNT(votes) FROM table_name_23 WHERE party = "labour" ### context: CREATE TABLE table_name_23 (votes VARCHAR, party VARCHAR) |
### question: Which party has less than 11,484 votes? ### answer: SELECT party FROM table_name_81 WHERE votes < 11 OFFSET 484 ### context: CREATE TABLE table_name_81 (party VARCHAR, votes INTEGER) |
### question: How many numbers had Brandon Dean as a name? ### answer: SELECT SUM(number) FROM table_name_24 WHERE name = "brandon dean" ### context: CREATE TABLE table_name_24 (number INTEGER, name VARCHAR) |
### question: What is the singular for the Meaning of night? ### answer: SELECT singular FROM table_name_28 WHERE meaning = "night" ### context: CREATE TABLE table_name_28 (singular VARCHAR, meaning VARCHAR) |
### question: What is the plural for the Meaning of night? ### answer: SELECT plural FROM table_name_85 WHERE meaning = "night" ### context: CREATE TABLE table_name_85 (plural VARCHAR, meaning VARCHAR) |
### question: What is the plural if the singular is nyaqot? ### answer: SELECT plural FROM table_name_47 WHERE singular = "nyaqot" ### context: CREATE TABLE table_name_47 (plural VARCHAR, singular VARCHAR) |
### question: What is the plural if the meaning is python and the plural gender is n? ### answer: SELECT plural FROM table_name_92 WHERE plural_gender = "n" AND meaning = "python" ### context: CREATE TABLE table_name_92 (plural VARCHAR, plural_gender VARCHAR, meaning VARCHAR) |
### question: What is the plural if the singular is awu? ### answer: SELECT plural FROM table_name_60 WHERE singular = "awu" ### context: CREATE TABLE table_name_60 (plural VARCHAR, singular VARCHAR) |
### question: What is the singular if the plural is xweer(a)du? ### answer: SELECT singular FROM table_name_19 WHERE plural = "xweer(a)du" ### context: CREATE TABLE table_name_19 (singular VARCHAR, plural VARCHAR) |
### question: What is the Total againsts for the Sant'Anna team with a position number greater than 10? ### answer: SELECT COUNT(against) FROM table_name_94 WHERE team = "sant'anna" AND position > 10 ### context: CREATE TABLE table_name_94 (against VARCHAR, team VARCHAR, position VARCHAR) |
### question: What is the total number of games played with 3 losses, 1 or more drawns and 10 or fewer points? ### answer: SELECT SUM(played) FROM table_name_68 WHERE lost = 3 AND drawn > 1 AND points < 10 ### context: CREATE TABLE table_name_68 (played INTEGER, points VARCHAR, lost VARCHAR, drawn VARCHAR) |
### question: What is the average lost of games played of more than 9? ### answer: SELECT AVG(lost) FROM table_name_16 WHERE played > 9 ### context: CREATE TABLE table_name_16 (lost INTEGER, played INTEGER) |
### question: What is the lowest number of bronze medals for Great Britain with more than 2 medals total? ### answer: SELECT MIN(bronze) FROM table_name_71 WHERE nation = "great britain" AND total > 2 ### context: CREATE TABLE table_name_71 (bronze INTEGER, nation VARCHAR, total VARCHAR) |
### question: What is the lowest wins the club with a position of 4 and less than 4 losses has? ### answer: SELECT MIN(wins) FROM table_name_67 WHERE position = 4 AND loses < 4 ### context: CREATE TABLE table_name_67 (wins INTEGER, position VARCHAR, loses VARCHAR) |
### question: What is the sum of the points of club nevėžis-2 kėdainiai, which has more than 35 goals conceded? ### answer: SELECT SUM(points) FROM table_name_39 WHERE club = "nevėžis-2 kėdainiai" AND goals_conceded > 35 ### context: CREATE TABLE table_name_39 (points INTEGER, club VARCHAR, goals_conceded VARCHAR) |
### question: What is the total number of games played of the team with 4 wins and a position less than 9? ### answer: SELECT COUNT(games_played) FROM table_name_6 WHERE wins = 4 AND position < 9 ### context: CREATE TABLE table_name_6 (games_played VARCHAR, wins VARCHAR, position VARCHAR) |
### question: What is the highest number of wins of the team with a position less than 1? ### answer: SELECT MAX(wins) FROM table_name_8 WHERE position < 1 ### context: CREATE TABLE table_name_8 (wins INTEGER, position INTEGER) |
### question: What is the total losses against 1412, and 10 wins, but draws less than 0? ### answer: SELECT SUM(losses) FROM table_name_56 WHERE against > 1412 AND wins = 10 AND draws < 0 ### context: CREATE TABLE table_name_56 (losses INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR) |
### question: What is the highest draw against 2161? ### answer: SELECT MAX(draws) FROM table_name_98 WHERE against > 2161 ### context: CREATE TABLE table_name_98 (draws INTEGER, against INTEGER) |
### question: What is the total number of losses against 1412, and Byes less than 2? ### answer: SELECT COUNT(losses) FROM table_name_4 WHERE against = 1412 AND byes < 2 ### context: CREATE TABLE table_name_4 (losses VARCHAR, against VARCHAR, byes VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.