question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
At what average position is the drawn 9 and the points greater than 25?
CREATE TABLE table_name_75 (position INTEGER, drawn VARCHAR, points VARCHAR)
SELECT AVG(position) FROM table_name_75 WHERE drawn = 9 AND points > 25
### Context: CREATE TABLE table_name_75 (position INTEGER, drawn VARCHAR, points VARCHAR) ### Question: At what average position is the drawn 9 and the points greater than 25? ### Answer: SELECT AVG(position) FROM table_name_75 WHERE drawn = 9 AND points > 25
How many played has an against greater than 57 and a lost bigger than 14?
CREATE TABLE table_name_83 (played VARCHAR, against VARCHAR, lost VARCHAR)
SELECT COUNT(played) FROM table_name_83 WHERE against > 57 AND lost > 14
### Context: CREATE TABLE table_name_83 (played VARCHAR, against VARCHAR, lost VARCHAR) ### Question: How many played has an against greater than 57 and a lost bigger than 14? ### Answer: SELECT COUNT(played) FROM table_name_83 WHERE against > 57 AND lost > 14
The event rip curl pro mademoiselle is in which location?
CREATE TABLE table_name_55 (location VARCHAR, event VARCHAR)
SELECT location FROM table_name_55 WHERE event = "rip curl pro mademoiselle"
### Context: CREATE TABLE table_name_55 (location VARCHAR, event VARCHAR) ### Question: The event rip curl pro mademoiselle is in which location? ### Answer: SELECT location FROM table_name_55 WHERE event = "rip curl pro mademoiselle"
On the date november 24-december 6 what's the winner when the country is united states?
CREATE TABLE table_name_35 (winner VARCHAR, country VARCHAR, date VARCHAR)
SELECT winner FROM table_name_35 WHERE country = "united states" AND date = "november 24-december 6"
### Context: CREATE TABLE table_name_35 (winner VARCHAR, country VARCHAR, date VARCHAR) ### Question: On the date november 24-december 6 what's the winner when the country is united states? ### Answer: SELECT winner FROM table_name_35 WHERE country = "united states" AND date = "november 24-december 6"
Which year was the 100 m event played in Thessaloniki, Greece?
CREATE TABLE table_name_93 (year INTEGER, event VARCHAR, venue VARCHAR)
SELECT MIN(year) FROM table_name_93 WHERE event = "100 m" AND venue = "thessaloniki, greece"
### Context: CREATE TABLE table_name_93 (year INTEGER, event VARCHAR, venue VARCHAR) ### Question: Which year was the 100 m event played in Thessaloniki, Greece? ### Answer: SELECT MIN(year) FROM table_name_93 WHERE event = "100 m" AND venue = "thessaloniki, greece"
Which position was the World Indoor Championships in a year later than 2008?
CREATE TABLE table_name_64 (position VARCHAR, competition VARCHAR, year VARCHAR)
SELECT position FROM table_name_64 WHERE competition = "world indoor championships" AND year > 2008
### Context: CREATE TABLE table_name_64 (position VARCHAR, competition VARCHAR, year VARCHAR) ### Question: Which position was the World Indoor Championships in a year later than 2008? ### Answer: SELECT position FROM table_name_64 WHERE competition = "world indoor championships" AND year > 2008
What position was played at the World Athletics Final Competition in a year more recent than 2008?
CREATE TABLE table_name_62 (position VARCHAR, competition VARCHAR, year VARCHAR)
SELECT position FROM table_name_62 WHERE competition = "world athletics final" AND year > 2008
### Context: CREATE TABLE table_name_62 (position VARCHAR, competition VARCHAR, year VARCHAR) ### Question: What position was played at the World Athletics Final Competition in a year more recent than 2008? ### Answer: SELECT position FROM table_name_62 WHERE competition = "world athletics final" AND year > 2008
What position was played at the World Athletics Final Competition in a year more recent than 2008?
CREATE TABLE table_name_11 (position VARCHAR, competition VARCHAR, year VARCHAR)
SELECT position FROM table_name_11 WHERE competition = "world athletics final" AND year > 2008
### Context: CREATE TABLE table_name_11 (position VARCHAR, competition VARCHAR, year VARCHAR) ### Question: What position was played at the World Athletics Final Competition in a year more recent than 2008? ### Answer: SELECT position FROM table_name_11 WHERE competition = "world athletics final" AND year > 2008
What are the goals of the assists of 5?
CREATE TABLE table_name_92 (goals VARCHAR, assists VARCHAR)
SELECT goals FROM table_name_92 WHERE assists = "5"
### Context: CREATE TABLE table_name_92 (goals VARCHAR, assists VARCHAR) ### Question: What are the goals of the assists of 5? ### Answer: SELECT goals FROM table_name_92 WHERE assists = "5"
What is the assists for the year 1995?
CREATE TABLE table_name_66 (assists VARCHAR, year VARCHAR)
SELECT assists FROM table_name_66 WHERE year = "1995"
### Context: CREATE TABLE table_name_66 (assists VARCHAR, year VARCHAR) ### Question: What is the assists for the year 1995? ### Answer: SELECT assists FROM table_name_66 WHERE year = "1995"
What assists has the Team SMU and the total points of 85?
CREATE TABLE table_name_14 (assists VARCHAR, team VARCHAR, total_points VARCHAR)
SELECT assists FROM table_name_14 WHERE team = "smu" AND total_points = "85"
### Context: CREATE TABLE table_name_14 (assists VARCHAR, team VARCHAR, total_points VARCHAR) ### Question: What assists has the Team SMU and the total points of 85? ### Answer: SELECT assists FROM table_name_14 WHERE team = "smu" AND total_points = "85"
What year had 48 assists?
CREATE TABLE table_name_35 (year VARCHAR, assists VARCHAR)
SELECT year FROM table_name_35 WHERE assists = "48"
### Context: CREATE TABLE table_name_35 (year VARCHAR, assists VARCHAR) ### Question: What year had 48 assists? ### Answer: SELECT year FROM table_name_35 WHERE assists = "48"
What is the total points for GP/GS of 24/23?
CREATE TABLE table_name_28 (total_points VARCHAR, gp_gs VARCHAR)
SELECT total_points FROM table_name_28 WHERE gp_gs = "24/23"
### Context: CREATE TABLE table_name_28 (total_points VARCHAR, gp_gs VARCHAR) ### Question: What is the total points for GP/GS of 24/23? ### Answer: SELECT total_points FROM table_name_28 WHERE gp_gs = "24/23"
What is the assists for the Team of Florida and the total points of 75?
CREATE TABLE table_name_29 (assists VARCHAR, team VARCHAR, total_points VARCHAR)
SELECT assists FROM table_name_29 WHERE team = "florida" AND total_points = "75"
### Context: CREATE TABLE table_name_29 (assists VARCHAR, team VARCHAR, total_points VARCHAR) ### Question: What is the assists for the Team of Florida and the total points of 75? ### Answer: SELECT assists FROM table_name_29 WHERE team = "florida" AND total_points = "75"
What is the attendance of the match with F.C. central chugoku as the home team?
CREATE TABLE table_name_24 (attendance VARCHAR, home_team VARCHAR)
SELECT attendance FROM table_name_24 WHERE home_team = "f.c. central chugoku"
### Context: CREATE TABLE table_name_24 (attendance VARCHAR, home_team VARCHAR) ### Question: What is the attendance of the match with F.C. central chugoku as the home team? ### Answer: SELECT attendance FROM table_name_24 WHERE home_team = "f.c. central chugoku"
What is the away team of match 9?
CREATE TABLE table_name_52 (away_team VARCHAR, match_no VARCHAR)
SELECT away_team FROM table_name_52 WHERE match_no = "9"
### Context: CREATE TABLE table_name_52 (away_team VARCHAR, match_no VARCHAR) ### Question: What is the away team of match 9? ### Answer: SELECT away_team FROM table_name_52 WHERE match_no = "9"
What is the score of match 15?
CREATE TABLE table_name_30 (score VARCHAR, match_no VARCHAR)
SELECT score FROM table_name_30 WHERE match_no = "15"
### Context: CREATE TABLE table_name_30 (score VARCHAR, match_no VARCHAR) ### Question: What is the score of match 15? ### Answer: SELECT score FROM table_name_30 WHERE match_no = "15"
What is the attendance of the match with kochi university as the away team?
CREATE TABLE table_name_23 (attendance VARCHAR, away_team VARCHAR)
SELECT attendance FROM table_name_23 WHERE away_team = "kochi university"
### Context: CREATE TABLE table_name_23 (attendance VARCHAR, away_team VARCHAR) ### Question: What is the attendance of the match with kochi university as the away team? ### Answer: SELECT attendance FROM table_name_23 WHERE away_team = "kochi university"
What is the attendance of the match with rosso kumamoto as the away team?
CREATE TABLE table_name_82 (attendance VARCHAR, away_team VARCHAR)
SELECT attendance FROM table_name_82 WHERE away_team = "rosso kumamoto"
### Context: CREATE TABLE table_name_82 (attendance VARCHAR, away_team VARCHAR) ### Question: What is the attendance of the match with rosso kumamoto as the away team? ### Answer: SELECT attendance FROM table_name_82 WHERE away_team = "rosso kumamoto"
What year did the company have a balance sheet total of €125,359,000?
CREATE TABLE table_name_69 (year VARCHAR, balance_sheet_total VARCHAR)
SELECT COUNT(year) FROM table_name_69 WHERE balance_sheet_total = "€125,359,000"
### Context: CREATE TABLE table_name_69 (year VARCHAR, balance_sheet_total VARCHAR) ### Question: What year did the company have a balance sheet total of €125,359,000? ### Answer: SELECT COUNT(year) FROM table_name_69 WHERE balance_sheet_total = "€125,359,000"
What was the average Year of release for the Album, "Da Baddest Bitch"?
CREATE TABLE table_name_31 (year INTEGER, album VARCHAR)
SELECT AVG(year) FROM table_name_31 WHERE album = "da baddest bitch"
### Context: CREATE TABLE table_name_31 (year INTEGER, album VARCHAR) ### Question: What was the average Year of release for the Album, "Da Baddest Bitch"? ### Answer: SELECT AVG(year) FROM table_name_31 WHERE album = "da baddest bitch"
What was the result of the game with a score of 3-2?
CREATE TABLE table_name_99 (result VARCHAR, score VARCHAR)
SELECT result FROM table_name_99 WHERE score = "3-2"
### Context: CREATE TABLE table_name_99 (result VARCHAR, score VARCHAR) ### Question: What was the result of the game with a score of 3-2? ### Answer: SELECT result FROM table_name_99 WHERE score = "3-2"
What was the score of the 2014 World Cup Qualification?
CREATE TABLE table_name_91 (score VARCHAR, competition VARCHAR)
SELECT score FROM table_name_91 WHERE competition = "2014 world cup qualification"
### Context: CREATE TABLE table_name_91 (score VARCHAR, competition VARCHAR) ### Question: What was the score of the 2014 World Cup Qualification? ### Answer: SELECT score FROM table_name_91 WHERE competition = "2014 world cup qualification"
What was the result of the game with a score of 4-1?
CREATE TABLE table_name_65 (result VARCHAR, score VARCHAR)
SELECT result FROM table_name_65 WHERE score = "4-1"
### Context: CREATE TABLE table_name_65 (result VARCHAR, score VARCHAR) ### Question: What was the result of the game with a score of 4-1? ### Answer: SELECT result FROM table_name_65 WHERE score = "4-1"
What venue held with game with a score of 3-2?
CREATE TABLE table_name_42 (venue VARCHAR, score VARCHAR)
SELECT venue FROM table_name_42 WHERE score = "3-2"
### Context: CREATE TABLE table_name_42 (venue VARCHAR, score VARCHAR) ### Question: What venue held with game with a score of 3-2? ### Answer: SELECT venue FROM table_name_42 WHERE score = "3-2"
When has a Centerfold model of krista kelly?
CREATE TABLE table_name_20 (date VARCHAR, centerfold_model VARCHAR)
SELECT date FROM table_name_20 WHERE centerfold_model = "krista kelly"
### Context: CREATE TABLE table_name_20 (date VARCHAR, centerfold_model VARCHAR) ### Question: When has a Centerfold model of krista kelly? ### Answer: SELECT date FROM table_name_20 WHERE centerfold_model = "krista kelly"
Which 20 Questions has a Cover model of rena mero , torrie wilson (two alternative covers)?
CREATE TABLE table_name_60 (cover_model VARCHAR)
SELECT 20 AS _questions FROM table_name_60 WHERE cover_model = "rena mero , torrie wilson (two alternative covers)"
### Context: CREATE TABLE table_name_60 (cover_model VARCHAR) ### Question: Which 20 Questions has a Cover model of rena mero , torrie wilson (two alternative covers)? ### Answer: SELECT 20 AS _questions FROM table_name_60 WHERE cover_model = "rena mero , torrie wilson (two alternative covers)"
When Centerfold model is on 3-04?
CREATE TABLE table_name_80 (centerfold_model VARCHAR, date VARCHAR)
SELECT centerfold_model FROM table_name_80 WHERE date = "3-04"
### Context: CREATE TABLE table_name_80 (centerfold_model VARCHAR, date VARCHAR) ### Question: When Centerfold model is on 3-04? ### Answer: SELECT centerfold_model FROM table_name_80 WHERE date = "3-04"
Which Cover model has a Centerfold model of scarlett keegan?
CREATE TABLE table_name_22 (cover_model VARCHAR, centerfold_model VARCHAR)
SELECT cover_model FROM table_name_22 WHERE centerfold_model = "scarlett keegan"
### Context: CREATE TABLE table_name_22 (cover_model VARCHAR, centerfold_model VARCHAR) ### Question: Which Cover model has a Centerfold model of scarlett keegan? ### Answer: SELECT cover_model FROM table_name_22 WHERE centerfold_model = "scarlett keegan"
When has a Centerfold model of pilar lastra?
CREATE TABLE table_name_95 (date VARCHAR, centerfold_model VARCHAR)
SELECT date FROM table_name_95 WHERE centerfold_model = "pilar lastra"
### Context: CREATE TABLE table_name_95 (date VARCHAR, centerfold_model VARCHAR) ### Question: When has a Centerfold model of pilar lastra? ### Answer: SELECT date FROM table_name_95 WHERE centerfold_model = "pilar lastra"
What is the lowest share with an air date of March 21, 2008 and had viewers larger than 5.15?
CREATE TABLE table_name_8 (share INTEGER, air_date VARCHAR, viewers VARCHAR)
SELECT MIN(share) FROM table_name_8 WHERE air_date = "march 21, 2008" AND viewers > 5.15
### Context: CREATE TABLE table_name_8 (share INTEGER, air_date VARCHAR, viewers VARCHAR) ### Question: What is the lowest share with an air date of March 21, 2008 and had viewers larger than 5.15? ### Answer: SELECT MIN(share) FROM table_name_8 WHERE air_date = "march 21, 2008" AND viewers > 5.15
What is the lowest team (s) that have tvmk as top scorer (s) and flora as the champion?
CREATE TABLE table_name_31 (team_s_ INTEGER, top_goalscorer_s_ VARCHAR, champion VARCHAR)
SELECT MIN(team_s_) FROM table_name_31 WHERE top_goalscorer_s_ = "tvmk" AND champion = "flora"
### Context: CREATE TABLE table_name_31 (team_s_ INTEGER, top_goalscorer_s_ VARCHAR, champion VARCHAR) ### Question: What is the lowest team (s) that have tvmk as top scorer (s) and flora as the champion? ### Answer: SELECT MIN(team_s_) FROM table_name_31 WHERE top_goalscorer_s_ = "tvmk" AND champion = "flora"
What round had the opponent Lyon?
CREATE TABLE table_name_1 (round VARCHAR, opposition VARCHAR)
SELECT round FROM table_name_1 WHERE opposition = "lyon"
### Context: CREATE TABLE table_name_1 (round VARCHAR, opposition VARCHAR) ### Question: What round had the opponent Lyon? ### Answer: SELECT round FROM table_name_1 WHERE opposition = "lyon"
Who has the first leg that has a round in the semi-final?
CREATE TABLE table_name_53 (first_leg VARCHAR, round VARCHAR)
SELECT first_leg FROM table_name_53 WHERE round = "semi-final"
### Context: CREATE TABLE table_name_53 (first_leg VARCHAR, round VARCHAR) ### Question: Who has the first leg that has a round in the semi-final? ### Answer: SELECT first_leg FROM table_name_53 WHERE round = "semi-final"
What is Most Laps Led, when Winning Team is Chip Ganassi Racing, and when Fastest Lap is Marco Andretti?
CREATE TABLE table_name_28 (most_laps_led VARCHAR, winning_team VARCHAR, fastest_lap VARCHAR)
SELECT most_laps_led FROM table_name_28 WHERE winning_team = "chip ganassi racing" AND fastest_lap = "marco andretti"
### Context: CREATE TABLE table_name_28 (most_laps_led VARCHAR, winning_team VARCHAR, fastest_lap VARCHAR) ### Question: What is Most Laps Led, when Winning Team is Chip Ganassi Racing, and when Fastest Lap is Marco Andretti? ### Answer: SELECT most_laps_led FROM table_name_28 WHERE winning_team = "chip ganassi racing" AND fastest_lap = "marco andretti"
Who is the Winning Driver, when Most Laps Led is Dario Franchitti, and when Pole Position is Hélio Castroneves?
CREATE TABLE table_name_10 (winning_driver VARCHAR, most_laps_led VARCHAR, pole_position VARCHAR)
SELECT winning_driver FROM table_name_10 WHERE most_laps_led = "dario franchitti" AND pole_position = "hélio castroneves"
### Context: CREATE TABLE table_name_10 (winning_driver VARCHAR, most_laps_led VARCHAR, pole_position VARCHAR) ### Question: Who is the Winning Driver, when Most Laps Led is Dario Franchitti, and when Pole Position is Hélio Castroneves? ### Answer: SELECT winning_driver FROM table_name_10 WHERE most_laps_led = "dario franchitti" AND pole_position = "hélio castroneves"
What is Winning Team, when Most Laps Led is Alex Tagliani?
CREATE TABLE table_name_21 (winning_team VARCHAR, most_laps_led VARCHAR)
SELECT winning_team FROM table_name_21 WHERE most_laps_led = "alex tagliani"
### Context: CREATE TABLE table_name_21 (winning_team VARCHAR, most_laps_led VARCHAR) ### Question: What is Winning Team, when Most Laps Led is Alex Tagliani? ### Answer: SELECT winning_team FROM table_name_21 WHERE most_laps_led = "alex tagliani"
What is Winning Driver, when Fastest Lap is Ryan Hunter-Reay, and when Most Laps Led is Ryan Briscoe?
CREATE TABLE table_name_7 (winning_driver VARCHAR, fastest_lap VARCHAR, most_laps_led VARCHAR)
SELECT winning_driver FROM table_name_7 WHERE fastest_lap = "ryan hunter-reay" AND most_laps_led = "ryan briscoe"
### Context: CREATE TABLE table_name_7 (winning_driver VARCHAR, fastest_lap VARCHAR, most_laps_led VARCHAR) ### Question: What is Winning Driver, when Fastest Lap is Ryan Hunter-Reay, and when Most Laps Led is Ryan Briscoe? ### Answer: SELECT winning_driver FROM table_name_7 WHERE fastest_lap = "ryan hunter-reay" AND most_laps_led = "ryan briscoe"
What is Race, when Winning Team is Chip Ganassi Racing, when Pole Position is Ryan Briscoe, and when Most Laps Led is Scott Dixon?
CREATE TABLE table_name_91 (race VARCHAR, most_laps_led VARCHAR, winning_team VARCHAR, pole_position VARCHAR)
SELECT race FROM table_name_91 WHERE winning_team = "chip ganassi racing" AND pole_position = "ryan briscoe" AND most_laps_led = "scott dixon"
### Context: CREATE TABLE table_name_91 (race VARCHAR, most_laps_led VARCHAR, winning_team VARCHAR, pole_position VARCHAR) ### Question: What is Race, when Winning Team is Chip Ganassi Racing, when Pole Position is Ryan Briscoe, and when Most Laps Led is Scott Dixon? ### Answer: SELECT race FROM table_name_91 WHERE winning_team = "chip ganassi racing" AND pole_position = "ryan briscoe" AND most_laps_led = "scott dixon"
Who was the Winner when the Runner-up was Real Salt Lake?
CREATE TABLE table_name_20 (winner VARCHAR, runner_up VARCHAR)
SELECT winner FROM table_name_20 WHERE runner_up = "real salt lake"
### Context: CREATE TABLE table_name_20 (winner VARCHAR, runner_up VARCHAR) ### Question: Who was the Winner when the Runner-up was Real Salt Lake? ### Answer: SELECT winner FROM table_name_20 WHERE runner_up = "real salt lake"
During which Season was the tournament in progress?
CREATE TABLE table_name_64 (season VARCHAR, runner_up VARCHAR)
SELECT season FROM table_name_64 WHERE runner_up = "tournament in progress"
### Context: CREATE TABLE table_name_64 (season VARCHAR, runner_up VARCHAR) ### Question: During which Season was the tournament in progress? ### Answer: SELECT season FROM table_name_64 WHERE runner_up = "tournament in progress"
What was the Score during the Season in which the Winner was C.F. Atlante?
CREATE TABLE table_name_15 (score VARCHAR, winner VARCHAR)
SELECT score FROM table_name_15 WHERE winner = "c.f. atlante"
### Context: CREATE TABLE table_name_15 (score VARCHAR, winner VARCHAR) ### Question: What was the Score during the Season in which the Winner was C.F. Atlante? ### Answer: SELECT score FROM table_name_15 WHERE winner = "c.f. atlante"
What was the Score when the Losing Semifinalists were Toluca Unam?
CREATE TABLE table_name_88 (score VARCHAR, losing_semifinalists VARCHAR)
SELECT score FROM table_name_88 WHERE losing_semifinalists = "toluca unam"
### Context: CREATE TABLE table_name_88 (score VARCHAR, losing_semifinalists VARCHAR) ### Question: What was the Score when the Losing Semifinalists were Toluca Unam? ### Answer: SELECT score FROM table_name_88 WHERE losing_semifinalists = "toluca unam"
What law has a penalty of — in Iraq?
CREATE TABLE table_name_90 (laws_against_homosexuality VARCHAR, penalty VARCHAR, country VARCHAR)
SELECT laws_against_homosexuality FROM table_name_90 WHERE penalty = "—" AND country = "iraq"
### Context: CREATE TABLE table_name_90 (laws_against_homosexuality VARCHAR, penalty VARCHAR, country VARCHAR) ### Question: What law has a penalty of — in Iraq? ### Answer: SELECT laws_against_homosexuality FROM table_name_90 WHERE penalty = "—" AND country = "iraq"
What are the laws against homosexuality in Malaysia?
CREATE TABLE table_name_34 (laws_against_homosexuality VARCHAR, country VARCHAR)
SELECT laws_against_homosexuality FROM table_name_34 WHERE country = "malaysia"
### Context: CREATE TABLE table_name_34 (laws_against_homosexuality VARCHAR, country VARCHAR) ### Question: What are the laws against homosexuality in Malaysia? ### Answer: SELECT laws_against_homosexuality FROM table_name_34 WHERE country = "malaysia"
What is the average Events when the top-25 is 12 and there are less than 0 wins?
CREATE TABLE table_name_62 (events INTEGER, top_25 VARCHAR, wins VARCHAR)
SELECT AVG(events) FROM table_name_62 WHERE top_25 = 12 AND wins < 0
### Context: CREATE TABLE table_name_62 (events INTEGER, top_25 VARCHAR, wins VARCHAR) ### Question: What is the average Events when the top-25 is 12 and there are less than 0 wins? ### Answer: SELECT AVG(events) FROM table_name_62 WHERE top_25 = 12 AND wins < 0
What is the sum of Events when the top-25 is more than 5, and the top-10 is less than 4, and wins is more than 2?
CREATE TABLE table_name_88 (events INTEGER, wins VARCHAR, top_25 VARCHAR, top_10 VARCHAR)
SELECT SUM(events) FROM table_name_88 WHERE top_25 > 5 AND top_10 < 4 AND wins > 2
### Context: CREATE TABLE table_name_88 (events INTEGER, wins VARCHAR, top_25 VARCHAR, top_10 VARCHAR) ### Question: What is the sum of Events when the top-25 is more than 5, and the top-10 is less than 4, and wins is more than 2? ### Answer: SELECT SUM(events) FROM table_name_88 WHERE top_25 > 5 AND top_10 < 4 AND wins > 2
What is the average Top-10 when there were 17 cuts made with less than 0 wins?
CREATE TABLE table_name_93 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR)
SELECT AVG(top_10) FROM table_name_93 WHERE cuts_made = 17 AND wins < 0
### Context: CREATE TABLE table_name_93 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR) ### Question: What is the average Top-10 when there were 17 cuts made with less than 0 wins? ### Answer: SELECT AVG(top_10) FROM table_name_93 WHERE cuts_made = 17 AND wins < 0
What is the sum of Cuts made when there were more than 72 events?
CREATE TABLE table_name_95 (cuts_made INTEGER, events INTEGER)
SELECT SUM(cuts_made) FROM table_name_95 WHERE events > 72
### Context: CREATE TABLE table_name_95 (cuts_made INTEGER, events INTEGER) ### Question: What is the sum of Cuts made when there were more than 72 events? ### Answer: SELECT SUM(cuts_made) FROM table_name_95 WHERE events > 72
What is the average Top-5 for the open championship, and a Top-10 smaller than 2?
CREATE TABLE table_name_98 (top_5 INTEGER, tournament VARCHAR, top_10 VARCHAR)
SELECT AVG(top_5) FROM table_name_98 WHERE tournament = "the open championship" AND top_10 < 2
### Context: CREATE TABLE table_name_98 (top_5 INTEGER, tournament VARCHAR, top_10 VARCHAR) ### Question: What is the average Top-5 for the open championship, and a Top-10 smaller than 2? ### Answer: SELECT AVG(top_5) FROM table_name_98 WHERE tournament = "the open championship" AND top_10 < 2
What was the date of airing for episodes with ratings under 10.1 and production number of 96 5-09?
CREATE TABLE table_name_74 (original_airing VARCHAR, rating VARCHAR, episode_number_production_number VARCHAR)
SELECT original_airing FROM table_name_74 WHERE rating < 10.1 AND episode_number_production_number = "96 5-09"
### Context: CREATE TABLE table_name_74 (original_airing VARCHAR, rating VARCHAR, episode_number_production_number VARCHAR) ### Question: What was the date of airing for episodes with ratings under 10.1 and production number of 96 5-09? ### Answer: SELECT original_airing FROM table_name_74 WHERE rating < 10.1 AND episode_number_production_number = "96 5-09"
What was the fewest number of viewers for the episode production number of 109 5-22?
CREATE TABLE table_name_54 (total_viewers__in_millions_ INTEGER, episode_number_production_number VARCHAR)
SELECT MIN(total_viewers__in_millions_) FROM table_name_54 WHERE episode_number_production_number = "109 5-22"
### Context: CREATE TABLE table_name_54 (total_viewers__in_millions_ INTEGER, episode_number_production_number VARCHAR) ### Question: What was the fewest number of viewers for the episode production number of 109 5-22? ### Answer: SELECT MIN(total_viewers__in_millions_) FROM table_name_54 WHERE episode_number_production_number = "109 5-22"
What is the First Aligned date in 1614?
CREATE TABLE table_name_67 (first_aligned_day VARCHAR, date VARCHAR)
SELECT first_aligned_day FROM table_name_67 WHERE date = "1614"
### Context: CREATE TABLE table_name_67 (first_aligned_day VARCHAR, date VARCHAR) ### Question: What is the First Aligned date in 1614? ### Answer: SELECT first_aligned_day FROM table_name_67 WHERE date = "1614"
How many Airlines have a total distance of 705 (km)?
CREATE TABLE table_name_76 (_number_of_airlines VARCHAR, distance__km_ VARCHAR)
SELECT COUNT(_number_of_airlines) FROM table_name_76 WHERE distance__km_ = 705
### Context: CREATE TABLE table_name_76 (_number_of_airlines VARCHAR, distance__km_ VARCHAR) ### Question: How many Airlines have a total distance of 705 (km)? ### Answer: SELECT COUNT(_number_of_airlines) FROM table_name_76 WHERE distance__km_ = 705
What is the 1st leg result when team 1 is Gambia?
CREATE TABLE table_name_10 (team_1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_10 WHERE team_1 = "gambia"
### Context: CREATE TABLE table_name_10 (team_1 VARCHAR) ### Question: What is the 1st leg result when team 1 is Gambia? ### Answer: SELECT 1 AS st_leg FROM table_name_10 WHERE team_1 = "gambia"
What is the 2nd leg result when team 2 is Morocco?
CREATE TABLE table_name_16 (team_2 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_16 WHERE team_2 = "morocco"
### Context: CREATE TABLE table_name_16 (team_2 VARCHAR) ### Question: What is the 2nd leg result when team 2 is Morocco? ### Answer: SELECT 2 AS nd_leg FROM table_name_16 WHERE team_2 = "morocco"
Which Name was in the Year 2001?
CREATE TABLE table_name_32 (name VARCHAR, year VARCHAR)
SELECT name FROM table_name_32 WHERE year = "2001"
### Context: CREATE TABLE table_name_32 (name VARCHAR, year VARCHAR) ### Question: Which Name was in the Year 2001? ### Answer: SELECT name FROM table_name_32 WHERE year = "2001"
Which Name had a Rank of 18 Out of a number smaller than 149?
CREATE TABLE table_name_31 (name VARCHAR, out_of VARCHAR, rank VARCHAR)
SELECT name FROM table_name_31 WHERE out_of < 149 AND rank = 18
### Context: CREATE TABLE table_name_31 (name VARCHAR, out_of VARCHAR, rank VARCHAR) ### Question: Which Name had a Rank of 18 Out of a number smaller than 149? ### Answer: SELECT name FROM table_name_31 WHERE out_of < 149 AND rank = 18
Which Name had the Rank, 15?
CREATE TABLE table_name_54 (name VARCHAR, rank VARCHAR)
SELECT name FROM table_name_54 WHERE rank = 15
### Context: CREATE TABLE table_name_54 (name VARCHAR, rank VARCHAR) ### Question: Which Name had the Rank, 15? ### Answer: SELECT name FROM table_name_54 WHERE rank = 15
What is the lowest Rank for the Name, "area of permanent crops", Out of a number smaller than 181?
CREATE TABLE table_name_66 (rank INTEGER, name VARCHAR, out_of VARCHAR)
SELECT MIN(rank) FROM table_name_66 WHERE name = "area of permanent crops" AND out_of < 181
### Context: CREATE TABLE table_name_66 (rank INTEGER, name VARCHAR, out_of VARCHAR) ### Question: What is the lowest Rank for the Name, "area of permanent crops", Out of a number smaller than 181? ### Answer: SELECT MIN(rank) FROM table_name_66 WHERE name = "area of permanent crops" AND out_of < 181
Which Name had the Source, World Bank, and a Rank smaller than 110, Out of a number smaller than 199?
CREATE TABLE table_name_48 (name VARCHAR, out_of VARCHAR, source VARCHAR, rank VARCHAR)
SELECT name FROM table_name_48 WHERE source = "world bank" AND rank < 110 AND out_of < 199
### Context: CREATE TABLE table_name_48 (name VARCHAR, out_of VARCHAR, source VARCHAR, rank VARCHAR) ### Question: Which Name had the Source, World Bank, and a Rank smaller than 110, Out of a number smaller than 199? ### Answer: SELECT name FROM table_name_48 WHERE source = "world bank" AND rank < 110 AND out_of < 199
Which Team has Manzoor Elahi as Coach and Taufeeq Umar as Captain?
CREATE TABLE table_name_88 (team VARCHAR, coach VARCHAR, captain VARCHAR)
SELECT team FROM table_name_88 WHERE coach = "manzoor elahi" AND captain = "taufeeq umar"
### Context: CREATE TABLE table_name_88 (team VARCHAR, coach VARCHAR, captain VARCHAR) ### Question: Which Team has Manzoor Elahi as Coach and Taufeeq Umar as Captain? ### Answer: SELECT team FROM table_name_88 WHERE coach = "manzoor elahi" AND captain = "taufeeq umar"
Which City has the Bahawalpur Stags Team?
CREATE TABLE table_name_98 (city VARCHAR, team VARCHAR)
SELECT city FROM table_name_98 WHERE team = "bahawalpur stags"
### Context: CREATE TABLE table_name_98 (city VARCHAR, team VARCHAR) ### Question: Which City has the Bahawalpur Stags Team? ### Answer: SELECT city FROM table_name_98 WHERE team = "bahawalpur stags"
Who is the opponent of the December 18, 1994 game?
CREATE TABLE table_name_90 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_90 WHERE date = "december 18, 1994"
### Context: CREATE TABLE table_name_90 (opponent VARCHAR, date VARCHAR) ### Question: Who is the opponent of the December 18, 1994 game? ### Answer: SELECT opponent FROM table_name_90 WHERE date = "december 18, 1994"
What is the Artist with a Date that is june 1979?
CREATE TABLE table_name_48 (artist VARCHAR, date VARCHAR)
SELECT artist FROM table_name_48 WHERE date = "june 1979"
### Context: CREATE TABLE table_name_48 (artist VARCHAR, date VARCHAR) ### Question: What is the Artist with a Date that is june 1979? ### Answer: SELECT artist FROM table_name_48 WHERE date = "june 1979"
What is the Writer with an Actual Title that is mork & mindy?
CREATE TABLE table_name_8 (writer VARCHAR, actual_title VARCHAR)
SELECT writer FROM table_name_8 WHERE actual_title = "mork & mindy"
### Context: CREATE TABLE table_name_8 (writer VARCHAR, actual_title VARCHAR) ### Question: What is the Writer with an Actual Title that is mork & mindy? ### Answer: SELECT writer FROM table_name_8 WHERE actual_title = "mork & mindy"
What is the Writer with a Date that is january 1975?
CREATE TABLE table_name_63 (writer VARCHAR, date VARCHAR)
SELECT writer FROM table_name_63 WHERE date = "january 1975"
### Context: CREATE TABLE table_name_63 (writer VARCHAR, date VARCHAR) ### Question: What is the Writer with a Date that is january 1975? ### Answer: SELECT writer FROM table_name_63 WHERE date = "january 1975"
What is the smallest played amount when there are 2 draws and an against of more than 73?
CREATE TABLE table_name_66 (played INTEGER, drawn VARCHAR, against VARCHAR)
SELECT MIN(played) FROM table_name_66 WHERE drawn = 2 AND against > 73
### Context: CREATE TABLE table_name_66 (played INTEGER, drawn VARCHAR, against VARCHAR) ### Question: What is the smallest played amount when there are 2 draws and an against of more than 73? ### Answer: SELECT MIN(played) FROM table_name_66 WHERE drawn = 2 AND against > 73
What is the earliest season with a premiere of february5,2007?
CREATE TABLE table_name_90 (episodes INTEGER, premiere VARCHAR)
SELECT MIN(episodes) FROM table_name_90 WHERE premiere = "february5,2007"
### Context: CREATE TABLE table_name_90 (episodes INTEGER, premiere VARCHAR) ### Question: What is the earliest season with a premiere of february5,2007? ### Answer: SELECT MIN(episodes) FROM table_name_90 WHERE premiere = "february5,2007"
Which premiere had more than 15 episodes?
CREATE TABLE table_name_36 (premiere VARCHAR, episodes INTEGER)
SELECT premiere FROM table_name_36 WHERE episodes > 15
### Context: CREATE TABLE table_name_36 (premiere VARCHAR, episodes INTEGER) ### Question: Which premiere had more than 15 episodes? ### Answer: SELECT premiere FROM table_name_36 WHERE episodes > 15
Who had the highest rebounds of the game on April 7?
CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_name_15 WHERE date = "april 7"
### Context: CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR) ### Question: Who had the highest rebounds of the game on April 7? ### Answer: SELECT high_rebounds FROM table_name_15 WHERE date = "april 7"
What is Result, when Date is 2003?
CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_80 WHERE date = "2003"
### Context: CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR) ### Question: What is Result, when Date is 2003? ### Answer: SELECT result FROM table_name_80 WHERE date = "2003"
What is Record, when Date is 1996?
CREATE TABLE table_name_45 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_45 WHERE date = "1996"
### Context: CREATE TABLE table_name_45 (record VARCHAR, date VARCHAR) ### Question: What is Record, when Date is 1996? ### Answer: SELECT record FROM table_name_45 WHERE date = "1996"
What is Notes, when Date is 2007?
CREATE TABLE table_name_9 (notes VARCHAR, date VARCHAR)
SELECT notes FROM table_name_9 WHERE date = "2007"
### Context: CREATE TABLE table_name_9 (notes VARCHAR, date VARCHAR) ### Question: What is Notes, when Date is 2007? ### Answer: SELECT notes FROM table_name_9 WHERE date = "2007"
What is the highest Round, when the Opponent is Junior Pitbull?
CREATE TABLE table_name_28 (round INTEGER, opponent VARCHAR)
SELECT MAX(round) FROM table_name_28 WHERE opponent = "junior pitbull"
### Context: CREATE TABLE table_name_28 (round INTEGER, opponent VARCHAR) ### Question: What is the highest Round, when the Opponent is Junior Pitbull? ### Answer: SELECT MAX(round) FROM table_name_28 WHERE opponent = "junior pitbull"
What is Date, when Result is Loss, and when Method is Submission (Armbar)?
CREATE TABLE table_name_8 (date VARCHAR, result VARCHAR, method VARCHAR)
SELECT date FROM table_name_8 WHERE result = "loss" AND method = "submission (armbar)"
### Context: CREATE TABLE table_name_8 (date VARCHAR, result VARCHAR, method VARCHAR) ### Question: What is Date, when Result is Loss, and when Method is Submission (Armbar)? ### Answer: SELECT date FROM table_name_8 WHERE result = "loss" AND method = "submission (armbar)"
What is the Coombe Road time with a Selsdon evening peak?
CREATE TABLE table_name_17 (coombe_road VARCHAR, selsdon VARCHAR)
SELECT coombe_road FROM table_name_17 WHERE selsdon = "evening peak"
### Context: CREATE TABLE table_name_17 (coombe_road VARCHAR, selsdon VARCHAR) ### Question: What is the Coombe Road time with a Selsdon evening peak? ### Answer: SELECT coombe_road FROM table_name_17 WHERE selsdon = "evening peak"
What is the Woodside for the 16:19 Coombe Road?
CREATE TABLE table_name_81 (woodside VARCHAR, coombe_road VARCHAR)
SELECT woodside FROM table_name_81 WHERE coombe_road = "16:19"
### Context: CREATE TABLE table_name_81 (woodside VARCHAR, coombe_road VARCHAR) ### Question: What is the Woodside for the 16:19 Coombe Road? ### Answer: SELECT woodside FROM table_name_81 WHERE coombe_road = "16:19"
What is the Elmers End with a 09:54 Bingham Road?
CREATE TABLE table_name_65 (elmers_end VARCHAR, bingham_road VARCHAR)
SELECT elmers_end FROM table_name_65 WHERE bingham_road = "09:54"
### Context: CREATE TABLE table_name_65 (elmers_end VARCHAR, bingham_road VARCHAR) ### Question: What is the Elmers End with a 09:54 Bingham Road? ### Answer: SELECT elmers_end FROM table_name_65 WHERE bingham_road = "09:54"
What is the Coombe Road with a Woodside time of 07:23?
CREATE TABLE table_name_14 (coombe_road VARCHAR, woodside VARCHAR)
SELECT coombe_road FROM table_name_14 WHERE woodside = "07:23"
### Context: CREATE TABLE table_name_14 (coombe_road VARCHAR, woodside VARCHAR) ### Question: What is the Coombe Road with a Woodside time of 07:23? ### Answer: SELECT coombe_road FROM table_name_14 WHERE woodside = "07:23"
What is the Elmers End with a 17:57 Selsdon time?
CREATE TABLE table_name_30 (elmers_end VARCHAR, selsdon VARCHAR)
SELECT elmers_end FROM table_name_30 WHERE selsdon = "17:57"
### Context: CREATE TABLE table_name_30 (elmers_end VARCHAR, selsdon VARCHAR) ### Question: What is the Elmers End with a 17:57 Selsdon time? ### Answer: SELECT elmers_end FROM table_name_30 WHERE selsdon = "17:57"
What is the Selsdon for the 17:19 Coombe Road?
CREATE TABLE table_name_14 (selsdon VARCHAR, coombe_road VARCHAR)
SELECT selsdon FROM table_name_14 WHERE coombe_road = "17:19"
### Context: CREATE TABLE table_name_14 (selsdon VARCHAR, coombe_road VARCHAR) ### Question: What is the Selsdon for the 17:19 Coombe Road? ### Answer: SELECT selsdon FROM table_name_14 WHERE coombe_road = "17:19"
What is the highest win for losses less than 2?
CREATE TABLE table_name_65 (wins INTEGER, losses INTEGER)
SELECT MAX(wins) FROM table_name_65 WHERE losses < 2
### Context: CREATE TABLE table_name_65 (wins INTEGER, losses INTEGER) ### Question: What is the highest win for losses less than 2? ### Answer: SELECT MAX(wins) FROM table_name_65 WHERE losses < 2
What is the average Byes for the losses of 15, and before 1874?
CREATE TABLE table_name_46 (byes INTEGER, losses VARCHAR, against VARCHAR)
SELECT AVG(byes) FROM table_name_46 WHERE losses = 15 AND against < 1874
### Context: CREATE TABLE table_name_46 (byes INTEGER, losses VARCHAR, against VARCHAR) ### Question: What is the average Byes for the losses of 15, and before 1874? ### Answer: SELECT AVG(byes) FROM table_name_46 WHERE losses = 15 AND against < 1874
What is the sum of against in Ballarat FL of East Point and wins less than 16?
CREATE TABLE table_name_75 (against INTEGER, ballarat_fl VARCHAR, wins VARCHAR)
SELECT SUM(against) FROM table_name_75 WHERE ballarat_fl = "east point" AND wins < 16
### Context: CREATE TABLE table_name_75 (against INTEGER, ballarat_fl VARCHAR, wins VARCHAR) ### Question: What is the sum of against in Ballarat FL of East Point and wins less than 16? ### Answer: SELECT SUM(against) FROM table_name_75 WHERE ballarat_fl = "east point" AND wins < 16
What is the School with a Pick that is 24?
CREATE TABLE table_name_99 (school VARCHAR, pick VARCHAR)
SELECT school FROM table_name_99 WHERE pick = 24
### Context: CREATE TABLE table_name_99 (school VARCHAR, pick VARCHAR) ### Question: What is the School with a Pick that is 24? ### Answer: SELECT school FROM table_name_99 WHERE pick = 24
What is the Team with a Player that is david cooper?
CREATE TABLE table_name_86 (team VARCHAR, player VARCHAR)
SELECT team FROM table_name_86 WHERE player = "david cooper"
### Context: CREATE TABLE table_name_86 (team VARCHAR, player VARCHAR) ### Question: What is the Team with a Player that is david cooper? ### Answer: SELECT team FROM table_name_86 WHERE player = "david cooper"
How many visitors in 2007 were there for ski jumping hill?
CREATE TABLE table_name_10 (_2007 VARCHAR, visitors INTEGER, type VARCHAR)
SELECT SUM(visitors), _2007 FROM table_name_10 WHERE type = "ski jumping hill"
### Context: CREATE TABLE table_name_10 (_2007 VARCHAR, visitors INTEGER, type VARCHAR) ### Question: How many visitors in 2007 were there for ski jumping hill? ### Answer: SELECT SUM(visitors), _2007 FROM table_name_10 WHERE type = "ski jumping hill"
What is the highest Games, when Rebounds is greater than 100, when Name is Nikola Peković, and when Rank is less than 4?
CREATE TABLE table_name_26 (games INTEGER, rank VARCHAR, rebounds VARCHAR, name VARCHAR)
SELECT MAX(games) FROM table_name_26 WHERE rebounds > 100 AND name = "nikola peković" AND rank < 4
### Context: CREATE TABLE table_name_26 (games INTEGER, rank VARCHAR, rebounds VARCHAR, name VARCHAR) ### Question: What is the highest Games, when Rebounds is greater than 100, when Name is Nikola Peković, and when Rank is less than 4? ### Answer: SELECT MAX(games) FROM table_name_26 WHERE rebounds > 100 AND name = "nikola peković" AND rank < 4
What is the total number of Games, when Rank is less than 4, and when Rebounds is less than 102?
CREATE TABLE table_name_99 (games VARCHAR, rank VARCHAR, rebounds VARCHAR)
SELECT COUNT(games) FROM table_name_99 WHERE rank < 4 AND rebounds < 102
### Context: CREATE TABLE table_name_99 (games VARCHAR, rank VARCHAR, rebounds VARCHAR) ### Question: What is the total number of Games, when Rank is less than 4, and when Rebounds is less than 102? ### Answer: SELECT COUNT(games) FROM table_name_99 WHERE rank < 4 AND rebounds < 102
What is the lowest Games, when Name is Travis Watson, and when Rebounds is less than 136?
CREATE TABLE table_name_38 (games INTEGER, name VARCHAR, rebounds VARCHAR)
SELECT MIN(games) FROM table_name_38 WHERE name = "travis watson" AND rebounds < 136
### Context: CREATE TABLE table_name_38 (games INTEGER, name VARCHAR, rebounds VARCHAR) ### Question: What is the lowest Games, when Name is Travis Watson, and when Rebounds is less than 136? ### Answer: SELECT MIN(games) FROM table_name_38 WHERE name = "travis watson" AND rebounds < 136
What is the sum of Rebounds, when Team is Aris Thessaloniki, and when Games is greater than 14?
CREATE TABLE table_name_56 (rebounds INTEGER, team VARCHAR, games VARCHAR)
SELECT SUM(rebounds) FROM table_name_56 WHERE team = "aris thessaloniki" AND games > 14
### Context: CREATE TABLE table_name_56 (rebounds INTEGER, team VARCHAR, games VARCHAR) ### Question: What is the sum of Rebounds, when Team is Aris Thessaloniki, and when Games is greater than 14? ### Answer: SELECT SUM(rebounds) FROM table_name_56 WHERE team = "aris thessaloniki" AND games > 14
What is the highest Rank, when Name is Travis Watson, and when Games is less than 14?
CREATE TABLE table_name_52 (rank INTEGER, name VARCHAR, games VARCHAR)
SELECT MAX(rank) FROM table_name_52 WHERE name = "travis watson" AND games < 14
### Context: CREATE TABLE table_name_52 (rank INTEGER, name VARCHAR, games VARCHAR) ### Question: What is the highest Rank, when Name is Travis Watson, and when Games is less than 14? ### Answer: SELECT MAX(rank) FROM table_name_52 WHERE name = "travis watson" AND games < 14
What is Authors, when Novelty is Gen Nov, when Location is South Africa, and when Name is Criocephalosaurus?
CREATE TABLE table_name_90 (authors VARCHAR, name VARCHAR, novelty VARCHAR, location VARCHAR)
SELECT authors FROM table_name_90 WHERE novelty = "gen nov" AND location = "south africa" AND name = "criocephalosaurus"
### Context: CREATE TABLE table_name_90 (authors VARCHAR, name VARCHAR, novelty VARCHAR, location VARCHAR) ### Question: What is Authors, when Novelty is Gen Nov, when Location is South Africa, and when Name is Criocephalosaurus? ### Answer: SELECT authors FROM table_name_90 WHERE novelty = "gen nov" AND location = "south africa" AND name = "criocephalosaurus"
What is Status, when Location is Russia?
CREATE TABLE table_name_69 (status VARCHAR, location VARCHAR)
SELECT status FROM table_name_69 WHERE location = "russia"
### Context: CREATE TABLE table_name_69 (status VARCHAR, location VARCHAR) ### Question: What is Status, when Location is Russia? ### Answer: SELECT status FROM table_name_69 WHERE location = "russia"
What is Authors, when Novelty is Gen Et Sp Nov, and when Name is Lanthanocephalus?
CREATE TABLE table_name_13 (authors VARCHAR, novelty VARCHAR, name VARCHAR)
SELECT authors FROM table_name_13 WHERE novelty = "gen et sp nov" AND name = "lanthanocephalus"
### Context: CREATE TABLE table_name_13 (authors VARCHAR, novelty VARCHAR, name VARCHAR) ### Question: What is Authors, when Novelty is Gen Et Sp Nov, and when Name is Lanthanocephalus? ### Answer: SELECT authors FROM table_name_13 WHERE novelty = "gen et sp nov" AND name = "lanthanocephalus"
What is Name, when Authors are Kammerer & Sidor?
CREATE TABLE table_name_51 (name VARCHAR, authors VARCHAR)
SELECT name FROM table_name_51 WHERE authors = "kammerer & sidor"
### Context: CREATE TABLE table_name_51 (name VARCHAR, authors VARCHAR) ### Question: What is Name, when Authors are Kammerer & Sidor? ### Answer: SELECT name FROM table_name_51 WHERE authors = "kammerer & sidor"
What is Name, when Location is Tanzania, and when Novelty is Gen Nov?
CREATE TABLE table_name_88 (name VARCHAR, location VARCHAR, novelty VARCHAR)
SELECT name FROM table_name_88 WHERE location = "tanzania" AND novelty = "gen nov"
### Context: CREATE TABLE table_name_88 (name VARCHAR, location VARCHAR, novelty VARCHAR) ### Question: What is Name, when Location is Tanzania, and when Novelty is Gen Nov? ### Answer: SELECT name FROM table_name_88 WHERE location = "tanzania" AND novelty = "gen nov"
What is Name, when Status is Valid, when Authors is Maisch, when Location is Tanzania, and when Novelty is Gen Et Sp Nov?
CREATE TABLE table_name_24 (name VARCHAR, novelty VARCHAR, location VARCHAR, status VARCHAR, authors VARCHAR)
SELECT name FROM table_name_24 WHERE status = "valid" AND authors = "maisch" AND location = "tanzania" AND novelty = "gen et sp nov"
### Context: CREATE TABLE table_name_24 (name VARCHAR, novelty VARCHAR, location VARCHAR, status VARCHAR, authors VARCHAR) ### Question: What is Name, when Status is Valid, when Authors is Maisch, when Location is Tanzania, and when Novelty is Gen Et Sp Nov? ### Answer: SELECT name FROM table_name_24 WHERE status = "valid" AND authors = "maisch" AND location = "tanzania" AND novelty = "gen et sp nov"
What is the T568A color for the cable with a white/orange stripe T568B color?
CREATE TABLE table_name_44 (t568a_color VARCHAR, t568b_color VARCHAR)
SELECT t568a_color FROM table_name_44 WHERE t568b_color = "white/orange stripe"
### Context: CREATE TABLE table_name_44 (t568a_color VARCHAR, t568b_color VARCHAR) ### Question: What is the T568A color for the cable with a white/orange stripe T568B color? ### Answer: SELECT t568a_color FROM table_name_44 WHERE t568b_color = "white/orange stripe"