question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which team had a driver with a finish position of 7? | CREATE TABLE table_name_85 (team VARCHAR, fin_pos VARCHAR) | SELECT team FROM table_name_85 WHERE fin_pos = "7" | ### Context: CREATE TABLE table_name_85 (team VARCHAR, fin_pos VARCHAR) ### Question: Which team had a driver with a finish position of 7? ### Answer: SELECT team FROM table_name_85 WHERE fin_pos = "7" |
What was the time of the driver with a finish position of 19? | CREATE TABLE table_name_13 (time_retired VARCHAR, fin_pos VARCHAR) | SELECT time_retired FROM table_name_13 WHERE fin_pos = "19" | ### Context: CREATE TABLE table_name_13 (time_retired VARCHAR, fin_pos VARCHAR) ### Question: What was the time of the driver with a finish position of 19? ### Answer: SELECT time_retired FROM table_name_13 WHERE fin_pos = "19" |
What were the number of laps led by the driver with a finish position of 14? | CREATE TABLE table_name_38 (laps VARCHAR, fin_pos VARCHAR) | SELECT laps AS Led FROM table_name_38 WHERE fin_pos = "14" | ### Context: CREATE TABLE table_name_38 (laps VARCHAR, fin_pos VARCHAR) ### Question: What were the number of laps led by the driver with a finish position of 14? ### Answer: SELECT laps AS Led FROM table_name_38 WHERE fin_pos = "14" |
Which team had a finish position of 8? | CREATE TABLE table_name_90 (team VARCHAR, fin_pos VARCHAR) | SELECT team FROM table_name_90 WHERE fin_pos = "8" | ### Context: CREATE TABLE table_name_90 (team VARCHAR, fin_pos VARCHAR) ### Question: Which team had a finish position of 8? ### Answer: SELECT team FROM table_name_90 WHERE fin_pos = "8" |
For the 27 arrow match event, what's the sum of all scores for that event? | CREATE TABLE table_name_63 (score INTEGER, event VARCHAR) | SELECT SUM(score) FROM table_name_63 WHERE event = "27 arrow match" | ### Context: CREATE TABLE table_name_63 (score INTEGER, event VARCHAR) ### Question: For the 27 arrow match event, what's the sum of all scores for that event? ### Answer: SELECT SUM(score) FROM table_name_63 WHERE event = "27 arrow match" |
Which event had a score of over 673 points? | CREATE TABLE table_name_72 (event VARCHAR, score INTEGER) | SELECT event FROM table_name_72 WHERE score > 673 | ### Context: CREATE TABLE table_name_72 (event VARCHAR, score INTEGER) ### Question: Which event had a score of over 673 points? ### Answer: SELECT event FROM table_name_72 WHERE score > 673 |
What is the total number of appearances in the premier league when there were 10 appearances at UEFA and less than 4 at league cup? | CREATE TABLE table_name_53 (premier_league VARCHAR, UEfa_cup VARCHAR, league_cup VARCHAR) | SELECT COUNT(premier_league) FROM table_name_53 WHERE UEfa_cup = 10 AND league_cup < 4 | ### Context: CREATE TABLE table_name_53 (premier_league VARCHAR, UEfa_cup VARCHAR, league_cup VARCHAR) ### Question: What is the total number of appearances in the premier league when there were 10 appearances at UEFA and less than 4 at league cup? ### Answer: SELECT COUNT(premier_league) FROM table_name_53 WHERE UEfa_cup = 10 AND league_cup < 4 |
What is the highest total number of appearances when there were less than 4 at the FA cup? | CREATE TABLE table_name_53 (total INTEGER, fa_cup INTEGER) | SELECT MAX(total) FROM table_name_53 WHERE fa_cup < 4 | ### Context: CREATE TABLE table_name_53 (total INTEGER, fa_cup INTEGER) ### Question: What is the highest total number of appearances when there were less than 4 at the FA cup? ### Answer: SELECT MAX(total) FROM table_name_53 WHERE fa_cup < 4 |
What player had less than 6 appearances at the FA cup, 33 at the premier league, and more than 5 at the UEFA cup? | CREATE TABLE table_name_62 (player VARCHAR, UEfa_cup VARCHAR, fa_cup VARCHAR, premier_league VARCHAR) | SELECT player FROM table_name_62 WHERE fa_cup < 6 AND premier_league = 33 AND UEfa_cup > 5 | ### Context: CREATE TABLE table_name_62 (player VARCHAR, UEfa_cup VARCHAR, fa_cup VARCHAR, premier_league VARCHAR) ### Question: What player had less than 6 appearances at the FA cup, 33 at the premier league, and more than 5 at the UEFA cup? ### Answer: SELECT player FROM table_name_62 WHERE fa_cup < 6 AND premier_league = 33 AND UEfa_cup > 5 |
What is the sum of the appearances at the league cup for the defender who had less than 10 appearances at the UEFA cup? | CREATE TABLE table_name_29 (league_cup INTEGER, position VARCHAR, UEfa_cup VARCHAR) | SELECT SUM(league_cup) FROM table_name_29 WHERE position = "defender" AND UEfa_cup < 10 | ### Context: CREATE TABLE table_name_29 (league_cup INTEGER, position VARCHAR, UEfa_cup VARCHAR) ### Question: What is the sum of the appearances at the league cup for the defender who had less than 10 appearances at the UEFA cup? ### Answer: SELECT SUM(league_cup) FROM table_name_29 WHERE position = "defender" AND UEfa_cup < 10 |
What's the target of the antibody rituximab? | CREATE TABLE table_name_90 (target VARCHAR, antibody VARCHAR) | SELECT target FROM table_name_90 WHERE antibody = "rituximab" | ### Context: CREATE TABLE table_name_90 (target VARCHAR, antibody VARCHAR) ### Question: What's the target of the antibody rituximab? ### Answer: SELECT target FROM table_name_90 WHERE antibody = "rituximab" |
What's the target for the brand mylotarg? | CREATE TABLE table_name_96 (target VARCHAR, brand_name VARCHAR) | SELECT target FROM table_name_96 WHERE brand_name = "mylotarg" | ### Context: CREATE TABLE table_name_96 (target VARCHAR, brand_name VARCHAR) ### Question: What's the target for the brand mylotarg? ### Answer: SELECT target FROM table_name_96 WHERE brand_name = "mylotarg" |
What's the type for the brand herceptin with an approval date of before 2006? | CREATE TABLE table_name_5 (type VARCHAR, approval_date VARCHAR, brand_name VARCHAR) | SELECT type FROM table_name_5 WHERE approval_date < 2006 AND brand_name = "herceptin" | ### Context: CREATE TABLE table_name_5 (type VARCHAR, approval_date VARCHAR, brand_name VARCHAR) ### Question: What's the type for the brand herceptin with an approval date of before 2006? ### Answer: SELECT type FROM table_name_5 WHERE approval_date < 2006 AND brand_name = "herceptin" |
What is Position, when Overall is less than 590, and when Round is 3? | CREATE TABLE table_name_6 (position VARCHAR, overall VARCHAR, round VARCHAR) | SELECT position FROM table_name_6 WHERE overall < 590 AND round = 3 | ### Context: CREATE TABLE table_name_6 (position VARCHAR, overall VARCHAR, round VARCHAR) ### Question: What is Position, when Overall is less than 590, and when Round is 3? ### Answer: SELECT position FROM table_name_6 WHERE overall < 590 AND round = 3 |
What is Player, when MLB Team is "Florida Marlins", and when Round is less than 15? | CREATE TABLE table_name_58 (player VARCHAR, mlb_team VARCHAR, round VARCHAR) | SELECT player FROM table_name_58 WHERE mlb_team = "florida marlins" AND round < 15 | ### Context: CREATE TABLE table_name_58 (player VARCHAR, mlb_team VARCHAR, round VARCHAR) ### Question: What is Player, when MLB Team is "Florida Marlins", and when Round is less than 15? ### Answer: SELECT player FROM table_name_58 WHERE mlb_team = "florida marlins" AND round < 15 |
What is the lowest Overall, when Player is "Dan Jennings", and when Round is greater than 9? | CREATE TABLE table_name_23 (overall INTEGER, player VARCHAR, round VARCHAR) | SELECT MIN(overall) FROM table_name_23 WHERE player = "dan jennings" AND round > 9 | ### Context: CREATE TABLE table_name_23 (overall INTEGER, player VARCHAR, round VARCHAR) ### Question: What is the lowest Overall, when Player is "Dan Jennings", and when Round is greater than 9? ### Answer: SELECT MIN(overall) FROM table_name_23 WHERE player = "dan jennings" AND round > 9 |
What is the total number of Round, when Position is 2B? | CREATE TABLE table_name_77 (round VARCHAR, position VARCHAR) | SELECT COUNT(round) FROM table_name_77 WHERE position = "2b" | ### Context: CREATE TABLE table_name_77 (round VARCHAR, position VARCHAR) ### Question: What is the total number of Round, when Position is 2B? ### Answer: SELECT COUNT(round) FROM table_name_77 WHERE position = "2b" |
What are the highest points for Justin Lofton when his top 10 is lower than 5? | CREATE TABLE table_name_14 (points INTEGER, driver VARCHAR, top_10 VARCHAR) | SELECT MAX(points) FROM table_name_14 WHERE driver = "justin lofton" AND top_10 < 5 | ### Context: CREATE TABLE table_name_14 (points INTEGER, driver VARCHAR, top_10 VARCHAR) ### Question: What are the highest points for Justin Lofton when his top 10 is lower than 5? ### Answer: SELECT MAX(points) FROM table_name_14 WHERE driver = "justin lofton" AND top_10 < 5 |
What is Frank Kimmel's lowest top 5 with more than 0 wins and fewer than 14 top 10s? | CREATE TABLE table_name_66 (top_5 INTEGER, top_10 VARCHAR, wins VARCHAR, driver VARCHAR) | SELECT MIN(top_5) FROM table_name_66 WHERE wins > 0 AND driver = "frank kimmel" AND top_10 < 14 | ### Context: CREATE TABLE table_name_66 (top_5 INTEGER, top_10 VARCHAR, wins VARCHAR, driver VARCHAR) ### Question: What is Frank Kimmel's lowest top 5 with more than 0 wins and fewer than 14 top 10s? ### Answer: SELECT MIN(top_5) FROM table_name_66 WHERE wins > 0 AND driver = "frank kimmel" AND top_10 < 14 |
What is the lowest top 10 with fewer than 4 wins, fewer than 3260 points and more than 0 for top 5? | CREATE TABLE table_name_29 (top_10 INTEGER, top_5 VARCHAR, wins VARCHAR, points VARCHAR) | SELECT MIN(top_10) FROM table_name_29 WHERE wins < 4 AND points < 3260 AND top_5 > 0 | ### Context: CREATE TABLE table_name_29 (top_10 INTEGER, top_5 VARCHAR, wins VARCHAR, points VARCHAR) ### Question: What is the lowest top 10 with fewer than 4 wins, fewer than 3260 points and more than 0 for top 5? ### Answer: SELECT MIN(top_10) FROM table_name_29 WHERE wins < 4 AND points < 3260 AND top_5 > 0 |
When the mark is 7.35, what's the lowest Lane found? | CREATE TABLE table_name_32 (lane INTEGER, mark VARCHAR) | SELECT MIN(lane) FROM table_name_32 WHERE mark = "7.35" | ### Context: CREATE TABLE table_name_32 (lane INTEGER, mark VARCHAR) ### Question: When the mark is 7.35, what's the lowest Lane found? ### Answer: SELECT MIN(lane) FROM table_name_32 WHERE mark = "7.35" |
What's the lowest lane found for a mark of 8.09 pb? | CREATE TABLE table_name_68 (lane INTEGER, mark VARCHAR) | SELECT MIN(lane) FROM table_name_68 WHERE mark = "8.09 pb" | ### Context: CREATE TABLE table_name_68 (lane INTEGER, mark VARCHAR) ### Question: What's the lowest lane found for a mark of 8.09 pb? ### Answer: SELECT MIN(lane) FROM table_name_68 WHERE mark = "8.09 pb" |
What's the sum of all of ivet lalova's Heat stats? | CREATE TABLE table_name_17 (heat INTEGER, name VARCHAR) | SELECT SUM(heat) FROM table_name_17 WHERE name = "ivet lalova" | ### Context: CREATE TABLE table_name_17 (heat INTEGER, name VARCHAR) ### Question: What's the sum of all of ivet lalova's Heat stats? ### Answer: SELECT SUM(heat) FROM table_name_17 WHERE name = "ivet lalova" |
What's the total number of Heat recorded for the british virgin islands? | CREATE TABLE table_name_5 (heat VARCHAR, country VARCHAR) | SELECT COUNT(heat) FROM table_name_5 WHERE country = "british virgin islands" | ### Context: CREATE TABLE table_name_5 (heat VARCHAR, country VARCHAR) ### Question: What's the total number of Heat recorded for the british virgin islands? ### Answer: SELECT COUNT(heat) FROM table_name_5 WHERE country = "british virgin islands" |
When the lane is under 2 and the name is virgen benavides with a mark of 7.29, what's the total number of Heat found? | CREATE TABLE table_name_14 (heat VARCHAR, lane VARCHAR, mark VARCHAR, name VARCHAR) | SELECT COUNT(heat) FROM table_name_14 WHERE mark = "7.29" AND name = "virgen benavides" AND lane < 2 | ### Context: CREATE TABLE table_name_14 (heat VARCHAR, lane VARCHAR, mark VARCHAR, name VARCHAR) ### Question: When the lane is under 2 and the name is virgen benavides with a mark of 7.29, what's the total number of Heat found? ### Answer: SELECT COUNT(heat) FROM table_name_14 WHERE mark = "7.29" AND name = "virgen benavides" AND lane < 2 |
What's the Time for the Competition of european cup and has a Venue of Moscow? | CREATE TABLE table_name_87 (time VARCHAR, competition VARCHAR, venue VARCHAR) | SELECT time FROM table_name_87 WHERE competition = "european cup" AND venue = "moscow" | ### Context: CREATE TABLE table_name_87 (time VARCHAR, competition VARCHAR, venue VARCHAR) ### Question: What's the Time for the Competition of european cup and has a Venue of Moscow? ### Answer: SELECT time FROM table_name_87 WHERE competition = "european cup" AND venue = "moscow" |
What's the Time for an Event of 4x100 m relay and has a Venue of Frankfurt? | CREATE TABLE table_name_17 (time VARCHAR, event VARCHAR, venue VARCHAR) | SELECT time FROM table_name_17 WHERE event = "4x100 m relay" AND venue = "frankfurt" | ### Context: CREATE TABLE table_name_17 (time VARCHAR, event VARCHAR, venue VARCHAR) ### Question: What's the Time for an Event of 4x100 m relay and has a Venue of Frankfurt? ### Answer: SELECT time FROM table_name_17 WHERE event = "4x100 m relay" AND venue = "frankfurt" |
What Competition has an Event of 4x100 m relay and has the Time of 38.89? | CREATE TABLE table_name_77 (competition VARCHAR, event VARCHAR, time VARCHAR) | SELECT competition FROM table_name_77 WHERE event = "4x100 m relay" AND time = "38.89" | ### Context: CREATE TABLE table_name_77 (competition VARCHAR, event VARCHAR, time VARCHAR) ### Question: What Competition has an Event of 4x100 m relay and has the Time of 38.89? ### Answer: SELECT competition FROM table_name_77 WHERE event = "4x100 m relay" AND time = "38.89" |
What's the lowest Year with a Venue of casablanca and has the Time of 20.63w? | CREATE TABLE table_name_71 (year INTEGER, venue VARCHAR, time VARCHAR) | SELECT MIN(year) FROM table_name_71 WHERE venue = "casablanca" AND time = "20.63w" | ### Context: CREATE TABLE table_name_71 (year INTEGER, venue VARCHAR, time VARCHAR) ### Question: What's the lowest Year with a Venue of casablanca and has the Time of 20.63w? ### Answer: SELECT MIN(year) FROM table_name_71 WHERE venue = "casablanca" AND time = "20.63w" |
What was the College/junior/club team of the player with the united states nationality? | CREATE TABLE table_name_91 (college_junior_club_team VARCHAR, nationality VARCHAR) | SELECT college_junior_club_team FROM table_name_91 WHERE nationality = "united states" | ### Context: CREATE TABLE table_name_91 (college_junior_club_team VARCHAR, nationality VARCHAR) ### Question: What was the College/junior/club team of the player with the united states nationality? ### Answer: SELECT college_junior_club_team FROM table_name_91 WHERE nationality = "united states" |
What was the lowest pick number for a united states player picked before round 7? | CREATE TABLE table_name_91 (pick INTEGER, round VARCHAR, nationality VARCHAR) | SELECT MIN(pick) FROM table_name_91 WHERE round > 7 AND nationality = "united states" | ### Context: CREATE TABLE table_name_91 (pick INTEGER, round VARCHAR, nationality VARCHAR) ### Question: What was the lowest pick number for a united states player picked before round 7? ### Answer: SELECT MIN(pick) FROM table_name_91 WHERE round > 7 AND nationality = "united states" |
What country was the player with the score line 69-71-72-69=281 from? | CREATE TABLE table_name_6 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_6 WHERE score = 69 - 71 - 72 - 69 = 281 | ### Context: CREATE TABLE table_name_6 (country VARCHAR, score VARCHAR) ### Question: What country was the player with the score line 69-71-72-69=281 from? ### Answer: SELECT country FROM table_name_6 WHERE score = 69 - 71 - 72 - 69 = 281 |
What was the score of the player from South Africa? | CREATE TABLE table_name_86 (score VARCHAR, country VARCHAR) | SELECT score FROM table_name_86 WHERE country = "south africa" | ### Context: CREATE TABLE table_name_86 (score VARCHAR, country VARCHAR) ### Question: What was the score of the player from South Africa? ### Answer: SELECT score FROM table_name_86 WHERE country = "south africa" |
What country did the player with the score line 73-74-72-64=283 from? | CREATE TABLE table_name_65 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_65 WHERE score = 73 - 74 - 72 - 64 = 283 | ### Context: CREATE TABLE table_name_65 (country VARCHAR, score VARCHAR) ### Question: What country did the player with the score line 73-74-72-64=283 from? ### Answer: SELECT country FROM table_name_65 WHERE score = 73 - 74 - 72 - 64 = 283 |
Who won Pro Stock Motorcycle the year Tom Martino won Pro Stock? | CREATE TABLE table_name_60 (pro_stock VARCHAR) | SELECT pro_stock AS Motorcycle FROM table_name_60 WHERE pro_stock = "tom martino" | ### Context: CREATE TABLE table_name_60 (pro_stock VARCHAR) ### Question: Who won Pro Stock Motorcycle the year Tom Martino won Pro Stock? ### Answer: SELECT pro_stock AS Motorcycle FROM table_name_60 WHERE pro_stock = "tom martino" |
Who won Funny Car in 2012? | CREATE TABLE table_name_64 (funny_car VARCHAR, year VARCHAR) | SELECT funny_car FROM table_name_64 WHERE year = 2012 | ### Context: CREATE TABLE table_name_64 (funny_car VARCHAR, year VARCHAR) ### Question: Who won Funny Car in 2012? ### Answer: SELECT funny_car FROM table_name_64 WHERE year = 2012 |
Who won Funny Car when Jim Yates won Pro Stock, in years after 1996? | CREATE TABLE table_name_57 (funny_car VARCHAR, pro_stock VARCHAR, year VARCHAR) | SELECT funny_car FROM table_name_57 WHERE pro_stock = "jim yates" AND year > 1996 | ### Context: CREATE TABLE table_name_57 (funny_car VARCHAR, pro_stock VARCHAR, year VARCHAR) ### Question: Who won Funny Car when Jim Yates won Pro Stock, in years after 1996? ### Answer: SELECT funny_car FROM table_name_57 WHERE pro_stock = "jim yates" AND year > 1996 |
Who won Pro Stock the year Tony Schumacher won Top Fuel and Tony Pedregon won Funny Car? | CREATE TABLE table_name_83 (pro_stock VARCHAR, top_fuel VARCHAR, funny_car VARCHAR) | SELECT pro_stock FROM table_name_83 WHERE top_fuel = "tony schumacher" AND funny_car = "tony pedregon" | ### Context: CREATE TABLE table_name_83 (pro_stock VARCHAR, top_fuel VARCHAR, funny_car VARCHAR) ### Question: Who won Pro Stock the year Tony Schumacher won Top Fuel and Tony Pedregon won Funny Car? ### Answer: SELECT pro_stock FROM table_name_83 WHERE top_fuel = "tony schumacher" AND funny_car = "tony pedregon" |
In which year did John Force win Funny Car and Mike Dunn win in Top Fuel? | CREATE TABLE table_name_65 (year VARCHAR, funny_car VARCHAR, top_fuel VARCHAR) | SELECT year FROM table_name_65 WHERE funny_car = "john force" AND top_fuel = "mike dunn" | ### Context: CREATE TABLE table_name_65 (year VARCHAR, funny_car VARCHAR, top_fuel VARCHAR) ### Question: In which year did John Force win Funny Car and Mike Dunn win in Top Fuel? ### Answer: SELECT year FROM table_name_65 WHERE funny_car = "john force" AND top_fuel = "mike dunn" |
What is the total number of races in the 2006 season with 0 poles and more than 0 podiums? | CREATE TABLE table_name_54 (races VARCHAR, podiums VARCHAR, poles VARCHAR, season VARCHAR) | SELECT COUNT(races) FROM table_name_54 WHERE poles = 0 AND season = "2006" AND podiums > 0 | ### Context: CREATE TABLE table_name_54 (races VARCHAR, podiums VARCHAR, poles VARCHAR, season VARCHAR) ### Question: What is the total number of races in the 2006 season with 0 poles and more than 0 podiums? ### Answer: SELECT COUNT(races) FROM table_name_54 WHERE poles = 0 AND season = "2006" AND podiums > 0 |
What is the highest number of the fastest laps when there were 0 poles, more than 2 podiums, and more than 15 races? | CREATE TABLE table_name_9 (fastest_laps INTEGER, podiums VARCHAR, poles VARCHAR, races VARCHAR) | SELECT MAX(fastest_laps) FROM table_name_9 WHERE poles = 0 AND races > 15 AND podiums > 2 | ### Context: CREATE TABLE table_name_9 (fastest_laps INTEGER, podiums VARCHAR, poles VARCHAR, races VARCHAR) ### Question: What is the highest number of the fastest laps when there were 0 poles, more than 2 podiums, and more than 15 races? ### Answer: SELECT MAX(fastest_laps) FROM table_name_9 WHERE poles = 0 AND races > 15 AND podiums > 2 |
What is the total number of races when there was more than 1 pole, and the fastest number of laps was less than 4? | CREATE TABLE table_name_8 (races INTEGER, poles VARCHAR, fastest_laps VARCHAR) | SELECT SUM(races) FROM table_name_8 WHERE poles > 1 AND fastest_laps < 4 | ### Context: CREATE TABLE table_name_8 (races INTEGER, poles VARCHAR, fastest_laps VARCHAR) ### Question: What is the total number of races when there was more than 1 pole, and the fastest number of laps was less than 4? ### Answer: SELECT SUM(races) FROM table_name_8 WHERE poles > 1 AND fastest_laps < 4 |
What was the average number of fastest laps with less than 0 poles? | CREATE TABLE table_name_5 (fastest_laps INTEGER, poles INTEGER) | SELECT AVG(fastest_laps) FROM table_name_5 WHERE poles < 0 | ### Context: CREATE TABLE table_name_5 (fastest_laps INTEGER, poles INTEGER) ### Question: What was the average number of fastest laps with less than 0 poles? ### Answer: SELECT AVG(fastest_laps) FROM table_name_5 WHERE poles < 0 |
What is the smallest number of poles when the fastest laps are less than 0? | CREATE TABLE table_name_52 (poles INTEGER, fastest_laps INTEGER) | SELECT MIN(poles) FROM table_name_52 WHERE fastest_laps < 0 | ### Context: CREATE TABLE table_name_52 (poles INTEGER, fastest_laps INTEGER) ### Question: What is the smallest number of poles when the fastest laps are less than 0? ### Answer: SELECT MIN(poles) FROM table_name_52 WHERE fastest_laps < 0 |
What is the total number of wins in the 2007 season when the fastest laps is 0, there are less than 0 podiums, and there are less than 16 races? | CREATE TABLE table_name_80 (wins INTEGER, podiums VARCHAR, season VARCHAR, fastest_laps VARCHAR, races VARCHAR) | SELECT SUM(wins) FROM table_name_80 WHERE fastest_laps = 0 AND races < 16 AND season = "2007" AND podiums < 0 | ### Context: CREATE TABLE table_name_80 (wins INTEGER, podiums VARCHAR, season VARCHAR, fastest_laps VARCHAR, races VARCHAR) ### Question: What is the total number of wins in the 2007 season when the fastest laps is 0, there are less than 0 podiums, and there are less than 16 races? ### Answer: SELECT SUM(wins) FROM table_name_80 WHERE fastest_laps = 0 AND races < 16 AND season = "2007" AND podiums < 0 |
What surface did hayley ericksen play on? | CREATE TABLE table_name_85 (surface VARCHAR, partner VARCHAR) | SELECT surface FROM table_name_85 WHERE partner = "hayley ericksen" | ### Context: CREATE TABLE table_name_85 (surface VARCHAR, partner VARCHAR) ### Question: What surface did hayley ericksen play on? ### Answer: SELECT surface FROM table_name_85 WHERE partner = "hayley ericksen" |
Who were the opponents on a hard surface with a score of 6-4, 7-6(2)? | CREATE TABLE table_name_23 (opponents_in_the_final VARCHAR, surface VARCHAR, score VARCHAR) | SELECT opponents_in_the_final FROM table_name_23 WHERE surface = "hard" AND score = "6-4, 7-6(2)" | ### Context: CREATE TABLE table_name_23 (opponents_in_the_final VARCHAR, surface VARCHAR, score VARCHAR) ### Question: Who were the opponents on a hard surface with a score of 6-4, 7-6(2)? ### Answer: SELECT opponents_in_the_final FROM table_name_23 WHERE surface = "hard" AND score = "6-4, 7-6(2)" |
What was hayley ericksen's score? | CREATE TABLE table_name_97 (score VARCHAR, partner VARCHAR) | SELECT score FROM table_name_97 WHERE partner = "hayley ericksen" | ### Context: CREATE TABLE table_name_97 (score VARCHAR, partner VARCHAR) ### Question: What was hayley ericksen's score? ### Answer: SELECT score FROM table_name_97 WHERE partner = "hayley ericksen" |
Who won the Silver the Year Katie Curtis Unknown won the Bronze? | CREATE TABLE table_name_28 (silver VARCHAR, bronze VARCHAR) | SELECT silver FROM table_name_28 WHERE bronze = "katie curtis unknown" | ### Context: CREATE TABLE table_name_28 (silver VARCHAR, bronze VARCHAR) ### Question: Who won the Silver the Year Katie Curtis Unknown won the Bronze? ### Answer: SELECT silver FROM table_name_28 WHERE bronze = "katie curtis unknown" |
Round that greg huntington went in? | CREATE TABLE table_name_54 (round VARCHAR, name VARCHAR) | SELECT round FROM table_name_54 WHERE name = "greg huntington" | ### Context: CREATE TABLE table_name_54 (round VARCHAR, name VARCHAR) ### Question: Round that greg huntington went in? ### Answer: SELECT round FROM table_name_54 WHERE name = "greg huntington" |
Total overall from penn state? | CREATE TABLE table_name_16 (overall INTEGER, college VARCHAR) | SELECT SUM(overall) FROM table_name_16 WHERE college = "penn state" | ### Context: CREATE TABLE table_name_16 (overall INTEGER, college VARCHAR) ### Question: Total overall from penn state? ### Answer: SELECT SUM(overall) FROM table_name_16 WHERE college = "penn state" |
How many seasons did Pat Chambers coach? | CREATE TABLE table_name_2 (seasons VARCHAR, coach VARCHAR) | SELECT COUNT(seasons) FROM table_name_2 WHERE coach = "pat chambers" | ### Context: CREATE TABLE table_name_2 (seasons VARCHAR, coach VARCHAR) ### Question: How many seasons did Pat Chambers coach? ### Answer: SELECT COUNT(seasons) FROM table_name_2 WHERE coach = "pat chambers" |
What was the to par that goes with the score 68-74-69=211? | CREATE TABLE table_name_70 (to_par VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_70 WHERE score = 68 - 74 - 69 = 211 | ### Context: CREATE TABLE table_name_70 (to_par VARCHAR, score VARCHAR) ### Question: What was the to par that goes with the score 68-74-69=211? ### Answer: SELECT to_par FROM table_name_70 WHERE score = 68 - 74 - 69 = 211 |
What country is Paul Stankowski from? | CREATE TABLE table_name_21 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_21 WHERE player = "paul stankowski" | ### Context: CREATE TABLE table_name_21 (country VARCHAR, player VARCHAR) ### Question: What country is Paul Stankowski from? ### Answer: SELECT country FROM table_name_21 WHERE player = "paul stankowski" |
What place goes with the score of 70-66-65=201? | CREATE TABLE table_name_90 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_90 WHERE score = 70 - 66 - 65 = 201 | ### Context: CREATE TABLE table_name_90 (place VARCHAR, score VARCHAR) ### Question: What place goes with the score of 70-66-65=201? ### Answer: SELECT place FROM table_name_90 WHERE score = 70 - 66 - 65 = 201 |
When Fred Funk had a to par of E, what was the score? | CREATE TABLE table_name_95 (score VARCHAR, to_par VARCHAR, player VARCHAR) | SELECT score FROM table_name_95 WHERE to_par = "e" AND player = "fred funk" | ### Context: CREATE TABLE table_name_95 (score VARCHAR, to_par VARCHAR, player VARCHAR) ### Question: When Fred Funk had a to par of E, what was the score? ### Answer: SELECT score FROM table_name_95 WHERE to_par = "e" AND player = "fred funk" |
Where is the location where Scott Junk was the opponent? | CREATE TABLE table_name_89 (location VARCHAR, opponent VARCHAR) | SELECT location FROM table_name_89 WHERE opponent = "scott junk" | ### Context: CREATE TABLE table_name_89 (location VARCHAR, opponent VARCHAR) ### Question: Where is the location where Scott Junk was the opponent? ### Answer: SELECT location FROM table_name_89 WHERE opponent = "scott junk" |
what is the score on 14 december 1974 and the away team is crystal palace? | CREATE TABLE table_name_69 (score VARCHAR, date VARCHAR, away_team VARCHAR) | SELECT score FROM table_name_69 WHERE date = "14 december 1974" AND away_team = "crystal palace" | ### Context: CREATE TABLE table_name_69 (score VARCHAR, date VARCHAR, away_team VARCHAR) ### Question: what is the score on 14 december 1974 and the away team is crystal palace? ### Answer: SELECT score FROM table_name_69 WHERE date = "14 december 1974" AND away_team = "crystal palace" |
what is the date when the away team is crystal palace? | CREATE TABLE table_name_94 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_94 WHERE away_team = "crystal palace" | ### Context: CREATE TABLE table_name_94 (date VARCHAR, away_team VARCHAR) ### Question: what is the date when the away team is crystal palace? ### Answer: SELECT date FROM table_name_94 WHERE away_team = "crystal palace" |
What was the Tie Number of the Bradford City away team? | CREATE TABLE table_name_7 (tie_no VARCHAR, away_team VARCHAR) | SELECT tie_no FROM table_name_7 WHERE away_team = "bradford city" | ### Context: CREATE TABLE table_name_7 (tie_no VARCHAR, away_team VARCHAR) ### Question: What was the Tie Number of the Bradford City away team? ### Answer: SELECT tie_no FROM table_name_7 WHERE away_team = "bradford city" |
Who was the home team that had a replay of Tie Number and played against the Bolton Wanderers? | CREATE TABLE table_name_81 (home_team VARCHAR, tie_no VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_81 WHERE tie_no = "replay" AND away_team = "bolton wanderers" | ### Context: CREATE TABLE table_name_81 (home_team VARCHAR, tie_no VARCHAR, away_team VARCHAR) ### Question: Who was the home team that had a replay of Tie Number and played against the Bolton Wanderers? ### Answer: SELECT home_team FROM table_name_81 WHERE tie_no = "replay" AND away_team = "bolton wanderers" |
What date has a Tie Number of 4? | CREATE TABLE table_name_92 (date VARCHAR, tie_no VARCHAR) | SELECT date FROM table_name_92 WHERE tie_no = "4" | ### Context: CREATE TABLE table_name_92 (date VARCHAR, tie_no VARCHAR) ### Question: What date has a Tie Number of 4? ### Answer: SELECT date FROM table_name_92 WHERE tie_no = "4" |
What is the average money ($) that Tom Weiskopf made? | CREATE TABLE table_name_54 (money___ INTEGER, player VARCHAR) | SELECT AVG(money___) AS $__ FROM table_name_54 WHERE player = "tom weiskopf" | ### Context: CREATE TABLE table_name_54 (money___ INTEGER, player VARCHAR) ### Question: What is the average money ($) that Tom Weiskopf made? ### Answer: SELECT AVG(money___) AS $__ FROM table_name_54 WHERE player = "tom weiskopf" |
What place did the golfer from the United States come in with a To Par of +2, and a score of 73-74-71-72=290? | CREATE TABLE table_name_43 (place VARCHAR, country VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT place FROM table_name_43 WHERE country = "united states" AND to_par = "+2" AND score = 73 - 74 - 71 - 72 = 290 | ### Context: CREATE TABLE table_name_43 (place VARCHAR, country VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: What place did the golfer from the United States come in with a To Par of +2, and a score of 73-74-71-72=290? ### Answer: SELECT place FROM table_name_43 WHERE country = "united states" AND to_par = "+2" AND score = 73 - 74 - 71 - 72 = 290 |
For a long scale of one million, what is the power notion? | CREATE TABLE table_name_35 (power_notation VARCHAR, long_scale VARCHAR) | SELECT power_notation FROM table_name_35 WHERE long_scale = "one million" | ### Context: CREATE TABLE table_name_35 (power_notation VARCHAR, long_scale VARCHAR) ### Question: For a long scale of one million, what is the power notion? ### Answer: SELECT power_notation FROM table_name_35 WHERE long_scale = "one million" |
For a power notation of 10 12, what is the long scale? | CREATE TABLE table_name_7 (long_scale VARCHAR, power_notation VARCHAR) | SELECT long_scale FROM table_name_7 WHERE power_notation = "10 12" | ### Context: CREATE TABLE table_name_7 (long_scale VARCHAR, power_notation VARCHAR) ### Question: For a power notation of 10 12, what is the long scale? ### Answer: SELECT long_scale FROM table_name_7 WHERE power_notation = "10 12" |
For a short scale of one quadrillion a thousand trillion, what is the Long scale? | CREATE TABLE table_name_94 (long_scale VARCHAR, short_scale VARCHAR) | SELECT long_scale FROM table_name_94 WHERE short_scale = "one quadrillion a thousand trillion" | ### Context: CREATE TABLE table_name_94 (long_scale VARCHAR, short_scale VARCHAR) ### Question: For a short scale of one quadrillion a thousand trillion, what is the Long scale? ### Answer: SELECT long_scale FROM table_name_94 WHERE short_scale = "one quadrillion a thousand trillion" |
what is the employee (real name) when the pick # is higher than 10 and the brand (to) is raw? | CREATE TABLE table_name_9 (employee__real_name_ VARCHAR, pick__number VARCHAR, brand__to_ VARCHAR) | SELECT employee__real_name_ FROM table_name_9 WHERE pick__number > 10 AND brand__to_ = "raw" | ### Context: CREATE TABLE table_name_9 (employee__real_name_ VARCHAR, pick__number VARCHAR, brand__to_ VARCHAR) ### Question: what is the employee (real name) when the pick # is higher than 10 and the brand (to) is raw? ### Answer: SELECT employee__real_name_ FROM table_name_9 WHERE pick__number > 10 AND brand__to_ = "raw" |
Who was the opposing team when the scorer was ronaldinho 90+3'? | CREATE TABLE table_name_37 (opponent_team VARCHAR, scorers VARCHAR) | SELECT opponent_team FROM table_name_37 WHERE scorers = "ronaldinho 90+3'" | ### Context: CREATE TABLE table_name_37 (opponent_team VARCHAR, scorers VARCHAR) ### Question: Who was the opposing team when the scorer was ronaldinho 90+3'? ### Answer: SELECT opponent_team FROM table_name_37 WHERE scorers = "ronaldinho 90+3'" |
Who was the opposing team when the scorers were jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'? | CREATE TABLE table_name_84 (opponent_team VARCHAR, scorers VARCHAR) | SELECT opponent_team FROM table_name_84 WHERE scorers = "jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'" | ### Context: CREATE TABLE table_name_84 (opponent_team VARCHAR, scorers VARCHAR) ### Question: Who was the opposing team when the scorers were jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'? ### Answer: SELECT opponent_team FROM table_name_84 WHERE scorers = "jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'" |
What was the score when Altrincham was home? | CREATE TABLE table_name_26 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_26 WHERE home_team = "altrincham" | ### Context: CREATE TABLE table_name_26 (score VARCHAR, home_team VARCHAR) ### Question: What was the score when Altrincham was home? ### Answer: SELECT score FROM table_name_26 WHERE home_team = "altrincham" |
How many goals against when the draws are fewer than 3? | CREATE TABLE table_name_20 (goals_against INTEGER, drawn INTEGER) | SELECT MAX(goals_against) FROM table_name_20 WHERE drawn < 3 | ### Context: CREATE TABLE table_name_20 (goals_against INTEGER, drawn INTEGER) ### Question: How many goals against when the draws are fewer than 3? ### Answer: SELECT MAX(goals_against) FROM table_name_20 WHERE drawn < 3 |
How many goals when the points 1 is 38 and the played number is less than 42? | CREATE TABLE table_name_24 (goals_for INTEGER, points_1 VARCHAR, played VARCHAR) | SELECT SUM(goals_for) FROM table_name_24 WHERE points_1 = 38 AND played < 42 | ### Context: CREATE TABLE table_name_24 (goals_for INTEGER, points_1 VARCHAR, played VARCHAR) ### Question: How many goals when the points 1 is 38 and the played number is less than 42? ### Answer: SELECT SUM(goals_for) FROM table_name_24 WHERE points_1 = 38 AND played < 42 |
What is the fewest goals for when goal difference is +10 and goals against is more than 61? | CREATE TABLE table_name_20 (goals_for INTEGER, goal_difference VARCHAR, goals_against VARCHAR) | SELECT MIN(goals_for) FROM table_name_20 WHERE goal_difference = "+10" AND goals_against > 61 | ### Context: CREATE TABLE table_name_20 (goals_for INTEGER, goal_difference VARCHAR, goals_against VARCHAR) ### Question: What is the fewest goals for when goal difference is +10 and goals against is more than 61? ### Answer: SELECT MIN(goals_for) FROM table_name_20 WHERE goal_difference = "+10" AND goals_against > 61 |
What is the fewest goals for when goals against is 75 and drawn is smaller than 11? | CREATE TABLE table_name_35 (goals_for INTEGER, goals_against VARCHAR, drawn VARCHAR) | SELECT MIN(goals_for) FROM table_name_35 WHERE goals_against = 75 AND drawn < 11 | ### Context: CREATE TABLE table_name_35 (goals_for INTEGER, goals_against VARCHAR, drawn VARCHAR) ### Question: What is the fewest goals for when goals against is 75 and drawn is smaller than 11? ### Answer: SELECT MIN(goals_for) FROM table_name_35 WHERE goals_against = 75 AND drawn < 11 |
What is the highest goals for the position after 10, a goal difference less than -24, and played more than 30 times? | CREATE TABLE table_name_46 (goals_for INTEGER, played VARCHAR, position VARCHAR, goal_difference VARCHAR) | SELECT MAX(goals_for) FROM table_name_46 WHERE position > 10 AND goal_difference < -24 AND played > 30 | ### Context: CREATE TABLE table_name_46 (goals_for INTEGER, played VARCHAR, position VARCHAR, goal_difference VARCHAR) ### Question: What is the highest goals for the position after 10, a goal difference less than -24, and played more than 30 times? ### Answer: SELECT MAX(goals_for) FROM table_name_46 WHERE position > 10 AND goal_difference < -24 AND played > 30 |
What is the lowest goals for more than 30 games played? | CREATE TABLE table_name_88 (goals_for INTEGER, played INTEGER) | SELECT MIN(goals_for) FROM table_name_88 WHERE played > 30 | ### Context: CREATE TABLE table_name_88 (goals_for INTEGER, played INTEGER) ### Question: What is the lowest goals for more than 30 games played? ### Answer: SELECT MIN(goals_for) FROM table_name_88 WHERE played > 30 |
What is the highest amount of goals in the position after 8, 12 losses, and played less than 30 games? | CREATE TABLE table_name_71 (goals_for INTEGER, played VARCHAR, position VARCHAR, losses VARCHAR) | SELECT MAX(goals_for) FROM table_name_71 WHERE position > 8 AND losses = 12 AND played < 30 | ### Context: CREATE TABLE table_name_71 (goals_for INTEGER, played VARCHAR, position VARCHAR, losses VARCHAR) ### Question: What is the highest amount of goals in the position after 8, 12 losses, and played less than 30 games? ### Answer: SELECT MAX(goals_for) FROM table_name_71 WHERE position > 8 AND losses = 12 AND played < 30 |
What is the total number of losses for the over 30 games played? | CREATE TABLE table_name_50 (losses VARCHAR, played INTEGER) | SELECT COUNT(losses) FROM table_name_50 WHERE played > 30 | ### Context: CREATE TABLE table_name_50 (losses VARCHAR, played INTEGER) ### Question: What is the total number of losses for the over 30 games played? ### Answer: SELECT COUNT(losses) FROM table_name_50 WHERE played > 30 |
What is the total number of losses and draws less than 7, points larger than 26, 60 goals, and a position before 4? | CREATE TABLE table_name_68 (losses VARCHAR, position VARCHAR, goals_for VARCHAR, draws VARCHAR, points VARCHAR) | SELECT COUNT(losses) FROM table_name_68 WHERE draws < 7 AND points > 26 AND goals_for = 60 AND position < 4 | ### Context: CREATE TABLE table_name_68 (losses VARCHAR, position VARCHAR, goals_for VARCHAR, draws VARCHAR, points VARCHAR) ### Question: What is the total number of losses and draws less than 7, points larger than 26, 60 goals, and a position before 4? ### Answer: SELECT COUNT(losses) FROM table_name_68 WHERE draws < 7 AND points > 26 AND goals_for = 60 AND position < 4 |
What is the highest total for bronze with a gold larger than 0, a silver smaller than 5, and a total of 15? | CREATE TABLE table_name_84 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR) | SELECT MAX(bronze) FROM table_name_84 WHERE gold > 0 AND total = 15 AND silver < 5 | ### Context: CREATE TABLE table_name_84 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR) ### Question: What is the highest total for bronze with a gold larger than 0, a silver smaller than 5, and a total of 15? ### Answer: SELECT MAX(bronze) FROM table_name_84 WHERE gold > 0 AND total = 15 AND silver < 5 |
What is Score, when High Points is "Dwight Howard (25)"? | CREATE TABLE table_name_36 (score VARCHAR, high_points VARCHAR) | SELECT score FROM table_name_36 WHERE high_points = "dwight howard (25)" | ### Context: CREATE TABLE table_name_36 (score VARCHAR, high_points VARCHAR) ### Question: What is Score, when High Points is "Dwight Howard (25)"? ### Answer: SELECT score FROM table_name_36 WHERE high_points = "dwight howard (25)" |
What is Score, when Team is "Washington"? | CREATE TABLE table_name_81 (score VARCHAR, team VARCHAR) | SELECT score FROM table_name_81 WHERE team = "washington" | ### Context: CREATE TABLE table_name_81 (score VARCHAR, team VARCHAR) ### Question: What is Score, when Team is "Washington"? ### Answer: SELECT score FROM table_name_81 WHERE team = "washington" |
What is Record, when Location Attendance is "Pepsi Center 19,749"? | CREATE TABLE table_name_97 (record VARCHAR, location_attendance VARCHAR) | SELECT record FROM table_name_97 WHERE location_attendance = "pepsi center 19,749" | ### Context: CREATE TABLE table_name_97 (record VARCHAR, location_attendance VARCHAR) ### Question: What is Record, when Location Attendance is "Pepsi Center 19,749"? ### Answer: SELECT record FROM table_name_97 WHERE location_attendance = "pepsi center 19,749" |
What is Record, when Game is "36"? | CREATE TABLE table_name_24 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_24 WHERE game = 36 | ### Context: CREATE TABLE table_name_24 (record VARCHAR, game VARCHAR) ### Question: What is Record, when Game is "36"? ### Answer: SELECT record FROM table_name_24 WHERE game = 36 |
What is Date, when Winning Score is −14 (68-68-67-71=274)? | CREATE TABLE table_name_38 (date VARCHAR, winning_score VARCHAR) | SELECT date FROM table_name_38 WHERE winning_score = −14(68 - 68 - 67 - 71 = 274) | ### Context: CREATE TABLE table_name_38 (date VARCHAR, winning_score VARCHAR) ### Question: What is Date, when Winning Score is −14 (68-68-67-71=274)? ### Answer: SELECT date FROM table_name_38 WHERE winning_score = −14(68 - 68 - 67 - 71 = 274) |
What is the Margin of Victory, when Tournament is Mercedes Championships (3)? | CREATE TABLE table_name_24 (margin_of_victory VARCHAR, tournament VARCHAR) | SELECT margin_of_victory FROM table_name_24 WHERE tournament = "mercedes championships (3)" | ### Context: CREATE TABLE table_name_24 (margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What is the Margin of Victory, when Tournament is Mercedes Championships (3)? ### Answer: SELECT margin_of_victory FROM table_name_24 WHERE tournament = "mercedes championships (3)" |
What is Date, when Tournament, is Greenbrier Classic? | CREATE TABLE table_name_83 (date VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_83 WHERE tournament = "greenbrier classic" | ### Context: CREATE TABLE table_name_83 (date VARCHAR, tournament VARCHAR) ### Question: What is Date, when Tournament, is Greenbrier Classic? ### Answer: SELECT date FROM table_name_83 WHERE tournament = "greenbrier classic" |
What is Runner(s)-Up when Margin of Victory is 6 Strokes? | CREATE TABLE table_name_87 (runner_s__up VARCHAR, margin_of_victory VARCHAR) | SELECT runner_s__up FROM table_name_87 WHERE margin_of_victory = "6 strokes" | ### Context: CREATE TABLE table_name_87 (runner_s__up VARCHAR, margin_of_victory VARCHAR) ### Question: What is Runner(s)-Up when Margin of Victory is 6 Strokes? ### Answer: SELECT runner_s__up FROM table_name_87 WHERE margin_of_victory = "6 strokes" |
What is Date, when Runner(s)-Up is Jonathan Kaye? | CREATE TABLE table_name_18 (date VARCHAR, runner_s__up VARCHAR) | SELECT date FROM table_name_18 WHERE runner_s__up = "jonathan kaye" | ### Context: CREATE TABLE table_name_18 (date VARCHAR, runner_s__up VARCHAR) ### Question: What is Date, when Runner(s)-Up is Jonathan Kaye? ### Answer: SELECT date FROM table_name_18 WHERE runner_s__up = "jonathan kaye" |
What is the year that nahete colles was named? | CREATE TABLE table_name_1 (year_named INTEGER, name VARCHAR) | SELECT MAX(year_named) FROM table_name_1 WHERE name = "nahete colles" | ### Context: CREATE TABLE table_name_1 (year_named INTEGER, name VARCHAR) ### Question: What is the year that nahete colles was named? ### Answer: SELECT MAX(year_named) FROM table_name_1 WHERE name = "nahete colles" |
What year was the geological feature with a latitude of 76.0n and a diameter larger than 548 km was named? | CREATE TABLE table_name_78 (year_named INTEGER, latitude VARCHAR, diameter__km_ VARCHAR) | SELECT MAX(year_named) FROM table_name_78 WHERE latitude = "76.0n" AND diameter__km_ > 548 | ### Context: CREATE TABLE table_name_78 (year_named INTEGER, latitude VARCHAR, diameter__km_ VARCHAR) ### Question: What year was the geological feature with a latitude of 76.0n and a diameter larger than 548 km was named? ### Answer: SELECT MAX(year_named) FROM table_name_78 WHERE latitude = "76.0n" AND diameter__km_ > 548 |
What is the diameter in km of t'ien hu colles? | CREATE TABLE table_name_62 (diameter__km_ VARCHAR, name VARCHAR) | SELECT diameter__km_ FROM table_name_62 WHERE name = "t'ien hu colles" | ### Context: CREATE TABLE table_name_62 (diameter__km_ VARCHAR, name VARCHAR) ### Question: What is the diameter in km of t'ien hu colles? ### Answer: SELECT diameter__km_ FROM table_name_62 WHERE name = "t'ien hu colles" |
Which team has driven 134 laps? | CREATE TABLE table_name_22 (team VARCHAR, laps VARCHAR) | SELECT team FROM table_name_22 WHERE laps = 134 | ### Context: CREATE TABLE table_name_22 (team VARCHAR, laps VARCHAR) ### Question: Which team has driven 134 laps? ### Answer: SELECT team FROM table_name_22 WHERE laps = 134 |
In what class is the laps greater than 134 and the position is 4th? | CREATE TABLE table_name_74 (class VARCHAR, laps VARCHAR, pos VARCHAR) | SELECT class FROM table_name_74 WHERE laps > 134 AND pos = "4th" | ### Context: CREATE TABLE table_name_74 (class VARCHAR, laps VARCHAR, pos VARCHAR) ### Question: In what class is the laps greater than 134 and the position is 4th? ### Answer: SELECT class FROM table_name_74 WHERE laps > 134 AND pos = "4th" |
What title did Mentuhotep IV have? | CREATE TABLE table_name_11 (title VARCHAR, name VARCHAR) | SELECT title FROM table_name_11 WHERE name = "mentuhotep iv" | ### Context: CREATE TABLE table_name_11 (title VARCHAR, name VARCHAR) ### Question: What title did Mentuhotep IV have? ### Answer: SELECT title FROM table_name_11 WHERE name = "mentuhotep iv" |
What is the title of Amenemhat II? | CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR) | SELECT title FROM table_name_78 WHERE name = "amenemhat ii" | ### Context: CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR) ### Question: What is the title of Amenemhat II? ### Answer: SELECT title FROM table_name_78 WHERE name = "amenemhat ii" |
What is the title of Senusret I? | CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR) | SELECT title FROM table_name_78 WHERE name = "senusret i" | ### Context: CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR) ### Question: What is the title of Senusret I? ### Answer: SELECT title FROM table_name_78 WHERE name = "senusret i" |
What is the title of Amenemhat I? | CREATE TABLE table_name_57 (title VARCHAR, name VARCHAR) | SELECT title FROM table_name_57 WHERE name = "amenemhat i" | ### Context: CREATE TABLE table_name_57 (title VARCHAR, name VARCHAR) ### Question: What is the title of Amenemhat I? ### Answer: SELECT title FROM table_name_57 WHERE name = "amenemhat i" |
What is the Record when the round was 5, time was 5:00, and the opponent was Torrance Taylor | CREATE TABLE table_name_35 (record VARCHAR, opponent VARCHAR, round VARCHAR, time VARCHAR) | SELECT record FROM table_name_35 WHERE round = 5 AND time = "5:00" AND opponent = "torrance taylor" | ### Context: CREATE TABLE table_name_35 (record VARCHAR, opponent VARCHAR, round VARCHAR, time VARCHAR) ### Question: What is the Record when the round was 5, time was 5:00, and the opponent was Torrance Taylor ### Answer: SELECT record FROM table_name_35 WHERE round = 5 AND time = "5:00" AND opponent = "torrance taylor" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.