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