answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT COUNT(points) FROM table_name_90 WHERE difference = "2" AND position < 4
CREATE TABLE table_name_90 (points VARCHAR, difference VARCHAR, position VARCHAR)
How many points occurred with a difference of 2 for position less than 4?
SELECT MAX(points) FROM table_name_19 WHERE position < 3 AND lost < 1
CREATE TABLE table_name_19 (points INTEGER, position VARCHAR, lost VARCHAR)
What is the highest number of points for a position less than 3 and less than 1 loss?
SELECT agg FROM table_name_28 WHERE team__number2 = "estudiantes"
CREATE TABLE table_name_28 (agg VARCHAR, team__number2 VARCHAR)
When Estudiantes was team #2, what was their agg. value?
SELECT 2 AS nd_leg FROM table_name_9 WHERE team__number1 = "tsv bayer 04 leverkusen"
CREATE TABLE table_name_9 (team__number1 VARCHAR)
Who played against TSV bayer 04 leverkusen when they were team #1?
SELECT team__number2 FROM table_name_89 WHERE team__number1 = "hapoel tel aviv"
CREATE TABLE table_name_89 (team__number2 VARCHAR, team__number1 VARCHAR)
Who played against Hapoel tel aviv when they were team #1?
SELECT 2013 AS _bafa_adult_flag_division FROM table_name_95 WHERE location = "aylesbury"
CREATE TABLE table_name_95 (location VARCHAR)
What is the 2013 BAFA adult flag division in Aylesbury?
SELECT format FROM table_name_63 WHERE label = "kontor records" AND catalog = "kontor446"
CREATE TABLE table_name_63 (format VARCHAR, label VARCHAR, catalog VARCHAR)
Records from Kontor Records from the catalog of Kontor446 was released in what format?
SELECT date FROM table_name_66 WHERE label = "wrongun"
CREATE TABLE table_name_66 (date VARCHAR, label VARCHAR)
What date was the release that was Wrongun as the label?
SELECT date FROM table_name_26 WHERE catalog = "nebdj068"
CREATE TABLE table_name_26 (date VARCHAR, catalog VARCHAR)
Catalog Nebdj068 was released when?
SELECT format FROM table_name_62 WHERE date = "april 11, 2005" AND catalog = "nebt068"
CREATE TABLE table_name_62 (format VARCHAR, date VARCHAR, catalog VARCHAR)
In what format was the release from the Nebt068 catalog on April 11, 2005 in?
SELECT region FROM table_name_16 WHERE date = "2005" AND label = "playground music scandinavia"
CREATE TABLE table_name_16 (region VARCHAR, date VARCHAR, label VARCHAR)
What region has the date of 2005 and Playground Music Scandinavia as a label?
SELECT result FROM table_name_16 WHERE venue = "filbert street"
CREATE TABLE table_name_16 (result VARCHAR, venue VARCHAR)
What is the Result with a Venue that is filbert street?
SELECT date FROM table_name_8 WHERE opponent = "bye"
CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)
When did the Texans play BYE?
SELECT opponent FROM table_name_11 WHERE attendance = "70,724"
CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR)
Who did the Texans play when there were 70,724 people in attendance?
SELECT novelty FROM table_name_75 WHERE status = "jr synonym of protosialis casca"
CREATE TABLE table_name_75 (novelty VARCHAR, status VARCHAR)
Who has the status of jr synonym of protosialis casca?
SELECT authors FROM table_name_62 WHERE name = "mongolbittacus"
CREATE TABLE table_name_62 (authors VARCHAR, name VARCHAR)
Which writer is named mongolbittacus?
SELECT score FROM table_name_59 WHERE attendance = "359"
CREATE TABLE table_name_59 (score VARCHAR, attendance VARCHAR)
What is the score of the game that had 359 people in attendance?
SELECT home_team FROM table_name_95 WHERE score = "0-1"
CREATE TABLE table_name_95 (home_team VARCHAR, score VARCHAR)
What is the home team of the game that ended with a score of 0-1?
SELECT attendance FROM table_name_51 WHERE match_no = "31"
CREATE TABLE table_name_51 (attendance VARCHAR, match_no VARCHAR)
How many people attended Match No. 31?
SELECT home_team FROM table_name_42 WHERE match_no = "23"
CREATE TABLE table_name_42 (home_team VARCHAR, match_no VARCHAR)
Who is the Home Team for Match No. 23?
SELECT score FROM table_name_37 WHERE attendance = "1,125"
CREATE TABLE table_name_37 (score VARCHAR, attendance VARCHAR)
What is the score of the game with 1,125 people in attendance?
SELECT country FROM table_name_70 WHERE launched = "april 3, 1990"
CREATE TABLE table_name_70 (country VARCHAR, launched VARCHAR)
What is the Country with a Launched that is april 3, 1990?
SELECT launched FROM table_name_45 WHERE country = "spain"
CREATE TABLE table_name_45 (launched VARCHAR, country VARCHAR)
What is the Launched from a Country that is spain?
SELECT MIN(order) FROM table_name_66 WHERE minister = "joe hockey"
CREATE TABLE table_name_66 (order INTEGER, minister VARCHAR)
What is the lowest order with a Minister that is joe hockey?
SELECT years_in_orlando FROM table_name_43 WHERE nationality = "united states" AND player = "doug overton"
CREATE TABLE table_name_43 (years_in_orlando VARCHAR, nationality VARCHAR, player VARCHAR)
Which Years in Orlando has a Nationality of united states, and a Player of doug overton?
SELECT years_in_orlando FROM table_name_10 WHERE nationality = "united states" AND position = "center" AND player = "jawann oldham"
CREATE TABLE table_name_10 (years_in_orlando VARCHAR, player VARCHAR, nationality VARCHAR, position VARCHAR)
Which Years in Orlando has a Nationality of united states, a Position of center, and a Player of jawann oldham?
SELECT years_in_orlando FROM table_name_54 WHERE player = "bo outlaw"
CREATE TABLE table_name_54 (years_in_orlando VARCHAR, player VARCHAR)
Which Years in Orlando has a Player of bo outlaw?
SELECT years_in_orlando FROM table_name_16 WHERE school_club_team = "seattle"
CREATE TABLE table_name_16 (years_in_orlando VARCHAR, school_club_team VARCHAR)
Which Years in Orlando has a School/Club Team of seattle?
SELECT nationality FROM table_name_63 WHERE position = "center" AND years_in_orlando = "2010–2012"
CREATE TABLE table_name_63 (nationality VARCHAR, position VARCHAR, years_in_orlando VARCHAR)
Which Nationality has a Position of center, and a Years in Orlando of 2010–2012?
SELECT nationality FROM table_name_40 WHERE school_club_team = "seattle"
CREATE TABLE table_name_40 (nationality VARCHAR, school_club_team VARCHAR)
Which Nationality has a School/Club Team of seattle?
SELECT date FROM table_name_25 WHERE game_site = "candlestick park"
CREATE TABLE table_name_25 (date VARCHAR, game_site VARCHAR)
When did they play at Candlestick Park?
SELECT AVG(top_10) FROM table_name_6 WHERE events < 57 AND top_5 < 0
CREATE TABLE table_name_6 (top_10 INTEGER, events VARCHAR, top_5 VARCHAR)
What is the average number of top-10s for events under 57 and 0 top-5s?
SELECT AVG(top_10) FROM table_name_56 WHERE cuts_made > 12 AND wins < 0
CREATE TABLE table_name_56 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR)
What is the average number of top-10s for events with more than 12 cuts made and 0 wins?
SELECT AVG(top_25) FROM table_name_93 WHERE top_10 < 2
CREATE TABLE table_name_93 (top_25 INTEGER, top_10 INTEGER)
What is the average number of top-25s for events with less than 2 top-10s?
SELECT works_number FROM table_name_20 WHERE builder = "canadian engine & machinery company" AND number < 3
CREATE TABLE table_name_20 (works_number VARCHAR, builder VARCHAR, number VARCHAR)
Which Works number has a Builder of canadian engine & machinery company, and a Number smaller than 3?
SELECT works_number FROM table_name_76 WHERE builder = "avonside engine company" AND type = "4-6-0" AND number < 12 AND date = "december 1871"
CREATE TABLE table_name_76 (works_number VARCHAR, date VARCHAR, number VARCHAR, builder VARCHAR, type VARCHAR)
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?
SELECT type FROM table_name_55 WHERE builder = "avonside engine company" AND number = 9
CREATE TABLE table_name_55 (type VARCHAR, builder VARCHAR, number VARCHAR)
Which Type has a Builder of avonside engine company, and a Number of 9?
SELECT date FROM table_name_22 WHERE type = "4-6-0" AND number > 11
CREATE TABLE table_name_22 (date VARCHAR, type VARCHAR, number VARCHAR)
Which Date has a Type of 4-6-0, and a Number larger than 11?
SELECT builder FROM table_name_39 WHERE date = "early 1871"
CREATE TABLE table_name_39 (builder VARCHAR, date VARCHAR)
Which Builder has a Date of early 1871?
SELECT home FROM table_name_69 WHERE score = "42-64"
CREATE TABLE table_name_69 (home VARCHAR, score VARCHAR)
What ist he Home with a Score that is 42-64?
SELECT home FROM table_name_34 WHERE time = "12:00"
CREATE TABLE table_name_34 (home VARCHAR, time VARCHAR)
What is the Home with a Time that is 12:00?
SELECT ground FROM table_name_61 WHERE score = "49-80"
CREATE TABLE table_name_61 (ground VARCHAR, score VARCHAR)
What is the Ground with a Score that is 49-80?
SELECT MIN(march) FROM table_name_7 WHERE record = "22-12-6"
CREATE TABLE table_name_7 (march INTEGER, record VARCHAR)
What's the smallest March when the record is 22-12-6?
SELECT record FROM table_name_77 WHERE march = 26
CREATE TABLE table_name_77 (record VARCHAR, march VARCHAR)
Which record's march was 26?
SELECT lost FROM table_name_30 WHERE losing_bonus = "4"
CREATE TABLE table_name_30 (lost VARCHAR, losing_bonus VARCHAR)
What is the Lost with a Losing Bonus that is 4?
SELECT points FROM table_name_13 WHERE tries_for = "21"
CREATE TABLE table_name_13 (points VARCHAR, tries_for VARCHAR)
What is the Points with a Tries For that is 21?
SELECT lost FROM table_name_77 WHERE try_bonus = "try bonus"
CREATE TABLE table_name_77 (lost VARCHAR, try_bonus VARCHAR)
What is the Lost with a Try Bonus that is try bonus?
SELECT MAX(total) FROM table_name_53 WHERE rank = "12" AND gold < 0
CREATE TABLE table_name_53 (total INTEGER, rank VARCHAR, gold VARCHAR)
What is the highest Total for the rank 12, and gold less than 0?
SELECT COUNT(total) FROM table_name_70 WHERE silver < 2 AND bronze < 0
CREATE TABLE table_name_70 (total VARCHAR, silver VARCHAR, bronze VARCHAR)
What is the total number of Total when the Silver is less than 2, and a Bronze is less than 0?
SELECT nickname FROM table_name_42 WHERE colors = "blue and gold"
CREATE TABLE table_name_42 (nickname VARCHAR, colors VARCHAR)
What is the nickname of the team that has the colors blue and gold?
SELECT nickname FROM table_name_27 WHERE colors = "black and gold"
CREATE TABLE table_name_27 (nickname VARCHAR, colors VARCHAR)
What is the nickname of the team that has the colors black and gold?
SELECT nickname FROM table_name_34 WHERE division = "division 2"
CREATE TABLE table_name_34 (nickname VARCHAR, division VARCHAR)
What is the nickname of the team in division 2?
SELECT class FROM table_name_98 WHERE league = "dsha" AND school = "middletown high school"
CREATE TABLE table_name_98 (class VARCHAR, league VARCHAR, school VARCHAR)
What is the class of the Middletown High School team that is in the DSHA league?
SELECT school FROM table_name_29 WHERE colors = "blue and gold"
CREATE TABLE table_name_29 (school VARCHAR, colors VARCHAR)
What school is the team from that has the colors blue and gold?
SELECT colors FROM table_name_74 WHERE division = "division 2" AND nickname = "seahawks"
CREATE TABLE table_name_74 (colors VARCHAR, division VARCHAR, nickname VARCHAR)
What are the colors for the division 2 team with the nickname, the seahawks?
SELECT centerfold_model FROM table_name_47 WHERE pictorials = "adrianne curry, girls of tuscany"
CREATE TABLE table_name_47 (centerfold_model VARCHAR, pictorials VARCHAR)
Who's the Centerfold model with a Pictorials of adrianne curry, girls of tuscany?
SELECT interview_subject FROM table_name_30 WHERE pictorials = "vida guerra"
CREATE TABLE table_name_30 (interview_subject VARCHAR, pictorials VARCHAR)
Which Interview subject has a Pictorials of vida guerra?
SELECT date FROM table_name_67 WHERE pictorials = "mercedes mcnab, girls of hawaiian tropic"
CREATE TABLE table_name_67 (date VARCHAR, pictorials VARCHAR)
Which Date has a Pictorials of mercedes mcnab, girls of hawaiian tropic?
SELECT interview_subject FROM table_name_60 WHERE centerfold_model = "athena lundberg"
CREATE TABLE table_name_60 (interview_subject VARCHAR, centerfold_model VARCHAR)
Which Interview subject has a Centerfold model of athena lundberg?
SELECT COUNT(votes) FROM table_name_23 WHERE party = "labour"
CREATE TABLE table_name_23 (votes VARCHAR, party VARCHAR)
What is the total number of votes from the Labour Party?
SELECT party FROM table_name_81 WHERE votes < 11 OFFSET 484
CREATE TABLE table_name_81 (party VARCHAR, votes INTEGER)
Which party has less than 11,484 votes?
SELECT SUM(number) FROM table_name_24 WHERE name = "brandon dean"
CREATE TABLE table_name_24 (number INTEGER, name VARCHAR)
How many numbers had Brandon Dean as a name?
SELECT singular FROM table_name_28 WHERE meaning = "night"
CREATE TABLE table_name_28 (singular VARCHAR, meaning VARCHAR)
What is the singular for the Meaning of night?
SELECT plural FROM table_name_85 WHERE meaning = "night"
CREATE TABLE table_name_85 (plural VARCHAR, meaning VARCHAR)
What is the plural for the Meaning of night?
SELECT plural FROM table_name_47 WHERE singular = "nyaqot"
CREATE TABLE table_name_47 (plural VARCHAR, singular VARCHAR)
What is the plural if the singular is nyaqot?
SELECT plural FROM table_name_92 WHERE plural_gender = "n" AND meaning = "python"
CREATE TABLE table_name_92 (plural VARCHAR, plural_gender VARCHAR, meaning VARCHAR)
What is the plural if the meaning is python and the plural gender is n?
SELECT plural FROM table_name_60 WHERE singular = "awu"
CREATE TABLE table_name_60 (plural VARCHAR, singular VARCHAR)
What is the plural if the singular is awu?
SELECT singular FROM table_name_19 WHERE plural = "xweer(a)du"
CREATE TABLE table_name_19 (singular VARCHAR, plural VARCHAR)
What is the singular if the plural is xweer(a)du?
SELECT COUNT(against) FROM table_name_94 WHERE team = "sant'anna" AND position > 10
CREATE TABLE table_name_94 (against VARCHAR, team VARCHAR, position VARCHAR)
What is the Total againsts for the Sant'Anna team with a position number greater than 10?
SELECT SUM(played) FROM table_name_68 WHERE lost = 3 AND drawn > 1 AND points < 10
CREATE TABLE table_name_68 (played INTEGER, points VARCHAR, lost VARCHAR, drawn VARCHAR)
What is the total number of games played with 3 losses, 1 or more drawns and 10 or fewer points?
SELECT AVG(lost) FROM table_name_16 WHERE played > 9
CREATE TABLE table_name_16 (lost INTEGER, played INTEGER)
What is the average lost of games played of more than 9?
SELECT MIN(bronze) FROM table_name_71 WHERE nation = "great britain" AND total > 2
CREATE TABLE table_name_71 (bronze INTEGER, nation VARCHAR, total VARCHAR)
What is the lowest number of bronze medals for Great Britain with more than 2 medals total?
SELECT MIN(wins) FROM table_name_67 WHERE position = 4 AND loses < 4
CREATE TABLE table_name_67 (wins INTEGER, position VARCHAR, loses VARCHAR)
What is the lowest wins the club with a position of 4 and less than 4 losses has?
SELECT SUM(points) FROM table_name_39 WHERE club = "nevėžis-2 kėdainiai" AND goals_conceded > 35
CREATE TABLE table_name_39 (points INTEGER, club VARCHAR, goals_conceded VARCHAR)
What is the sum of the points of club nevėžis-2 kėdainiai, which has more than 35 goals conceded?
SELECT COUNT(games_played) FROM table_name_6 WHERE wins = 4 AND position < 9
CREATE TABLE table_name_6 (games_played VARCHAR, wins VARCHAR, position VARCHAR)
What is the total number of games played of the team with 4 wins and a position less than 9?
SELECT MAX(wins) FROM table_name_8 WHERE position < 1
CREATE TABLE table_name_8 (wins INTEGER, position INTEGER)
What is the highest number of wins of the team with a position less than 1?
SELECT SUM(losses) FROM table_name_56 WHERE against > 1412 AND wins = 10 AND draws < 0
CREATE TABLE table_name_56 (losses INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR)
What is the total losses against 1412, and 10 wins, but draws less than 0?
SELECT MAX(draws) FROM table_name_98 WHERE against > 2161
CREATE TABLE table_name_98 (draws INTEGER, against INTEGER)
What is the highest draw against 2161?
SELECT COUNT(losses) FROM table_name_4 WHERE against = 1412 AND byes < 2
CREATE TABLE table_name_4 (losses VARCHAR, against VARCHAR, byes VARCHAR)
What is the total number of losses against 1412, and Byes less than 2?
SELECT MIN(wins) FROM table_name_15 WHERE byes < 2
CREATE TABLE table_name_15 (wins INTEGER, byes INTEGER)
What is the lowest wins with less than 2 Byes?
SELECT MAX(against) FROM table_name_4 WHERE wins = 0 AND byes > 2
CREATE TABLE table_name_4 (against INTEGER, wins VARCHAR, byes VARCHAR)
What is the highest score with 0 wins and more than 2 Byes?
SELECT SUM(wins) FROM table_name_80 WHERE against < 1148
CREATE TABLE table_name_80 (wins INTEGER, against INTEGER)
What is the sum of wins against the smaller score 1148?
SELECT name FROM table_name_36 WHERE rank > 7 AND goals < 305 AND matches = "418"
CREATE TABLE table_name_36 (name VARCHAR, matches VARCHAR, rank VARCHAR, goals VARCHAR)
Who had a rank larger than 7, less than 305 goals, and 418 matches?
SELECT COUNT(goals) FROM table_name_36 WHERE rank = 6
CREATE TABLE table_name_36 (goals VARCHAR, rank VARCHAR)
How many goals ranked 6?
SELECT matches FROM table_name_31 WHERE goals = 360
CREATE TABLE table_name_31 (matches VARCHAR, goals VARCHAR)
How many matches had 360 goals?
SELECT nominee FROM table_name_64 WHERE category = "best costume design"
CREATE TABLE table_name_64 (nominee VARCHAR, category VARCHAR)
What is the Nominee from the Category that is best costume design?
SELECT SUM(total) FROM table_name_70 WHERE bronze > 12 AND silver > 772 AND country = "thailand"
CREATE TABLE table_name_70 (total INTEGER, country VARCHAR, bronze VARCHAR, silver VARCHAR)
Which Total has a Bronze larger than 12, and a Silver larger than 772, and a Country of thailand?
SELECT AVG(gold) FROM table_name_68 WHERE total = 2998 AND bronze < 1191
CREATE TABLE table_name_68 (gold INTEGER, total VARCHAR, bronze VARCHAR)
Which Gold has a Total of 2998, and a Bronze smaller than 1191?
SELECT SUM(bronze) FROM table_name_75 WHERE country = "malaysia" AND total < 2644
CREATE TABLE table_name_75 (bronze INTEGER, country VARCHAR, total VARCHAR)
Which Bronze has a Country of malaysia, and a Total smaller than 2644?
SELECT silver FROM table_name_65 WHERE bronze < 618 AND country = "laos"
CREATE TABLE table_name_65 (silver VARCHAR, bronze VARCHAR, country VARCHAR)
Which Silver has a Bronze smaller than 618, and a Country of laos?
SELECT score FROM table_name_1 WHERE team = "@ portland"
CREATE TABLE table_name_1 (score VARCHAR, team VARCHAR)
What is the Score with a Team that is @ portland?
SELECT high_points FROM table_name_35 WHERE date = "january 20"
CREATE TABLE table_name_35 (high_points VARCHAR, date VARCHAR)
What is the High points with a Date that is january 20?
SELECT home FROM table_name_64 WHERE visitor = "clippers"
CREATE TABLE table_name_64 (home VARCHAR, visitor VARCHAR)
Who was the home team that the Clippers played?
SELECT record FROM table_name_69 WHERE leading_scorer = "lebron james (16)"
CREATE TABLE table_name_69 (record VARCHAR, leading_scorer VARCHAR)
What's the record of the game where Lebron James (16) was the leading scorer?
SELECT AVG(attendance) FROM table_name_61 WHERE venue = "a" AND date = "2 january 2008"
CREATE TABLE table_name_61 (attendance INTEGER, venue VARCHAR, date VARCHAR)
When the venue was A and the date was 2 january 2008, what was the average attendance?
SELECT venue FROM table_name_60 WHERE date = "10 november 2007"
CREATE TABLE table_name_60 (venue VARCHAR, date VARCHAR)
On 10 November 2007, what was the venue?
SELECT date FROM table_name_17 WHERE result = "1–0" AND attendance > 668 AND opponent = "ayr united"
CREATE TABLE table_name_17 (date VARCHAR, opponent VARCHAR, result VARCHAR, attendance VARCHAR)
On what date was the opponent Ayr United, the result 1–0, and the attendance more than 668?
SELECT result FROM table_name_47 WHERE opponent = "brechin city" AND attendance = 656
CREATE TABLE table_name_47 (result VARCHAR, opponent VARCHAR, attendance VARCHAR)
When the opponent was Brechin City and the attendance was 656, what was the Result?
SELECT AVG(attendance) FROM table_name_45 WHERE venue = "a" AND date = "1 september 2007"
CREATE TABLE table_name_45 (attendance INTEGER, venue VARCHAR, date VARCHAR)
On 1 september 2007, at the Venue A, what was the average attendance?
SELECT score FROM table_name_77 WHERE country = "england" AND year > 1971
CREATE TABLE table_name_77 (score VARCHAR, country VARCHAR, year VARCHAR)
Which Score has a Country of england, and a Year larger than 1971?