question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
| text
stringlengths 114
1.06k
|
---|---|---|---|
Which stadium did Rashid Budaj coach?
|
CREATE TABLE table_name_76 (stadium VARCHAR, coach VARCHAR)
|
SELECT stadium FROM table_name_76 WHERE coach = "rashid budaj"
|
### Context: CREATE TABLE table_name_76 (stadium VARCHAR, coach VARCHAR) ### Question: Which stadium did Rashid Budaj coach? ### Answer: SELECT stadium FROM table_name_76 WHERE coach = "rashid budaj"
|
Who coached for al farwaniyah?
|
CREATE TABLE table_name_67 (coach VARCHAR, city VARCHAR)
|
SELECT coach FROM table_name_67 WHERE city = "al farwaniyah"
|
### Context: CREATE TABLE table_name_67 (coach VARCHAR, city VARCHAR) ### Question: Who coached for al farwaniyah? ### Answer: SELECT coach FROM table_name_67 WHERE city = "al farwaniyah"
|
Who was the coach for qadsia?
|
CREATE TABLE table_name_58 (coach VARCHAR, club VARCHAR)
|
SELECT coach FROM table_name_58 WHERE club = "qadsia"
|
### Context: CREATE TABLE table_name_58 (coach VARCHAR, club VARCHAR) ### Question: Who was the coach for qadsia? ### Answer: SELECT coach FROM table_name_58 WHERE club = "qadsia"
|
Which stadium had the club Kuwait?
|
CREATE TABLE table_name_3 (stadium VARCHAR, club VARCHAR)
|
SELECT stadium FROM table_name_3 WHERE club = "kuwait"
|
### Context: CREATE TABLE table_name_3 (stadium VARCHAR, club VARCHAR) ### Question: Which stadium had the club Kuwait? ### Answer: SELECT stadium FROM table_name_3 WHERE club = "kuwait"
|
What's the score in 1990?
|
CREATE TABLE table_name_29 (score VARCHAR, year VARCHAR)
|
SELECT score FROM table_name_29 WHERE year = "1990"
|
### Context: CREATE TABLE table_name_29 (score VARCHAR, year VARCHAR) ### Question: What's the score in 1990? ### Answer: SELECT score FROM table_name_29 WHERE year = "1990"
|
Who was the champion of the Philips Open with a runner-up of Javier Sánchez?
|
CREATE TABLE table_name_3 (champion VARCHAR, name VARCHAR, runner_up VARCHAR)
|
SELECT champion FROM table_name_3 WHERE name = "philips open" AND runner_up = "javier sánchez"
|
### Context: CREATE TABLE table_name_3 (champion VARCHAR, name VARCHAR, runner_up VARCHAR) ### Question: Who was the champion of the Philips Open with a runner-up of Javier Sánchez? ### Answer: SELECT champion FROM table_name_3 WHERE name = "philips open" AND runner_up = "javier sánchez"
|
What's the score of the Nice International Championships where Björn Borg was the champion?
|
CREATE TABLE table_name_93 (score VARCHAR, name VARCHAR, champion VARCHAR)
|
SELECT score FROM table_name_93 WHERE name = "nice international championships" AND champion = "björn borg"
|
### Context: CREATE TABLE table_name_93 (score VARCHAR, name VARCHAR, champion VARCHAR) ### Question: What's the score of the Nice International Championships where Björn Borg was the champion? ### Answer: SELECT score FROM table_name_93 WHERE name = "nice international championships" AND champion = "björn borg"
|
What year had a score of 6–2, 2–6, 5–7, 7–6, 8–6?
|
CREATE TABLE table_name_58 (year VARCHAR, score VARCHAR)
|
SELECT year FROM table_name_58 WHERE score = "6–2, 2–6, 5–7, 7–6, 8–6"
|
### Context: CREATE TABLE table_name_58 (year VARCHAR, score VARCHAR) ### Question: What year had a score of 6–2, 2–6, 5–7, 7–6, 8–6? ### Answer: SELECT year FROM table_name_58 WHERE score = "6–2, 2–6, 5–7, 7–6, 8–6"
|
What's the name when Henrik Sundström was champion?
|
CREATE TABLE table_name_88 (name VARCHAR, champion VARCHAR)
|
SELECT name FROM table_name_88 WHERE champion = "henrik sundström"
|
### Context: CREATE TABLE table_name_88 (name VARCHAR, champion VARCHAR) ### Question: What's the name when Henrik Sundström was champion? ### Answer: SELECT name FROM table_name_88 WHERE champion = "henrik sundström"
|
When the away team was Bolton Wanderers, what was the score?
|
CREATE TABLE table_name_83 (score VARCHAR, away_team VARCHAR)
|
SELECT score FROM table_name_83 WHERE away_team = "bolton wanderers"
|
### Context: CREATE TABLE table_name_83 (score VARCHAR, away_team VARCHAR) ### Question: When the away team was Bolton Wanderers, what was the score? ### Answer: SELECT score FROM table_name_83 WHERE away_team = "bolton wanderers"
|
On the date of 30/01/1991, when the away team was Liverpool, what was the score?
|
CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR, away_team VARCHAR)
|
SELECT score FROM table_name_76 WHERE date = "30/01/1991" AND away_team = "liverpool"
|
### Context: CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR, away_team VARCHAR) ### Question: On the date of 30/01/1991, when the away team was Liverpool, what was the score? ### Answer: SELECT score FROM table_name_76 WHERE date = "30/01/1991" AND away_team = "liverpool"
|
When the tie no was 1, what was the score?
|
CREATE TABLE table_name_44 (score VARCHAR, tie_no VARCHAR)
|
SELECT score FROM table_name_44 WHERE tie_no = "1"
|
### Context: CREATE TABLE table_name_44 (score VARCHAR, tie_no VARCHAR) ### Question: When the tie no was 1, what was the score? ### Answer: SELECT score FROM table_name_44 WHERE tie_no = "1"
|
When the home team was Shrewsbury town, what was the score?
|
CREATE TABLE table_name_54 (score VARCHAR, home_team VARCHAR)
|
SELECT score FROM table_name_54 WHERE home_team = "shrewsbury town"
|
### Context: CREATE TABLE table_name_54 (score VARCHAR, home_team VARCHAR) ### Question: When the home team was Shrewsbury town, what was the score? ### Answer: SELECT score FROM table_name_54 WHERE home_team = "shrewsbury town"
|
When the home team was Woking, what was the tie no?
|
CREATE TABLE table_name_12 (tie_no VARCHAR, home_team VARCHAR)
|
SELECT tie_no FROM table_name_12 WHERE home_team = "woking"
|
### Context: CREATE TABLE table_name_12 (tie_no VARCHAR, home_team VARCHAR) ### Question: When the home team was Woking, what was the tie no? ### Answer: SELECT tie_no FROM table_name_12 WHERE home_team = "woking"
|
How many people attended the game against away team Cambridge City?
|
CREATE TABLE table_name_98 (attendance VARCHAR, away_team VARCHAR)
|
SELECT attendance FROM table_name_98 WHERE away_team = "cambridge city"
|
### Context: CREATE TABLE table_name_98 (attendance VARCHAR, away_team VARCHAR) ### Question: How many people attended the game against away team Cambridge City? ### Answer: SELECT attendance FROM table_name_98 WHERE away_team = "cambridge city"
|
Who was the home team that played against Aylesbury Vale?
|
CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR)
|
SELECT home_team FROM table_name_37 WHERE away_team = "aylesbury vale"
|
### Context: CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR) ### Question: Who was the home team that played against Aylesbury Vale? ### Answer: SELECT home_team FROM table_name_37 WHERE away_team = "aylesbury vale"
|
Which home team has 44 ties?
|
CREATE TABLE table_name_12 (home_team VARCHAR, tie_no VARCHAR)
|
SELECT home_team FROM table_name_12 WHERE tie_no = "44"
|
### Context: CREATE TABLE table_name_12 (home_team VARCHAR, tie_no VARCHAR) ### Question: Which home team has 44 ties? ### Answer: SELECT home_team FROM table_name_12 WHERE tie_no = "44"
|
How many people attended the game with home team Witton Albion?
|
CREATE TABLE table_name_74 (attendance VARCHAR, home_team VARCHAR)
|
SELECT attendance FROM table_name_74 WHERE home_team = "witton albion"
|
### Context: CREATE TABLE table_name_74 (attendance VARCHAR, home_team VARCHAR) ### Question: How many people attended the game with home team Witton Albion? ### Answer: SELECT attendance FROM table_name_74 WHERE home_team = "witton albion"
|
What was the attendance at the Billericay Town home game?
|
CREATE TABLE table_name_51 (attendance VARCHAR, home_team VARCHAR)
|
SELECT attendance FROM table_name_51 WHERE home_team = "billericay town"
|
### Context: CREATE TABLE table_name_51 (attendance VARCHAR, home_team VARCHAR) ### Question: What was the attendance at the Billericay Town home game? ### Answer: SELECT attendance FROM table_name_51 WHERE home_team = "billericay town"
|
What was the tie number of the away game for Ashford Town (Middx)?
|
CREATE TABLE table_name_79 (tie_no VARCHAR, away_team VARCHAR)
|
SELECT tie_no FROM table_name_79 WHERE away_team = "ashford town (middx)"
|
### Context: CREATE TABLE table_name_79 (tie_no VARCHAR, away_team VARCHAR) ### Question: What was the tie number of the away game for Ashford Town (Middx)? ### Answer: SELECT tie_no FROM table_name_79 WHERE away_team = "ashford town (middx)"
|
What was the attendance at the Billericay Town home game?
|
CREATE TABLE table_name_34 (attendance VARCHAR, home_team VARCHAR)
|
SELECT attendance FROM table_name_34 WHERE home_team = "billericay town"
|
### Context: CREATE TABLE table_name_34 (attendance VARCHAR, home_team VARCHAR) ### Question: What was the attendance at the Billericay Town home game? ### Answer: SELECT attendance FROM table_name_34 WHERE home_team = "billericay town"
|
Who was the away team at the game attended by 81?
|
CREATE TABLE table_name_6 (away_team VARCHAR, attendance VARCHAR)
|
SELECT away_team FROM table_name_6 WHERE attendance = "81"
|
### Context: CREATE TABLE table_name_6 (away_team VARCHAR, attendance VARCHAR) ### Question: Who was the away team at the game attended by 81? ### Answer: SELECT away_team FROM table_name_6 WHERE attendance = "81"
|
What score has a tie of 5?
|
CREATE TABLE table_name_55 (score VARCHAR, tie_no VARCHAR)
|
SELECT score FROM table_name_55 WHERE tie_no = "5"
|
### Context: CREATE TABLE table_name_55 (score VARCHAR, tie_no VARCHAR) ### Question: What score has a tie of 5? ### Answer: SELECT score FROM table_name_55 WHERE tie_no = "5"
|
What was the date of the game that tied at 3?
|
CREATE TABLE table_name_56 (date VARCHAR, tie_no VARCHAR)
|
SELECT date FROM table_name_56 WHERE tie_no = "3"
|
### Context: CREATE TABLE table_name_56 (date VARCHAR, tie_no VARCHAR) ### Question: What was the date of the game that tied at 3? ### Answer: SELECT date FROM table_name_56 WHERE tie_no = "3"
|
What is European Release Date, when North American Release Date is "2013-03-05"?
|
CREATE TABLE table_name_50 (european_release_date VARCHAR, north_american_release_date VARCHAR)
|
SELECT european_release_date FROM table_name_50 WHERE north_american_release_date = "2013-03-05"
|
### Context: CREATE TABLE table_name_50 (european_release_date VARCHAR, north_american_release_date VARCHAR) ### Question: What is European Release Date, when North American Release Date is "2013-03-05"? ### Answer: SELECT european_release_date FROM table_name_50 WHERE north_american_release_date = "2013-03-05"
|
What is Japanese Release Date, when Australia Release Date is "2006-03-23"?
|
CREATE TABLE table_name_34 (japanese_release_date VARCHAR, australia_release_date VARCHAR)
|
SELECT japanese_release_date FROM table_name_34 WHERE australia_release_date = "2006-03-23"
|
### Context: CREATE TABLE table_name_34 (japanese_release_date VARCHAR, australia_release_date VARCHAR) ### Question: What is Japanese Release Date, when Australia Release Date is "2006-03-23"? ### Answer: SELECT japanese_release_date FROM table_name_34 WHERE australia_release_date = "2006-03-23"
|
What is North American Release Date, when Japanese Release Date is "2011-06-23"?
|
CREATE TABLE table_name_17 (north_american_release_date VARCHAR, japanese_release_date VARCHAR)
|
SELECT north_american_release_date FROM table_name_17 WHERE japanese_release_date = "2011-06-23"
|
### Context: CREATE TABLE table_name_17 (north_american_release_date VARCHAR, japanese_release_date VARCHAR) ### Question: What is North American Release Date, when Japanese Release Date is "2011-06-23"? ### Answer: SELECT north_american_release_date FROM table_name_17 WHERE japanese_release_date = "2011-06-23"
|
What is the goal difference when there are fewer than 12 wins, 32 goals against and 8 draws?
|
CREATE TABLE table_name_3 (goal_difference INTEGER, wins VARCHAR, draws VARCHAR, goals_against VARCHAR)
|
SELECT SUM(goal_difference) FROM table_name_3 WHERE draws = 8 AND goals_against = 32 AND wins < 12
|
### Context: CREATE TABLE table_name_3 (goal_difference INTEGER, wins VARCHAR, draws VARCHAR, goals_against VARCHAR) ### Question: What is the goal difference when there are fewer than 12 wins, 32 goals against and 8 draws? ### Answer: SELECT SUM(goal_difference) FROM table_name_3 WHERE draws = 8 AND goals_against = 32 AND wins < 12
|
What's the lowest goal difference when the position is higher than 16?
|
CREATE TABLE table_name_85 (goal_difference INTEGER, position INTEGER)
|
SELECT MIN(goal_difference) FROM table_name_85 WHERE position > 16
|
### Context: CREATE TABLE table_name_85 (goal_difference INTEGER, position INTEGER) ### Question: What's the lowest goal difference when the position is higher than 16? ### Answer: SELECT MIN(goal_difference) FROM table_name_85 WHERE position > 16
|
Which venue was the opposing team New Zealand on 22/11/1997?
|
CREATE TABLE table_name_11 (venue VARCHAR, opposing_teams VARCHAR, date VARCHAR)
|
SELECT venue FROM table_name_11 WHERE opposing_teams = "new zealand" AND date = "22/11/1997"
|
### Context: CREATE TABLE table_name_11 (venue VARCHAR, opposing_teams VARCHAR, date VARCHAR) ### Question: Which venue was the opposing team New Zealand on 22/11/1997? ### Answer: SELECT venue FROM table_name_11 WHERE opposing_teams = "new zealand" AND date = "22/11/1997"
|
What day was the opposing team Australia and the against 25?
|
CREATE TABLE table_name_77 (date VARCHAR, against VARCHAR, opposing_teams VARCHAR)
|
SELECT date FROM table_name_77 WHERE against = 25 AND opposing_teams = "australia"
|
### Context: CREATE TABLE table_name_77 (date VARCHAR, against VARCHAR, opposing_teams VARCHAR) ### Question: What day was the opposing team Australia and the against 25? ### Answer: SELECT date FROM table_name_77 WHERE against = 25 AND opposing_teams = "australia"
|
What was the status for the opposing team South Africa?
|
CREATE TABLE table_name_9 (status VARCHAR, opposing_teams VARCHAR)
|
SELECT status FROM table_name_9 WHERE opposing_teams = "south africa"
|
### Context: CREATE TABLE table_name_9 (status VARCHAR, opposing_teams VARCHAR) ### Question: What was the status for the opposing team South Africa? ### Answer: SELECT status FROM table_name_9 WHERE opposing_teams = "south africa"
|
What is the League Goals when the FA Cup Goals are 0, position is mf, League Cup Apps of 0, and name is Ben Thornley?
|
CREATE TABLE table_name_98 (league_goals INTEGER, name VARCHAR, league_cup_apps VARCHAR, fa_cup_goals VARCHAR, position VARCHAR)
|
SELECT AVG(league_goals) FROM table_name_98 WHERE fa_cup_goals = "0" AND position = "mf" AND league_cup_apps = "0" AND name = "ben thornley"
|
### Context: CREATE TABLE table_name_98 (league_goals INTEGER, name VARCHAR, league_cup_apps VARCHAR, fa_cup_goals VARCHAR, position VARCHAR) ### Question: What is the League Goals when the FA Cup Goals are 0, position is mf, League Cup Apps of 0, and name is Ben Thornley? ### Answer: SELECT AVG(league_goals) FROM table_name_98 WHERE fa_cup_goals = "0" AND position = "mf" AND league_cup_apps = "0" AND name = "ben thornley"
|
What is the Total Apps when League Cup Apps is 0 (1), and position is df?
|
CREATE TABLE table_name_55 (total_apps VARCHAR, league_cup_apps VARCHAR, position VARCHAR)
|
SELECT total_apps FROM table_name_55 WHERE league_cup_apps = "0 (1)" AND position = "df"
|
### Context: CREATE TABLE table_name_55 (total_apps VARCHAR, league_cup_apps VARCHAR, position VARCHAR) ### Question: What is the Total Apps when League Cup Apps is 0 (1), and position is df? ### Answer: SELECT total_apps FROM table_name_55 WHERE league_cup_apps = "0 (1)" AND position = "df"
|
What is the total goals for Mark Ward?
|
CREATE TABLE table_name_64 (total_goals INTEGER, name VARCHAR)
|
SELECT MIN(total_goals) FROM table_name_64 WHERE name = "mark ward"
|
### Context: CREATE TABLE table_name_64 (total_goals INTEGER, name VARCHAR) ### Question: What is the total goals for Mark Ward? ### Answer: SELECT MIN(total_goals) FROM table_name_64 WHERE name = "mark ward"
|
What is the political party of Jackie Goldberg?
|
CREATE TABLE table_name_85 (party VARCHAR, name VARCHAR)
|
SELECT party FROM table_name_85 WHERE name = "jackie goldberg"
|
### Context: CREATE TABLE table_name_85 (party VARCHAR, name VARCHAR) ### Question: What is the political party of Jackie Goldberg? ### Answer: SELECT party FROM table_name_85 WHERE name = "jackie goldberg"
|
During what years was Christine Kehoe in Assembly?
|
CREATE TABLE table_name_71 (years_in_assembly VARCHAR, name VARCHAR)
|
SELECT years_in_assembly FROM table_name_71 WHERE name = "christine kehoe"
|
### Context: CREATE TABLE table_name_71 (years_in_assembly VARCHAR, name VARCHAR) ### Question: During what years was Christine Kehoe in Assembly? ### Answer: SELECT years_in_assembly FROM table_name_71 WHERE name = "christine kehoe"
|
What were the San Francisco resident's years in assembly?
|
CREATE TABLE table_name_54 (years_in_assembly VARCHAR, residence VARCHAR)
|
SELECT years_in_assembly FROM table_name_54 WHERE residence = "san francisco"
|
### Context: CREATE TABLE table_name_54 (years_in_assembly VARCHAR, residence VARCHAR) ### Question: What were the San Francisco resident's years in assembly? ### Answer: SELECT years_in_assembly FROM table_name_54 WHERE residence = "san francisco"
|
What political party does the person from San Diego belong to?
|
CREATE TABLE table_name_75 (party VARCHAR, residence VARCHAR)
|
SELECT party FROM table_name_75 WHERE residence = "san diego"
|
### Context: CREATE TABLE table_name_75 (party VARCHAR, residence VARCHAR) ### Question: What political party does the person from San Diego belong to? ### Answer: SELECT party FROM table_name_75 WHERE residence = "san diego"
|
Which Opposing Teams is on 06/02/1988?
|
CREATE TABLE table_name_18 (opposing_teams VARCHAR, date VARCHAR)
|
SELECT opposing_teams FROM table_name_18 WHERE date = "06/02/1988"
|
### Context: CREATE TABLE table_name_18 (opposing_teams VARCHAR, date VARCHAR) ### Question: Which Opposing Teams is on 06/02/1988? ### Answer: SELECT opposing_teams FROM table_name_18 WHERE date = "06/02/1988"
|
When Status of five nations, and a Venue of twickenham , london, and a Opposing Teams of ireland are in?
|
CREATE TABLE table_name_42 (date VARCHAR, opposing_teams VARCHAR, status VARCHAR, venue VARCHAR)
|
SELECT date FROM table_name_42 WHERE status = "five nations" AND venue = "twickenham , london" AND opposing_teams = "ireland"
|
### Context: CREATE TABLE table_name_42 (date VARCHAR, opposing_teams VARCHAR, status VARCHAR, venue VARCHAR) ### Question: When Status of five nations, and a Venue of twickenham , london, and a Opposing Teams of ireland are in? ### Answer: SELECT date FROM table_name_42 WHERE status = "five nations" AND venue = "twickenham , london" AND opposing_teams = "ireland"
|
What's the attendance when the opponents are cambridge united?
|
CREATE TABLE table_name_12 (attendance VARCHAR, opponents VARCHAR)
|
SELECT attendance FROM table_name_12 WHERE opponents = "cambridge united"
|
### Context: CREATE TABLE table_name_12 (attendance VARCHAR, opponents VARCHAR) ### Question: What's the attendance when the opponents are cambridge united? ### Answer: SELECT attendance FROM table_name_12 WHERE opponents = "cambridge united"
|
What's the average attendance when the opponents are dundalk?
|
CREATE TABLE table_name_85 (attendance INTEGER, opponents VARCHAR)
|
SELECT AVG(attendance) FROM table_name_85 WHERE opponents = "dundalk"
|
### Context: CREATE TABLE table_name_85 (attendance INTEGER, opponents VARCHAR) ### Question: What's the average attendance when the opponents are dundalk? ### Answer: SELECT AVG(attendance) FROM table_name_85 WHERE opponents = "dundalk"
|
What's the total attendance for H/A of A and opponents of wolverhampton wanderers?
|
CREATE TABLE table_name_42 (attendance VARCHAR, h___a VARCHAR, opponents VARCHAR)
|
SELECT COUNT(attendance) FROM table_name_42 WHERE h___a = "a" AND opponents = "wolverhampton wanderers"
|
### Context: CREATE TABLE table_name_42 (attendance VARCHAR, h___a VARCHAR, opponents VARCHAR) ### Question: What's the total attendance for H/A of A and opponents of wolverhampton wanderers? ### Answer: SELECT COUNT(attendance) FROM table_name_42 WHERE h___a = "a" AND opponents = "wolverhampton wanderers"
|
Which Total has a Gold smaller than 4?
|
CREATE TABLE table_name_44 (total INTEGER, gold INTEGER)
|
SELECT MIN(total) FROM table_name_44 WHERE gold < 4
|
### Context: CREATE TABLE table_name_44 (total INTEGER, gold INTEGER) ### Question: Which Total has a Gold smaller than 4? ### Answer: SELECT MIN(total) FROM table_name_44 WHERE gold < 4
|
Which Rank has a Nation of china (chn), and a Bronze smaller than 4?
|
CREATE TABLE table_name_17 (rank INTEGER, nation VARCHAR, bronze VARCHAR)
|
SELECT MAX(rank) FROM table_name_17 WHERE nation = "china (chn)" AND bronze < 4
|
### Context: CREATE TABLE table_name_17 (rank INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: Which Rank has a Nation of china (chn), and a Bronze smaller than 4? ### Answer: SELECT MAX(rank) FROM table_name_17 WHERE nation = "china (chn)" AND bronze < 4
|
How much Total has a Bronze smaller than 13, and a Nation of netherlands (ned), and a Gold larger than 4?
|
CREATE TABLE table_name_20 (total VARCHAR, gold VARCHAR, bronze VARCHAR, nation VARCHAR)
|
SELECT COUNT(total) FROM table_name_20 WHERE bronze < 13 AND nation = "netherlands (ned)" AND gold > 4
|
### Context: CREATE TABLE table_name_20 (total VARCHAR, gold VARCHAR, bronze VARCHAR, nation VARCHAR) ### Question: How much Total has a Bronze smaller than 13, and a Nation of netherlands (ned), and a Gold larger than 4? ### Answer: SELECT COUNT(total) FROM table_name_20 WHERE bronze < 13 AND nation = "netherlands (ned)" AND gold > 4
|
Which website was founded before 1897, and is located in Adaminaby?
|
CREATE TABLE table_name_82 (website VARCHAR, founded VARCHAR, suburb_town VARCHAR)
|
SELECT website FROM table_name_82 WHERE founded < 1897 AND suburb_town = "adaminaby"
|
### Context: CREATE TABLE table_name_82 (website VARCHAR, founded VARCHAR, suburb_town VARCHAR) ### Question: Which website was founded before 1897, and is located in Adaminaby? ### Answer: SELECT website FROM table_name_82 WHERE founded < 1897 AND suburb_town = "adaminaby"
|
What is the average year founded that is located in Broken Hill and has school years of k-6?
|
CREATE TABLE table_name_31 (founded INTEGER, years VARCHAR, suburb_town VARCHAR)
|
SELECT AVG(founded) FROM table_name_31 WHERE years = "k-6" AND suburb_town = "broken hill"
|
### Context: CREATE TABLE table_name_31 (founded INTEGER, years VARCHAR, suburb_town VARCHAR) ### Question: What is the average year founded that is located in Broken Hill and has school years of k-6? ### Answer: SELECT AVG(founded) FROM table_name_31 WHERE years = "k-6" AND suburb_town = "broken hill"
|
What suburb/town has school years of k-6, was founded before 1875, and has Ashfield Public School as its school?
|
CREATE TABLE table_name_11 (suburb_town VARCHAR, school VARCHAR, years VARCHAR, founded VARCHAR)
|
SELECT suburb_town FROM table_name_11 WHERE years = "k-6" AND founded < 1875 AND school = "ashfield public school"
|
### Context: CREATE TABLE table_name_11 (suburb_town VARCHAR, school VARCHAR, years VARCHAR, founded VARCHAR) ### Question: What suburb/town has school years of k-6, was founded before 1875, and has Ashfield Public School as its school? ### Answer: SELECT suburb_town FROM table_name_11 WHERE years = "k-6" AND founded < 1875 AND school = "ashfield public school"
|
What is the year Airds High School was founded?
|
CREATE TABLE table_name_65 (founded VARCHAR, school VARCHAR)
|
SELECT founded FROM table_name_65 WHERE school = "airds high school"
|
### Context: CREATE TABLE table_name_65 (founded VARCHAR, school VARCHAR) ### Question: What is the year Airds High School was founded? ### Answer: SELECT founded FROM table_name_65 WHERE school = "airds high school"
|
Which website has 1921 as the year founded?
|
CREATE TABLE table_name_76 (website VARCHAR, founded VARCHAR)
|
SELECT website FROM table_name_76 WHERE founded = 1921
|
### Context: CREATE TABLE table_name_76 (website VARCHAR, founded VARCHAR) ### Question: Which website has 1921 as the year founded? ### Answer: SELECT website FROM table_name_76 WHERE founded = 1921
|
What Score points has a Rank points of defending champion?
|
CREATE TABLE table_name_80 (score_points VARCHAR, rank_points VARCHAR)
|
SELECT score_points FROM table_name_80 WHERE rank_points = "defending champion"
|
### Context: CREATE TABLE table_name_80 (score_points VARCHAR, rank_points VARCHAR) ### Question: What Score points has a Rank points of defending champion? ### Answer: SELECT score_points FROM table_name_80 WHERE rank_points = "defending champion"
|
What Rank points has an Event of wc beijing, and Score points of 11?
|
CREATE TABLE table_name_40 (rank_points VARCHAR, event VARCHAR, score_points VARCHAR)
|
SELECT rank_points FROM table_name_40 WHERE event = "wc beijing" AND score_points = "11"
|
### Context: CREATE TABLE table_name_40 (rank_points VARCHAR, event VARCHAR, score_points VARCHAR) ### Question: What Rank points has an Event of wc beijing, and Score points of 11? ### Answer: SELECT rank_points FROM table_name_40 WHERE event = "wc beijing" AND score_points = "11"
|
What Shooter has a Total of 28?
|
CREATE TABLE table_name_9 (shooter VARCHAR, total VARCHAR)
|
SELECT shooter FROM table_name_9 WHERE total = "28"
|
### Context: CREATE TABLE table_name_9 (shooter VARCHAR, total VARCHAR) ### Question: What Shooter has a Total of 28? ### Answer: SELECT shooter FROM table_name_9 WHERE total = "28"
|
What Shooter has an Event of wc beijing, a Total of 16, and Rank points of 4?
|
CREATE TABLE table_name_21 (shooter VARCHAR, rank_points VARCHAR, event VARCHAR, total VARCHAR)
|
SELECT shooter FROM table_name_21 WHERE event = "wc beijing" AND total = "16" AND rank_points = "4"
|
### Context: CREATE TABLE table_name_21 (shooter VARCHAR, rank_points VARCHAR, event VARCHAR, total VARCHAR) ### Question: What Shooter has an Event of wc beijing, a Total of 16, and Rank points of 4? ### Answer: SELECT shooter FROM table_name_21 WHERE event = "wc beijing" AND total = "16" AND rank_points = "4"
|
What is the average against of Murrayfield, Edinburgh?
|
CREATE TABLE table_name_13 (against INTEGER, venue VARCHAR)
|
SELECT AVG(against) FROM table_name_13 WHERE venue = "murrayfield, edinburgh"
|
### Context: CREATE TABLE table_name_13 (against INTEGER, venue VARCHAR) ### Question: What is the average against of Murrayfield, Edinburgh? ### Answer: SELECT AVG(against) FROM table_name_13 WHERE venue = "murrayfield, edinburgh"
|
What is the status of the Wales opposing team?
|
CREATE TABLE table_name_70 (status VARCHAR, opposing_teams VARCHAR)
|
SELECT status FROM table_name_70 WHERE opposing_teams = "wales"
|
### Context: CREATE TABLE table_name_70 (status VARCHAR, opposing_teams VARCHAR) ### Question: What is the status of the Wales opposing team? ### Answer: SELECT status FROM table_name_70 WHERE opposing_teams = "wales"
|
What date has an against of 7?
|
CREATE TABLE table_name_95 (date VARCHAR, against VARCHAR)
|
SELECT date FROM table_name_95 WHERE against = 7
|
### Context: CREATE TABLE table_name_95 (date VARCHAR, against VARCHAR) ### Question: What date has an against of 7? ### Answer: SELECT date FROM table_name_95 WHERE against = 7
|
What District was Incumbent Steve Israel First elected after 1998 in the Democratic party?
|
CREATE TABLE table_name_1 (district VARCHAR, incumbent VARCHAR, first_elected VARCHAR, party VARCHAR)
|
SELECT district FROM table_name_1 WHERE first_elected > 1998 AND party = "democratic" AND incumbent = "steve israel"
|
### Context: CREATE TABLE table_name_1 (district VARCHAR, incumbent VARCHAR, first_elected VARCHAR, party VARCHAR) ### Question: What District was Incumbent Steve Israel First elected after 1998 in the Democratic party? ### Answer: SELECT district FROM table_name_1 WHERE first_elected > 1998 AND party = "democratic" AND incumbent = "steve israel"
|
What are the results of a first elected prior to year 1982?
|
CREATE TABLE table_name_48 (results VARCHAR, first_elected INTEGER)
|
SELECT results FROM table_name_48 WHERE first_elected < 1982
|
### Context: CREATE TABLE table_name_48 (results VARCHAR, first_elected INTEGER) ### Question: What are the results of a first elected prior to year 1982? ### Answer: SELECT results FROM table_name_48 WHERE first_elected < 1982
|
Who is the Incumbent of the Democratic Party at an election after 1992 in the New York 1 District who was Re-elected?
|
CREATE TABLE table_name_45 (incumbent VARCHAR, district VARCHAR, first_elected VARCHAR, party VARCHAR, results VARCHAR)
|
SELECT incumbent FROM table_name_45 WHERE party = "democratic" AND results = "re-elected" AND first_elected > 1992 AND district = "new york 1"
|
### Context: CREATE TABLE table_name_45 (incumbent VARCHAR, district VARCHAR, first_elected VARCHAR, party VARCHAR, results VARCHAR) ### Question: Who is the Incumbent of the Democratic Party at an election after 1992 in the New York 1 District who was Re-elected? ### Answer: SELECT incumbent FROM table_name_45 WHERE party = "democratic" AND results = "re-elected" AND first_elected > 1992 AND district = "new york 1"
|
What is Gene Sauers' to par?
|
CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR)
|
SELECT to_par FROM table_name_28 WHERE player = "gene sauers"
|
### Context: CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR) ### Question: What is Gene Sauers' to par? ### Answer: SELECT to_par FROM table_name_28 WHERE player = "gene sauers"
|
Where is john daly of united states from?
|
CREATE TABLE table_name_77 (place VARCHAR, country VARCHAR, player VARCHAR)
|
SELECT place FROM table_name_77 WHERE country = "united states" AND player = "john daly"
|
### Context: CREATE TABLE table_name_77 (place VARCHAR, country VARCHAR, player VARCHAR) ### Question: Where is john daly of united states from? ### Answer: SELECT place FROM table_name_77 WHERE country = "united states" AND player = "john daly"
|
What is the average rank of the city of el paso, which has a population greater than 672,538?
|
CREATE TABLE table_name_69 (rank INTEGER, city VARCHAR, population VARCHAR)
|
SELECT AVG(rank) FROM table_name_69 WHERE city = "el paso" AND population > 672 OFFSET 538
|
### Context: CREATE TABLE table_name_69 (rank INTEGER, city VARCHAR, population VARCHAR) ### Question: What is the average rank of the city of el paso, which has a population greater than 672,538? ### Answer: SELECT AVG(rank) FROM table_name_69 WHERE city = "el paso" AND population > 672 OFFSET 538
|
What is the state of the city of denver, which has a rank less than 10?
|
CREATE TABLE table_name_99 (state VARCHAR, rank VARCHAR, city VARCHAR)
|
SELECT state FROM table_name_99 WHERE rank < 10 AND city = "denver"
|
### Context: CREATE TABLE table_name_99 (state VARCHAR, rank VARCHAR, city VARCHAR) ### Question: What is the state of the city of denver, which has a rank less than 10? ### Answer: SELECT state FROM table_name_99 WHERE rank < 10 AND city = "denver"
|
What is the result when the round is less than 3, the location is in Auckland, New Zealand, and tko is the method?
|
CREATE TABLE table_name_29 (result VARCHAR, method VARCHAR, round VARCHAR, location VARCHAR)
|
SELECT result FROM table_name_29 WHERE round < 3 AND location = "auckland, new zealand" AND method = "tko"
|
### Context: CREATE TABLE table_name_29 (result VARCHAR, method VARCHAR, round VARCHAR, location VARCHAR) ### Question: What is the result when the round is less than 3, the location is in Auckland, New Zealand, and tko is the method? ### Answer: SELECT result FROM table_name_29 WHERE round < 3 AND location = "auckland, new zealand" AND method = "tko"
|
What is the smallest round to have a record of 4-0?
|
CREATE TABLE table_name_95 (round INTEGER, record VARCHAR)
|
SELECT MIN(round) FROM table_name_95 WHERE record = "4-0"
|
### Context: CREATE TABLE table_name_95 (round INTEGER, record VARCHAR) ### Question: What is the smallest round to have a record of 4-0? ### Answer: SELECT MIN(round) FROM table_name_95 WHERE record = "4-0"
|
What is the result of a round greater than 3?
|
CREATE TABLE table_name_55 (result VARCHAR, round INTEGER)
|
SELECT result FROM table_name_55 WHERE round > 3
|
### Context: CREATE TABLE table_name_55 (result VARCHAR, round INTEGER) ### Question: What is the result of a round greater than 3? ### Answer: SELECT result FROM table_name_55 WHERE round > 3
|
Which event has Toa Naketoatama as an opponent?
|
CREATE TABLE table_name_92 (event VARCHAR, opponent VARCHAR)
|
SELECT event FROM table_name_92 WHERE opponent = "toa naketoatama"
|
### Context: CREATE TABLE table_name_92 (event VARCHAR, opponent VARCHAR) ### Question: Which event has Toa Naketoatama as an opponent? ### Answer: SELECT event FROM table_name_92 WHERE opponent = "toa naketoatama"
|
How many kills have 15 as the injured, with a year prior to 1987?
|
CREATE TABLE table_name_4 (killed INTEGER, injured VARCHAR, year VARCHAR)
|
SELECT SUM(killed) FROM table_name_4 WHERE injured = "15" AND year < 1987
|
### Context: CREATE TABLE table_name_4 (killed INTEGER, injured VARCHAR, year VARCHAR) ### Question: How many kills have 15 as the injured, with a year prior to 1987? ### Answer: SELECT SUM(killed) FROM table_name_4 WHERE injured = "15" AND year < 1987
|
What is Date, when Opposing Teams is "South Africa", and when Venus is "Vodacom Park , Bloemfontein"?
|
CREATE TABLE table_name_22 (date VARCHAR, opposing_teams VARCHAR, venue VARCHAR)
|
SELECT date FROM table_name_22 WHERE opposing_teams = "south africa" AND venue = "vodacom park , bloemfontein"
|
### Context: CREATE TABLE table_name_22 (date VARCHAR, opposing_teams VARCHAR, venue VARCHAR) ### Question: What is Date, when Opposing Teams is "South Africa", and when Venus is "Vodacom Park , Bloemfontein"? ### Answer: SELECT date FROM table_name_22 WHERE opposing_teams = "south africa" AND venue = "vodacom park , bloemfontein"
|
What is the average Against, when Status is "2007 Rugby World Cup", and when Opposing Teams is "U.S.A."?
|
CREATE TABLE table_name_74 (against INTEGER, status VARCHAR, opposing_teams VARCHAR)
|
SELECT AVG(against) FROM table_name_74 WHERE status = "2007 rugby world cup" AND opposing_teams = "u.s.a."
|
### Context: CREATE TABLE table_name_74 (against INTEGER, status VARCHAR, opposing_teams VARCHAR) ### Question: What is the average Against, when Status is "2007 Rugby World Cup", and when Opposing Teams is "U.S.A."? ### Answer: SELECT AVG(against) FROM table_name_74 WHERE status = "2007 rugby world cup" AND opposing_teams = "u.s.a."
|
What is Venue, when Status is "2007 Rugby World Cup", when Against is less than 22, and when Date is "08/09/2007"?
|
CREATE TABLE table_name_22 (venue VARCHAR, date VARCHAR, status VARCHAR, against VARCHAR)
|
SELECT venue FROM table_name_22 WHERE status = "2007 rugby world cup" AND against < 22 AND date = "08/09/2007"
|
### Context: CREATE TABLE table_name_22 (venue VARCHAR, date VARCHAR, status VARCHAR, against VARCHAR) ### Question: What is Venue, when Status is "2007 Rugby World Cup", when Against is less than 22, and when Date is "08/09/2007"? ### Answer: SELECT venue FROM table_name_22 WHERE status = "2007 rugby world cup" AND against < 22 AND date = "08/09/2007"
|
What is the lowest Against, when Status is "First Test", and when Date is "26/05/2007"?
|
CREATE TABLE table_name_42 (against INTEGER, status VARCHAR, date VARCHAR)
|
SELECT MIN(against) FROM table_name_42 WHERE status = "first test" AND date = "26/05/2007"
|
### Context: CREATE TABLE table_name_42 (against INTEGER, status VARCHAR, date VARCHAR) ### Question: What is the lowest Against, when Status is "First Test", and when Date is "26/05/2007"? ### Answer: SELECT MIN(against) FROM table_name_42 WHERE status = "first test" AND date = "26/05/2007"
|
What is Opposing Teams, when Against is "20", and when Venue is "Twickenham , London"?
|
CREATE TABLE table_name_35 (opposing_teams VARCHAR, against VARCHAR, venue VARCHAR)
|
SELECT opposing_teams FROM table_name_35 WHERE against = 20 AND venue = "twickenham , london"
|
### Context: CREATE TABLE table_name_35 (opposing_teams VARCHAR, against VARCHAR, venue VARCHAR) ### Question: What is Opposing Teams, when Against is "20", and when Venue is "Twickenham , London"? ### Answer: SELECT opposing_teams FROM table_name_35 WHERE against = 20 AND venue = "twickenham , london"
|
What is the record when Danilo Pereira was the opponent?
|
CREATE TABLE table_name_58 (record VARCHAR, opponent VARCHAR)
|
SELECT record FROM table_name_58 WHERE opponent = "danilo pereira"
|
### Context: CREATE TABLE table_name_58 (record VARCHAR, opponent VARCHAR) ### Question: What is the record when Danilo Pereira was the opponent? ### Answer: SELECT record FROM table_name_58 WHERE opponent = "danilo pereira"
|
Which event had Edson Claas Vieira as an opponent?
|
CREATE TABLE table_name_55 (event VARCHAR, opponent VARCHAR)
|
SELECT event FROM table_name_55 WHERE opponent = "edson claas vieira"
|
### Context: CREATE TABLE table_name_55 (event VARCHAR, opponent VARCHAR) ### Question: Which event had Edson Claas Vieira as an opponent? ### Answer: SELECT event FROM table_name_55 WHERE opponent = "edson claas vieira"
|
Which method was used when Rafael Cavalcante was the opponent?
|
CREATE TABLE table_name_2 (method VARCHAR, opponent VARCHAR)
|
SELECT method FROM table_name_2 WHERE opponent = "rafael cavalcante"
|
### Context: CREATE TABLE table_name_2 (method VARCHAR, opponent VARCHAR) ### Question: Which method was used when Rafael Cavalcante was the opponent? ### Answer: SELECT method FROM table_name_2 WHERE opponent = "rafael cavalcante"
|
Which method was used when Alessio Sakara was the opponent?
|
CREATE TABLE table_name_38 (method VARCHAR, opponent VARCHAR)
|
SELECT method FROM table_name_38 WHERE opponent = "alessio sakara"
|
### Context: CREATE TABLE table_name_38 (method VARCHAR, opponent VARCHAR) ### Question: Which method was used when Alessio Sakara was the opponent? ### Answer: SELECT method FROM table_name_38 WHERE opponent = "alessio sakara"
|
Who is the opponent when the record is 3-8?
|
CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR)
|
SELECT opponent FROM table_name_53 WHERE record = "3-8"
|
### Context: CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR) ### Question: Who is the opponent when the record is 3-8? ### Answer: SELECT opponent FROM table_name_53 WHERE record = "3-8"
|
What was the 2006 population for the local government area of alexandrina council whose rank was smaller than 19?
|
CREATE TABLE table_name_66 (population_2006_census INTEGER, local_government_area VARCHAR, rank VARCHAR)
|
SELECT AVG(population_2006_census) FROM table_name_66 WHERE local_government_area = "alexandrina council" AND rank < 19
|
### Context: CREATE TABLE table_name_66 (population_2006_census INTEGER, local_government_area VARCHAR, rank VARCHAR) ### Question: What was the 2006 population for the local government area of alexandrina council whose rank was smaller than 19? ### Answer: SELECT AVG(population_2006_census) FROM table_name_66 WHERE local_government_area = "alexandrina council" AND rank < 19
|
What is the total fat with a smoke point of °c (), 25g of saturated fat?
|
CREATE TABLE table_name_60 (total_fat VARCHAR, smoke_point VARCHAR, saturated_fat VARCHAR)
|
SELECT total_fat FROM table_name_60 WHERE smoke_point = "°c ()" AND saturated_fat = "25g"
|
### Context: CREATE TABLE table_name_60 (total_fat VARCHAR, smoke_point VARCHAR, saturated_fat VARCHAR) ### Question: What is the total fat with a smoke point of °c (), 25g of saturated fat? ### Answer: SELECT total_fat FROM table_name_60 WHERE smoke_point = "°c ()" AND saturated_fat = "25g"
|
What is the total fat when the polyunsaturated fat is 11g, and Monounsaturated fat is 73g?
|
CREATE TABLE table_name_63 (total_fat VARCHAR, polyunsaturated_fat VARCHAR, monounsaturated_fat VARCHAR)
|
SELECT total_fat FROM table_name_63 WHERE polyunsaturated_fat = "11g" AND monounsaturated_fat = "73g"
|
### Context: CREATE TABLE table_name_63 (total_fat VARCHAR, polyunsaturated_fat VARCHAR, monounsaturated_fat VARCHAR) ### Question: What is the total fat when the polyunsaturated fat is 11g, and Monounsaturated fat is 73g? ### Answer: SELECT total_fat FROM table_name_63 WHERE polyunsaturated_fat = "11g" AND monounsaturated_fat = "73g"
|
What is the smoke point with a total fat of 100g, and monounsaturated fat of 46g?
|
CREATE TABLE table_name_97 (smoke_point VARCHAR, total_fat VARCHAR, monounsaturated_fat VARCHAR)
|
SELECT smoke_point FROM table_name_97 WHERE total_fat = "100g" AND monounsaturated_fat = "46g"
|
### Context: CREATE TABLE table_name_97 (smoke_point VARCHAR, total_fat VARCHAR, monounsaturated_fat VARCHAR) ### Question: What is the smoke point with a total fat of 100g, and monounsaturated fat of 46g? ### Answer: SELECT smoke_point FROM table_name_97 WHERE total_fat = "100g" AND monounsaturated_fat = "46g"
|
What shows for monounsaturated fat when the saturated fat is 39g?
|
CREATE TABLE table_name_32 (monounsaturated_fat VARCHAR, saturated_fat VARCHAR)
|
SELECT monounsaturated_fat FROM table_name_32 WHERE saturated_fat = "39g"
|
### Context: CREATE TABLE table_name_32 (monounsaturated_fat VARCHAR, saturated_fat VARCHAR) ### Question: What shows for monounsaturated fat when the saturated fat is 39g? ### Answer: SELECT monounsaturated_fat FROM table_name_32 WHERE saturated_fat = "39g"
|
What is the smoke point when the polyunsaturated fat is 69g (4g in high oleic variety)?
|
CREATE TABLE table_name_24 (smoke_point VARCHAR, polyunsaturated_fat VARCHAR)
|
SELECT smoke_point FROM table_name_24 WHERE polyunsaturated_fat = "69g (4g in high oleic variety)"
|
### Context: CREATE TABLE table_name_24 (smoke_point VARCHAR, polyunsaturated_fat VARCHAR) ### Question: What is the smoke point when the polyunsaturated fat is 69g (4g in high oleic variety)? ### Answer: SELECT smoke_point FROM table_name_24 WHERE polyunsaturated_fat = "69g (4g in high oleic variety)"
|
What is the saturated fat when the total fat is 100g, and polyunsaturated fat is 69g (4g in high oleic variety)?
|
CREATE TABLE table_name_63 (saturated_fat VARCHAR, total_fat VARCHAR, polyunsaturated_fat VARCHAR)
|
SELECT saturated_fat FROM table_name_63 WHERE total_fat = "100g" AND polyunsaturated_fat = "69g (4g in high oleic variety)"
|
### Context: CREATE TABLE table_name_63 (saturated_fat VARCHAR, total_fat VARCHAR, polyunsaturated_fat VARCHAR) ### Question: What is the saturated fat when the total fat is 100g, and polyunsaturated fat is 69g (4g in high oleic variety)? ### Answer: SELECT saturated_fat FROM table_name_63 WHERE total_fat = "100g" AND polyunsaturated_fat = "69g (4g in high oleic variety)"
|
What is the Tie No with a Score of 2–2?
|
CREATE TABLE table_name_26 (tie_no VARCHAR, score VARCHAR)
|
SELECT tie_no FROM table_name_26 WHERE score = "2–2"
|
### Context: CREATE TABLE table_name_26 (tie_no VARCHAR, score VARCHAR) ### Question: What is the Tie No with a Score of 2–2? ### Answer: SELECT tie_no FROM table_name_26 WHERE score = "2–2"
|
What is the Date of the Crystal Palace Away game?
|
CREATE TABLE table_name_33 (date VARCHAR, away_team VARCHAR)
|
SELECT date FROM table_name_33 WHERE away_team = "crystal palace"
|
### Context: CREATE TABLE table_name_33 (date VARCHAR, away_team VARCHAR) ### Question: What is the Date of the Crystal Palace Away game? ### Answer: SELECT date FROM table_name_33 WHERE away_team = "crystal palace"
|
What is the Home team of Tie no 2?
|
CREATE TABLE table_name_20 (home_team VARCHAR, tie_no VARCHAR)
|
SELECT home_team FROM table_name_20 WHERE tie_no = "2"
|
### Context: CREATE TABLE table_name_20 (home_team VARCHAR, tie_no VARCHAR) ### Question: What is the Home team of Tie no 2? ### Answer: SELECT home_team FROM table_name_20 WHERE tie_no = "2"
|
What is the Home team of tie no 2?
|
CREATE TABLE table_name_36 (home_team VARCHAR, tie_no VARCHAR)
|
SELECT home_team FROM table_name_36 WHERE tie_no = "2"
|
### Context: CREATE TABLE table_name_36 (home_team VARCHAR, tie_no VARCHAR) ### Question: What is the Home team of tie no 2? ### Answer: SELECT home_team FROM table_name_36 WHERE tie_no = "2"
|
What is the average Grid, when Laps is less than 24, when Bike is "Honda CBR1000RR", and when Rider is "Jason Pridmore"?
|
CREATE TABLE table_name_7 (grid INTEGER, rider VARCHAR, laps VARCHAR, bike VARCHAR)
|
SELECT AVG(grid) FROM table_name_7 WHERE laps < 24 AND bike = "honda cbr1000rr" AND rider = "jason pridmore"
|
### Context: CREATE TABLE table_name_7 (grid INTEGER, rider VARCHAR, laps VARCHAR, bike VARCHAR) ### Question: What is the average Grid, when Laps is less than 24, when Bike is "Honda CBR1000RR", and when Rider is "Jason Pridmore"? ### Answer: SELECT AVG(grid) FROM table_name_7 WHERE laps < 24 AND bike = "honda cbr1000rr" AND rider = "jason pridmore"
|
What is the highest Laps, when Bike is "Yamaha YZF-R1", when Rider is "David Checa", and when Grid is greater than 18?
|
CREATE TABLE table_name_78 (laps INTEGER, grid VARCHAR, bike VARCHAR, rider VARCHAR)
|
SELECT MAX(laps) FROM table_name_78 WHERE bike = "yamaha yzf-r1" AND rider = "david checa" AND grid > 18
|
### Context: CREATE TABLE table_name_78 (laps INTEGER, grid VARCHAR, bike VARCHAR, rider VARCHAR) ### Question: What is the highest Laps, when Bike is "Yamaha YZF-R1", when Rider is "David Checa", and when Grid is greater than 18? ### Answer: SELECT MAX(laps) FROM table_name_78 WHERE bike = "yamaha yzf-r1" AND rider = "david checa" AND grid > 18
|
What is the sum of Grid, when Time is "+16.687"?
|
CREATE TABLE table_name_60 (grid INTEGER, time VARCHAR)
|
SELECT SUM(grid) FROM table_name_60 WHERE time = "+16.687"
|
### Context: CREATE TABLE table_name_60 (grid INTEGER, time VARCHAR) ### Question: What is the sum of Grid, when Time is "+16.687"? ### Answer: SELECT SUM(grid) FROM table_name_60 WHERE time = "+16.687"
|
What is the total number of Grid, when Laps is greater than 24?
|
CREATE TABLE table_name_78 (grid VARCHAR, laps INTEGER)
|
SELECT COUNT(grid) FROM table_name_78 WHERE laps > 24
|
### Context: CREATE TABLE table_name_78 (grid VARCHAR, laps INTEGER) ### Question: What is the total number of Grid, when Laps is greater than 24? ### Answer: SELECT COUNT(grid) FROM table_name_78 WHERE laps > 24
|
Who was the runner-up after season 2 when the total prize money was $108,000?
|
CREATE TABLE table_name_27 (runner_up VARCHAR, season VARCHAR, total_prize_money VARCHAR)
|
SELECT runner_up FROM table_name_27 WHERE season > 2 AND total_prize_money = "$108,000"
|
### Context: CREATE TABLE table_name_27 (runner_up VARCHAR, season VARCHAR, total_prize_money VARCHAR) ### Question: Who was the runner-up after season 2 when the total prize money was $108,000? ### Answer: SELECT runner_up FROM table_name_27 WHERE season > 2 AND total_prize_money = "$108,000"
|
What was the highest season number with a total prize of $108,000?
|
CREATE TABLE table_name_17 (season INTEGER, total_prize_money VARCHAR)
|
SELECT MAX(season) FROM table_name_17 WHERE total_prize_money = "$108,000"
|
### Context: CREATE TABLE table_name_17 (season INTEGER, total_prize_money VARCHAR) ### Question: What was the highest season number with a total prize of $108,000? ### Answer: SELECT MAX(season) FROM table_name_17 WHERE total_prize_money = "$108,000"
|
What is the earliest season where Aisha Jefcoate was the runner-up?
|
CREATE TABLE table_name_13 (season INTEGER, runner_up VARCHAR)
|
SELECT MIN(season) FROM table_name_13 WHERE runner_up = "aisha jefcoate"
|
### Context: CREATE TABLE table_name_13 (season INTEGER, runner_up VARCHAR) ### Question: What is the earliest season where Aisha Jefcoate was the runner-up? ### Answer: SELECT MIN(season) FROM table_name_13 WHERE runner_up = "aisha jefcoate"
|
When the Mole was Petrina Edge, what was the potential prize money?
|
CREATE TABLE table_name_70 (potential_prize_money VARCHAR, mole VARCHAR)
|
SELECT potential_prize_money FROM table_name_70 WHERE mole = "petrina edge"
|
### Context: CREATE TABLE table_name_70 (potential_prize_money VARCHAR, mole VARCHAR) ### Question: When the Mole was Petrina Edge, what was the potential prize money? ### Answer: SELECT potential_prize_money FROM table_name_70 WHERE mole = "petrina edge"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.