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