question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What city was in 1889? | CREATE TABLE table_name_97 (city VARCHAR, year VARCHAR) | SELECT city FROM table_name_97 WHERE year = 1889 | ### Context: CREATE TABLE table_name_97 (city VARCHAR, year VARCHAR) ### Question: What city was in 1889? ### Answer: SELECT city FROM table_name_97 WHERE year = 1889 |
What is the score in Leicester? | CREATE TABLE table_name_42 (score VARCHAR, city VARCHAR) | SELECT score FROM table_name_42 WHERE city = "leicester" | ### Context: CREATE TABLE table_name_42 (score VARCHAR, city VARCHAR) ### Question: What is the score in Leicester? ### Answer: SELECT score FROM table_name_42 WHERE city = "leicester" |
How many years has 1 run? | CREATE TABLE table_name_53 (year VARCHAR, score VARCHAR) | SELECT COUNT(year) FROM table_name_53 WHERE score = "1 run" | ### Context: CREATE TABLE table_name_53 (year VARCHAR, score VARCHAR) ### Question: How many years has 1 run? ### Answer: SELECT COUNT(year) FROM table_name_53 WHERE score = "1 run" |
What year was in Aigburth? | CREATE TABLE table_name_26 (year INTEGER, venue VARCHAR) | SELECT MAX(year) FROM table_name_26 WHERE venue = "aigburth" | ### Context: CREATE TABLE table_name_26 (year INTEGER, venue VARCHAR) ### Question: What year was in Aigburth? ### Answer: SELECT MAX(year) FROM table_name_26 WHERE venue = "aigburth" |
Which season has q145 as its format? | CREATE TABLE table_name_63 (season__number INTEGER, format__number VARCHAR) | SELECT MIN(season__number) FROM table_name_63 WHERE format__number = "q145" | ### Context: CREATE TABLE table_name_63 (season__number INTEGER, format__number VARCHAR) ### Question: Which season has q145 as its format? ### Answer: SELECT MIN(season__number) FROM table_name_63 WHERE format__number = "q145" |
What is the average episode number with q146 format? | CREATE TABLE table_name_26 (episode__number INTEGER, format__number VARCHAR) | SELECT AVG(episode__number) FROM table_name_26 WHERE format__number = "q146" | ### Context: CREATE TABLE table_name_26 (episode__number INTEGER, format__number VARCHAR) ### Question: What is the average episode number with q146 format? ### Answer: SELECT AVG(episode__number) FROM table_name_26 WHERE format__number = "q146" |
Who is the opponent of Game 1 with a 3-2-0 record? | CREATE TABLE table_name_21 (opponent VARCHAR, game VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_21 WHERE game > 1 AND record = "3-2-0" | ### Context: CREATE TABLE table_name_21 (opponent VARCHAR, game VARCHAR, record VARCHAR) ### Question: Who is the opponent of Game 1 with a 3-2-0 record? ### Answer: SELECT opponent FROM table_name_21 WHERE game > 1 AND record = "3-2-0" |
What is game 9's record? | CREATE TABLE table_name_36 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_36 WHERE game = 9 | ### Context: CREATE TABLE table_name_36 (record VARCHAR, game VARCHAR) ### Question: What is game 9's record? ### Answer: SELECT record FROM table_name_36 WHERE game = 9 |
Who is the opponent of the team with a 1-1-0 record? | CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_53 WHERE record = "1-1-0" | ### Context: CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR) ### Question: Who is the opponent of the team with a 1-1-0 record? ### Answer: SELECT opponent FROM table_name_53 WHERE record = "1-1-0" |
What is the 3rd Liga from 2010-11? | CREATE TABLE table_name_41 (date VARCHAR) | SELECT 3 AS rd_liga_3rd FROM table_name_41 WHERE date = "2010-11" | ### Context: CREATE TABLE table_name_41 (date VARCHAR) ### Question: What is the 3rd Liga from 2010-11? ### Answer: SELECT 3 AS rd_liga_3rd FROM table_name_41 WHERE date = "2010-11" |
What is the 3rd Liga from Game 1 of 0-1 between the years 2008-09? | CREATE TABLE table_name_36 (game_1 VARCHAR, date VARCHAR) | SELECT 3 AS rd_liga_3rd FROM table_name_36 WHERE game_1 = "0-1" AND date = "2008-09" | ### Context: CREATE TABLE table_name_36 (game_1 VARCHAR, date VARCHAR) ### Question: What is the 3rd Liga from Game 1 of 0-1 between the years 2008-09? ### Answer: SELECT 3 AS rd_liga_3rd FROM table_name_36 WHERE game_1 = "0-1" AND date = "2008-09" |
Which Score in the final has an Outcome of winner, and a Surface of hard (i)? | CREATE TABLE table_name_12 (score_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR) | SELECT score_in_the_final FROM table_name_12 WHERE outcome = "winner" AND surface = "hard (i)" | ### Context: CREATE TABLE table_name_12 (score_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR) ### Question: Which Score in the final has an Outcome of winner, and a Surface of hard (i)? ### Answer: SELECT score_in_the_final FROM table_name_12 WHERE outcome = "winner" AND surface = "hard (i)" |
Which Surface has a Partner of jim thomas, and a Date of 2007? | CREATE TABLE table_name_45 (surface VARCHAR, partner VARCHAR, date VARCHAR) | SELECT surface FROM table_name_45 WHERE partner = "jim thomas" AND date = 2007 | ### Context: CREATE TABLE table_name_45 (surface VARCHAR, partner VARCHAR, date VARCHAR) ### Question: Which Surface has a Partner of jim thomas, and a Date of 2007? ### Answer: SELECT surface FROM table_name_45 WHERE partner = "jim thomas" AND date = 2007 |
What was the Attendance in the game with a Result of won 5-2? | CREATE TABLE table_name_58 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_58 WHERE result = "won 5-2" | ### Context: CREATE TABLE table_name_58 (attendance VARCHAR, result VARCHAR) ### Question: What was the Attendance in the game with a Result of won 5-2? ### Answer: SELECT attendance FROM table_name_58 WHERE result = "won 5-2" |
What was the home Competition with Attendance of 1,268? | CREATE TABLE table_name_39 (competition VARCHAR, venue VARCHAR, attendance VARCHAR) | SELECT competition FROM table_name_39 WHERE venue = "home" AND attendance = "1,268" | ### Context: CREATE TABLE table_name_39 (competition VARCHAR, venue VARCHAR, attendance VARCHAR) ### Question: What was the home Competition with Attendance of 1,268? ### Answer: SELECT competition FROM table_name_39 WHERE venue = "home" AND attendance = "1,268" |
What school or club team did the player chosen for the Sacramento Monarchs play for? | CREATE TABLE table_name_94 (school_club_team VARCHAR, wnba_team VARCHAR) | SELECT school_club_team FROM table_name_94 WHERE wnba_team = "sacramento monarchs" | ### Context: CREATE TABLE table_name_94 (school_club_team VARCHAR, wnba_team VARCHAR) ### Question: What school or club team did the player chosen for the Sacramento Monarchs play for? ### Answer: SELECT school_club_team FROM table_name_94 WHERE wnba_team = "sacramento monarchs" |
What player was chosen for the Chicago Sky? | CREATE TABLE table_name_57 (player VARCHAR, wnba_team VARCHAR) | SELECT player FROM table_name_57 WHERE wnba_team = "chicago sky" | ### Context: CREATE TABLE table_name_57 (player VARCHAR, wnba_team VARCHAR) ### Question: What player was chosen for the Chicago Sky? ### Answer: SELECT player FROM table_name_57 WHERE wnba_team = "chicago sky" |
Which player was picked for the Chicago Sky? | CREATE TABLE table_name_47 (player VARCHAR, wnba_team VARCHAR) | SELECT player FROM table_name_47 WHERE wnba_team = "chicago sky" | ### Context: CREATE TABLE table_name_47 (player VARCHAR, wnba_team VARCHAR) ### Question: Which player was picked for the Chicago Sky? ### Answer: SELECT player FROM table_name_47 WHERE wnba_team = "chicago sky" |
What is the position of the player with a height of 205 and shirt no 8? | CREATE TABLE table_name_14 (position VARCHAR, height VARCHAR, shirt_no VARCHAR) | SELECT position FROM table_name_14 WHERE height = 205 AND shirt_no = 8 | ### Context: CREATE TABLE table_name_14 (position VARCHAR, height VARCHAR, shirt_no VARCHAR) ### Question: What is the position of the player with a height of 205 and shirt no 8? ### Answer: SELECT position FROM table_name_14 WHERE height = 205 AND shirt_no = 8 |
What is the name of the player who is a height of 182? | CREATE TABLE table_name_84 (player VARCHAR, height VARCHAR) | SELECT player FROM table_name_84 WHERE height = 182 | ### Context: CREATE TABLE table_name_84 (player VARCHAR, height VARCHAR) ### Question: What is the name of the player who is a height of 182? ### Answer: SELECT player FROM table_name_84 WHERE height = 182 |
What is the sum of Gold with Participants that are 4 and a Silver that is smaller than 0? | CREATE TABLE table_name_81 (gold INTEGER, participants VARCHAR, silver VARCHAR) | SELECT SUM(gold) FROM table_name_81 WHERE participants = 4 AND silver < 0 | ### Context: CREATE TABLE table_name_81 (gold INTEGER, participants VARCHAR, silver VARCHAR) ### Question: What is the sum of Gold with Participants that are 4 and a Silver that is smaller than 0? ### Answer: SELECT SUM(gold) FROM table_name_81 WHERE participants = 4 AND silver < 0 |
Who was the opponent with a score of 141–102? | CREATE TABLE table_name_97 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_97 WHERE score = "141–102" | ### Context: CREATE TABLE table_name_97 (opponent VARCHAR, score VARCHAR) ### Question: Who was the opponent with a score of 141–102? ### Answer: SELECT opponent FROM table_name_97 WHERE score = "141–102" |
Who was the opponent with a score of 109–108? | CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_7 WHERE score = "109–108" | ### Context: CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR) ### Question: Who was the opponent with a score of 109–108? ### Answer: SELECT opponent FROM table_name_7 WHERE score = "109–108" |
What was the result when the record was 62–12? | CREATE TABLE table_name_75 (result VARCHAR, record VARCHAR) | SELECT result FROM table_name_75 WHERE record = "62–12" | ### Context: CREATE TABLE table_name_75 (result VARCHAR, record VARCHAR) ### Question: What was the result when the record was 62–12? ### Answer: SELECT result FROM table_name_75 WHERE record = "62–12" |
What was the result with a record of 58–11? | CREATE TABLE table_name_49 (result VARCHAR, record VARCHAR) | SELECT result FROM table_name_49 WHERE record = "58–11" | ### Context: CREATE TABLE table_name_49 (result VARCHAR, record VARCHAR) ### Question: What was the result with a record of 58–11? ### Answer: SELECT result FROM table_name_49 WHERE record = "58–11" |
What's the number of the game played on January 2, 1936? | CREATE TABLE table_name_10 (number INTEGER, date VARCHAR) | SELECT MIN(number) FROM table_name_10 WHERE date = "january 2, 1936" | ### Context: CREATE TABLE table_name_10 (number INTEGER, date VARCHAR) ### Question: What's the number of the game played on January 2, 1936? ### Answer: SELECT MIN(number) FROM table_name_10 WHERE date = "january 2, 1936" |
What's the record of game number 23? | CREATE TABLE table_name_50 (record VARCHAR, number VARCHAR) | SELECT record FROM table_name_50 WHERE number = 23 | ### Context: CREATE TABLE table_name_50 (record VARCHAR, number VARCHAR) ### Question: What's the record of game number 23? ### Answer: SELECT record FROM table_name_50 WHERE number = 23 |
How many Points a February smaller than 1 have? | CREATE TABLE table_name_5 (points INTEGER, february INTEGER) | SELECT MIN(points) FROM table_name_5 WHERE february < 1 | ### Context: CREATE TABLE table_name_5 (points INTEGER, february INTEGER) ### Question: How many Points a February smaller than 1 have? ### Answer: SELECT MIN(points) FROM table_name_5 WHERE february < 1 |
How many February days have Points of 63 and a Score of 1–2? | CREATE TABLE table_name_40 (february VARCHAR, points VARCHAR, score VARCHAR) | SELECT COUNT(february) FROM table_name_40 WHERE points = 63 AND score = "1–2" | ### Context: CREATE TABLE table_name_40 (february VARCHAR, points VARCHAR, score VARCHAR) ### Question: How many February days have Points of 63 and a Score of 1–2? ### Answer: SELECT COUNT(february) FROM table_name_40 WHERE points = 63 AND score = "1–2" |
What is the name of the player with less than 2 wins? | CREATE TABLE table_name_24 (player VARCHAR, wins INTEGER) | SELECT player FROM table_name_24 WHERE wins < 2 | ### Context: CREATE TABLE table_name_24 (player VARCHAR, wins INTEGER) ### Question: What is the name of the player with less than 2 wins? ### Answer: SELECT player FROM table_name_24 WHERE wins < 2 |
What is the number of earning for more than 2 wins and less than 25 events? | CREATE TABLE table_name_97 (earnings___ INTEGER, wins VARCHAR, events VARCHAR) | SELECT SUM(earnings___) AS $__ FROM table_name_97 WHERE wins > 2 AND events < 25 | ### Context: CREATE TABLE table_name_97 (earnings___ INTEGER, wins VARCHAR, events VARCHAR) ### Question: What is the number of earning for more than 2 wins and less than 25 events? ### Answer: SELECT SUM(earnings___) AS $__ FROM table_name_97 WHERE wins > 2 AND events < 25 |
What is the largest events number for more than 2 wins and less than $446,893 in earnings? | CREATE TABLE table_name_65 (events INTEGER, wins VARCHAR, earnings___$__ VARCHAR) | SELECT MAX(events) FROM table_name_65 WHERE wins > 2 AND earnings___$__ < 446 OFFSET 893 | ### Context: CREATE TABLE table_name_65 (events INTEGER, wins VARCHAR, earnings___$__ VARCHAR) ### Question: What is the largest events number for more than 2 wins and less than $446,893 in earnings? ### Answer: SELECT MAX(events) FROM table_name_65 WHERE wins > 2 AND earnings___$__ < 446 OFFSET 893 |
Who was the visitor at 5:00 pm? | CREATE TABLE table_name_42 (visitor VARCHAR, time VARCHAR) | SELECT visitor FROM table_name_42 WHERE time = "5:00 pm" | ### Context: CREATE TABLE table_name_42 (visitor VARCHAR, time VARCHAR) ### Question: Who was the visitor at 5:00 pm? ### Answer: SELECT visitor FROM table_name_42 WHERE time = "5:00 pm" |
Who was the visitor at the pittsburgh penguins at 7:00 pm that had a record of 0-2-2? | CREATE TABLE table_name_14 (visitor VARCHAR, record VARCHAR, home VARCHAR, time VARCHAR) | SELECT visitor FROM table_name_14 WHERE home = "pittsburgh penguins" AND time = "7:00 pm" AND record = "0-2-2" | ### Context: CREATE TABLE table_name_14 (visitor VARCHAR, record VARCHAR, home VARCHAR, time VARCHAR) ### Question: Who was the visitor at the pittsburgh penguins at 7:00 pm that had a record of 0-2-2? ### Answer: SELECT visitor FROM table_name_14 WHERE home = "pittsburgh penguins" AND time = "7:00 pm" AND record = "0-2-2" |
What is the home in mellon arena at 7:30 pm with a record o 2-5-2? | CREATE TABLE table_name_25 (home VARCHAR, record VARCHAR, time VARCHAR, location_attendance VARCHAR) | SELECT home FROM table_name_25 WHERE time = "7:30 pm" AND location_attendance = "mellon arena" AND record = "2-5-2" | ### Context: CREATE TABLE table_name_25 (home VARCHAR, record VARCHAR, time VARCHAR, location_attendance VARCHAR) ### Question: What is the home in mellon arena at 7:30 pm with a record o 2-5-2? ### Answer: SELECT home FROM table_name_25 WHERE time = "7:30 pm" AND location_attendance = "mellon arena" AND record = "2-5-2" |
Which average Drawn has Games larger than 7? | CREATE TABLE table_name_29 (drawn INTEGER, games INTEGER) | SELECT AVG(drawn) FROM table_name_29 WHERE games > 7 | ### Context: CREATE TABLE table_name_29 (drawn INTEGER, games INTEGER) ### Question: Which average Drawn has Games larger than 7? ### Answer: SELECT AVG(drawn) FROM table_name_29 WHERE games > 7 |
Which Make has a Pos of 3? | CREATE TABLE table_name_58 (make VARCHAR, pos VARCHAR) | SELECT make FROM table_name_58 WHERE pos = 3 | ### Context: CREATE TABLE table_name_58 (make VARCHAR, pos VARCHAR) ### Question: Which Make has a Pos of 3? ### Answer: SELECT make FROM table_name_58 WHERE pos = 3 |
Which Car # has a Make of toyota, and a Driver of mike skinner, and a Pos larger than 3? | CREATE TABLE table_name_19 (car__number INTEGER, pos VARCHAR, make VARCHAR, driver VARCHAR) | SELECT MAX(car__number) FROM table_name_19 WHERE make = "toyota" AND driver = "mike skinner" AND pos > 3 | ### Context: CREATE TABLE table_name_19 (car__number INTEGER, pos VARCHAR, make VARCHAR, driver VARCHAR) ### Question: Which Car # has a Make of toyota, and a Driver of mike skinner, and a Pos larger than 3? ### Answer: SELECT MAX(car__number) FROM table_name_19 WHERE make = "toyota" AND driver = "mike skinner" AND pos > 3 |
Which Make has a Car # larger than 59? | CREATE TABLE table_name_48 (make VARCHAR, car__number INTEGER) | SELECT make FROM table_name_48 WHERE car__number > 59 | ### Context: CREATE TABLE table_name_48 (make VARCHAR, car__number INTEGER) ### Question: Which Make has a Car # larger than 59? ### Answer: SELECT make FROM table_name_48 WHERE car__number > 59 |
What was the result of the Euro '64 qualifying game? | CREATE TABLE table_name_65 (results¹ VARCHAR, type_of_game VARCHAR) | SELECT results¹ FROM table_name_65 WHERE type_of_game = "euro '64 qualifying" | ### Context: CREATE TABLE table_name_65 (results¹ VARCHAR, type_of_game VARCHAR) ### Question: What was the result of the Euro '64 qualifying game? ### Answer: SELECT results¹ FROM table_name_65 WHERE type_of_game = "euro '64 qualifying" |
What is the date of the Euro '64 qualifying game? | CREATE TABLE table_name_64 (date VARCHAR, type_of_game VARCHAR) | SELECT date FROM table_name_64 WHERE type_of_game = "euro '64 qualifying" | ### Context: CREATE TABLE table_name_64 (date VARCHAR, type_of_game VARCHAR) ### Question: What is the date of the Euro '64 qualifying game? ### Answer: SELECT date FROM table_name_64 WHERE type_of_game = "euro '64 qualifying" |
What was the title in 1996? | CREATE TABLE table_name_26 (title VARCHAR, year VARCHAR) | SELECT title FROM table_name_26 WHERE year = "1996" | ### Context: CREATE TABLE table_name_26 (title VARCHAR, year VARCHAR) ### Question: What was the title in 1996? ### Answer: SELECT title FROM table_name_26 WHERE year = "1996" |
What was the role in 2001? | CREATE TABLE table_name_91 (role VARCHAR, year VARCHAR) | SELECT role FROM table_name_91 WHERE year = "2001" | ### Context: CREATE TABLE table_name_91 (role VARCHAR, year VARCHAR) ### Question: What was the role in 2001? ### Answer: SELECT role FROM table_name_91 WHERE year = "2001" |
What language was Taken in? | CREATE TABLE table_name_68 (language VARCHAR, title VARCHAR) | SELECT language FROM table_name_68 WHERE title = "taken" | ### Context: CREATE TABLE table_name_68 (language VARCHAR, title VARCHAR) ### Question: What language was Taken in? ### Answer: SELECT language FROM table_name_68 WHERE title = "taken" |
Which title had Notes of 8 episodes? | CREATE TABLE table_name_90 (title VARCHAR, notes VARCHAR) | SELECT title FROM table_name_90 WHERE notes = "8 episodes" | ### Context: CREATE TABLE table_name_90 (title VARCHAR, notes VARCHAR) ### Question: Which title had Notes of 8 episodes? ### Answer: SELECT title FROM table_name_90 WHERE notes = "8 episodes" |
Which title is in Portuguese? | CREATE TABLE table_name_28 (title VARCHAR, language VARCHAR) | SELECT title FROM table_name_28 WHERE language = "portuguese" | ### Context: CREATE TABLE table_name_28 (title VARCHAR, language VARCHAR) ### Question: Which title is in Portuguese? ### Answer: SELECT title FROM table_name_28 WHERE language = "portuguese" |
What was the role in 1996? | CREATE TABLE table_name_80 (role VARCHAR, year VARCHAR) | SELECT role FROM table_name_80 WHERE year = "1996" | ### Context: CREATE TABLE table_name_80 (role VARCHAR, year VARCHAR) ### Question: What was the role in 1996? ### Answer: SELECT role FROM table_name_80 WHERE year = "1996" |
what date did the irwin storm take place | CREATE TABLE table_name_78 (dates_active VARCHAR, storm_name VARCHAR) | SELECT dates_active FROM table_name_78 WHERE storm_name = "irwin" | ### Context: CREATE TABLE table_name_78 (dates_active VARCHAR, storm_name VARCHAR) ### Question: what date did the irwin storm take place ### Answer: SELECT dates_active FROM table_name_78 WHERE storm_name = "irwin" |
what is the minimum force of storm Adrian | CREATE TABLE table_name_15 (min_press___mbar__ VARCHAR, storm_name VARCHAR) | SELECT min_press___mbar__ FROM table_name_15 WHERE storm_name = "adrian" | ### Context: CREATE TABLE table_name_15 (min_press___mbar__ VARCHAR, storm_name VARCHAR) ### Question: what is the minimum force of storm Adrian ### Answer: SELECT min_press___mbar__ FROM table_name_15 WHERE storm_name = "adrian" |
How many households are in highlands county? | CREATE TABLE table_name_70 (number_of_households INTEGER, county VARCHAR) | SELECT AVG(number_of_households) FROM table_name_70 WHERE county = "highlands" | ### Context: CREATE TABLE table_name_70 (number_of_households INTEGER, county VARCHAR) ### Question: How many households are in highlands county? ### Answer: SELECT AVG(number_of_households) FROM table_name_70 WHERE county = "highlands" |
What is the Median household income associated with a median family income of $46,616? | CREATE TABLE table_name_56 (median_household_income VARCHAR, median_family_income VARCHAR) | SELECT median_household_income FROM table_name_56 WHERE median_family_income = "$46,616" | ### Context: CREATE TABLE table_name_56 (median_household_income VARCHAR, median_family_income VARCHAR) ### Question: What is the Median household income associated with a median family income of $46,616? ### Answer: SELECT median_household_income FROM table_name_56 WHERE median_family_income = "$46,616" |
What time did the game at memorial stadium take place? | CREATE TABLE table_name_49 (time___et__ VARCHAR, location VARCHAR) | SELECT time___et__ FROM table_name_49 WHERE location = "memorial stadium" | ### Context: CREATE TABLE table_name_49 (time___et__ VARCHAR, location VARCHAR) ### Question: What time did the game at memorial stadium take place? ### Answer: SELECT time___et__ FROM table_name_49 WHERE location = "memorial stadium" |
What is the number of Bronze medals of the Nation with 64 total and silver greater than 16? | CREATE TABLE table_name_88 (bronze VARCHAR, total VARCHAR, silver VARCHAR) | SELECT COUNT(bronze) FROM table_name_88 WHERE total = 64 AND silver > 16 | ### Context: CREATE TABLE table_name_88 (bronze VARCHAR, total VARCHAR, silver VARCHAR) ### Question: What is the number of Bronze medals of the Nation with 64 total and silver greater than 16? ### Answer: SELECT COUNT(bronze) FROM table_name_88 WHERE total = 64 AND silver > 16 |
What is the bronze for Kyrgyzstan nation with a silver record of greater than 0? | CREATE TABLE table_name_8 (bronze INTEGER, nation VARCHAR, silver VARCHAR) | SELECT AVG(bronze) FROM table_name_8 WHERE nation = "kyrgyzstan" AND silver > 0 | ### Context: CREATE TABLE table_name_8 (bronze INTEGER, nation VARCHAR, silver VARCHAR) ### Question: What is the bronze for Kyrgyzstan nation with a silver record of greater than 0? ### Answer: SELECT AVG(bronze) FROM table_name_8 WHERE nation = "kyrgyzstan" AND silver > 0 |
What is the gold for the nation with a record of bronze 1, Syria nation with a grand total less than 1? | CREATE TABLE table_name_25 (gold INTEGER, total VARCHAR, bronze VARCHAR, nation VARCHAR) | SELECT AVG(gold) FROM table_name_25 WHERE bronze = 1 AND nation = "syria" AND total < 1 | ### Context: CREATE TABLE table_name_25 (gold INTEGER, total VARCHAR, bronze VARCHAR, nation VARCHAR) ### Question: What is the gold for the nation with a record of bronze 1, Syria nation with a grand total less than 1? ### Answer: SELECT AVG(gold) FROM table_name_25 WHERE bronze = 1 AND nation = "syria" AND total < 1 |
When was the game with a result of w 27-24 (ot)? | CREATE TABLE table_name_26 (date VARCHAR, result VARCHAR) | SELECT date FROM table_name_26 WHERE result = "w 27-24 (ot)" | ### Context: CREATE TABLE table_name_26 (date VARCHAR, result VARCHAR) ### Question: When was the game with a result of w 27-24 (ot)? ### Answer: SELECT date FROM table_name_26 WHERE result = "w 27-24 (ot)" |
When was the game with a record of 9-3? | CREATE TABLE table_name_65 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_65 WHERE record = "9-3" | ### Context: CREATE TABLE table_name_65 (date VARCHAR, record VARCHAR) ### Question: When was the game with a record of 9-3? ### Answer: SELECT date FROM table_name_65 WHERE record = "9-3" |
What time was the game with a record of 7-3? | CREATE TABLE table_name_96 (game_time VARCHAR, record VARCHAR) | SELECT game_time FROM table_name_96 WHERE record = "7-3" | ### Context: CREATE TABLE table_name_96 (game_time VARCHAR, record VARCHAR) ### Question: What time was the game with a record of 7-3? ### Answer: SELECT game_time FROM table_name_96 WHERE record = "7-3" |
What is the number of weeks where the venue was memorial stadium and the attendance was less than 41,252? | CREATE TABLE table_name_36 (week VARCHAR, venue VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_36 WHERE venue = "memorial stadium" AND attendance < 41 OFFSET 252 | ### Context: CREATE TABLE table_name_36 (week VARCHAR, venue VARCHAR, attendance VARCHAR) ### Question: What is the number of weeks where the venue was memorial stadium and the attendance was less than 41,252? ### Answer: SELECT COUNT(week) FROM table_name_36 WHERE venue = "memorial stadium" AND attendance < 41 OFFSET 252 |
What is the sum of the weeks that games occured on october 21, 1974 and less than 50,623 fans attended? | CREATE TABLE table_name_20 (week INTEGER, date VARCHAR, attendance VARCHAR) | SELECT SUM(week) FROM table_name_20 WHERE date = "october 21, 1974" AND attendance < 50 OFFSET 623 | ### Context: CREATE TABLE table_name_20 (week INTEGER, date VARCHAR, attendance VARCHAR) ### Question: What is the sum of the weeks that games occured on october 21, 1974 and less than 50,623 fans attended? ### Answer: SELECT SUM(week) FROM table_name_20 WHERE date = "october 21, 1974" AND attendance < 50 OFFSET 623 |
What is the frequency of the station that was launched on 21 August 1994? | CREATE TABLE table_name_97 (frequency VARCHAR, launched VARCHAR) | SELECT frequency FROM table_name_97 WHERE launched = "21 august 1994" | ### Context: CREATE TABLE table_name_97 (frequency VARCHAR, launched VARCHAR) ### Question: What is the frequency of the station that was launched on 21 August 1994? ### Answer: SELECT frequency FROM table_name_97 WHERE launched = "21 august 1994" |
What is the launched date of the station in cora huichol tepehuano nahuatl language? | CREATE TABLE table_name_1 (launched VARCHAR, languages VARCHAR) | SELECT launched FROM table_name_1 WHERE languages = "cora huichol tepehuano nahuatl" | ### Context: CREATE TABLE table_name_1 (launched VARCHAR, languages VARCHAR) ### Question: What is the launched date of the station in cora huichol tepehuano nahuatl language? ### Answer: SELECT launched FROM table_name_1 WHERE languages = "cora huichol tepehuano nahuatl" |
Where is the station with a coverage of yucatán quintana roo campeche transmitting from? | CREATE TABLE table_name_15 (transmitting_from VARCHAR, coverage VARCHAR) | SELECT transmitting_from FROM table_name_15 WHERE coverage = "yucatán quintana roo campeche" | ### Context: CREATE TABLE table_name_15 (transmitting_from VARCHAR, coverage VARCHAR) ### Question: Where is the station with a coverage of yucatán quintana roo campeche transmitting from? ### Answer: SELECT transmitting_from FROM table_name_15 WHERE coverage = "yucatán quintana roo campeche" |
What is the frequency of the station with a coverage of oaxaca guerrero puebla? | CREATE TABLE table_name_24 (frequency VARCHAR, coverage VARCHAR) | SELECT frequency FROM table_name_24 WHERE coverage = "oaxaca guerrero puebla" | ### Context: CREATE TABLE table_name_24 (frequency VARCHAR, coverage VARCHAR) ### Question: What is the frequency of the station with a coverage of oaxaca guerrero puebla? ### Answer: SELECT frequency FROM table_name_24 WHERE coverage = "oaxaca guerrero puebla" |
Where is the station that was launched on 17 July 1997 transmitting from? | CREATE TABLE table_name_18 (transmitting_from VARCHAR, launched VARCHAR) | SELECT transmitting_from FROM table_name_18 WHERE launched = "17 july 1997" | ### Context: CREATE TABLE table_name_18 (transmitting_from VARCHAR, launched VARCHAR) ### Question: Where is the station that was launched on 17 July 1997 transmitting from? ### Answer: SELECT transmitting_from FROM table_name_18 WHERE launched = "17 july 1997" |
What is the coverage of the station that was launched on 22 January 1996? | CREATE TABLE table_name_83 (coverage VARCHAR, launched VARCHAR) | SELECT coverage FROM table_name_83 WHERE launched = "22 january 1996" | ### Context: CREATE TABLE table_name_83 (coverage VARCHAR, launched VARCHAR) ### Question: What is the coverage of the station that was launched on 22 January 1996? ### Answer: SELECT coverage FROM table_name_83 WHERE launched = "22 january 1996" |
How many bronzes for the nation ranked 14th, with over 14 golds and over 25 silvers? | CREATE TABLE table_name_79 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, rank VARCHAR) | SELECT COUNT(bronze) FROM table_name_79 WHERE gold > "14" AND rank = "14" AND silver > 25 | ### Context: CREATE TABLE table_name_79 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, rank VARCHAR) ### Question: How many bronzes for the nation ranked 14th, with over 14 golds and over 25 silvers? ### Answer: SELECT COUNT(bronze) FROM table_name_79 WHERE gold > "14" AND rank = "14" AND silver > 25 |
How many total medals for germany with under 56 bronzes? | CREATE TABLE table_name_46 (total INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT SUM(total) FROM table_name_46 WHERE nation = "germany" AND bronze < 56 | ### Context: CREATE TABLE table_name_46 (total INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: How many total medals for germany with under 56 bronzes? ### Answer: SELECT SUM(total) FROM table_name_46 WHERE nation = "germany" AND bronze < 56 |
How many total medals for the nation with 1 gold and 6 bronzes? | CREATE TABLE table_name_52 (total VARCHAR, gold VARCHAR, bronze VARCHAR) | SELECT COUNT(total) FROM table_name_52 WHERE gold = 1 AND bronze = 6 | ### Context: CREATE TABLE table_name_52 (total VARCHAR, gold VARCHAR, bronze VARCHAR) ### Question: How many total medals for the nation with 1 gold and 6 bronzes? ### Answer: SELECT COUNT(total) FROM table_name_52 WHERE gold = 1 AND bronze = 6 |
What was the loss of the game when the record was 32–34? | CREATE TABLE table_name_52 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_52 WHERE record = "32–34" | ### Context: CREATE TABLE table_name_52 (loss VARCHAR, record VARCHAR) ### Question: What was the loss of the game when the record was 32–34? ### Answer: SELECT loss FROM table_name_52 WHERE record = "32–34" |
What was the date of the game with a score of 15–6? | CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_15 WHERE score = "15–6" | ### Context: CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR) ### Question: What was the date of the game with a score of 15–6? ### Answer: SELECT date FROM table_name_15 WHERE score = "15–6" |
what is the frequency of visits to elmanana.com.mx | CREATE TABLE table_name_65 (frequency VARCHAR, website VARCHAR) | SELECT frequency FROM table_name_65 WHERE website = "elmanana.com.mx" | ### Context: CREATE TABLE table_name_65 (frequency VARCHAR, website VARCHAR) ### Question: what is the frequency of visits to elmanana.com.mx ### Answer: SELECT frequency FROM table_name_65 WHERE website = "elmanana.com.mx" |
What was the game result against the minnesota vikings? | CREATE TABLE table_name_3 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_3 WHERE opponent = "minnesota vikings" | ### Context: CREATE TABLE table_name_3 (result VARCHAR, opponent VARCHAR) ### Question: What was the game result against the minnesota vikings? ### Answer: SELECT result FROM table_name_3 WHERE opponent = "minnesota vikings" |
What week shows for december 31, 1993? | CREATE TABLE table_name_25 (week VARCHAR, date VARCHAR) | SELECT COUNT(week) FROM table_name_25 WHERE date = "december 31, 1993" | ### Context: CREATE TABLE table_name_25 (week VARCHAR, date VARCHAR) ### Question: What week shows for december 31, 1993? ### Answer: SELECT COUNT(week) FROM table_name_25 WHERE date = "december 31, 1993" |
What was the result on October 4, 1993? | CREATE TABLE table_name_48 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_48 WHERE date = "october 4, 1993" | ### Context: CREATE TABLE table_name_48 (result VARCHAR, date VARCHAR) ### Question: What was the result on October 4, 1993? ### Answer: SELECT result FROM table_name_48 WHERE date = "october 4, 1993" |
What Week has a Result of l 17-14? | CREATE TABLE table_name_52 (week INTEGER, result VARCHAR) | SELECT SUM(week) FROM table_name_52 WHERE result = "l 17-14" | ### Context: CREATE TABLE table_name_52 (week INTEGER, result VARCHAR) ### Question: What Week has a Result of l 17-14? ### Answer: SELECT SUM(week) FROM table_name_52 WHERE result = "l 17-14" |
How many years have a position of 2nd? | CREATE TABLE table_name_86 (year VARCHAR, position VARCHAR) | SELECT COUNT(year) FROM table_name_86 WHERE position = "2nd" | ### Context: CREATE TABLE table_name_86 (year VARCHAR, position VARCHAR) ### Question: How many years have a position of 2nd? ### Answer: SELECT COUNT(year) FROM table_name_86 WHERE position = "2nd" |
Which event has a year of 2000? | CREATE TABLE table_name_72 (event VARCHAR, year VARCHAR) | SELECT event FROM table_name_72 WHERE year = 2000 | ### Context: CREATE TABLE table_name_72 (event VARCHAR, year VARCHAR) ### Question: Which event has a year of 2000? ### Answer: SELECT event FROM table_name_72 WHERE year = 2000 |
What position has notes of 2:12:53? | CREATE TABLE table_name_7 (position VARCHAR, notes VARCHAR) | SELECT position FROM table_name_7 WHERE notes = "2:12:53" | ### Context: CREATE TABLE table_name_7 (position VARCHAR, notes VARCHAR) ### Question: What position has notes of 2:12:53? ### Answer: SELECT position FROM table_name_7 WHERE notes = "2:12:53" |
What is the average round for draft pick #49 from Notre Dame? | CREATE TABLE table_name_90 (round INTEGER, college VARCHAR, pick__number VARCHAR) | SELECT AVG(round) FROM table_name_90 WHERE college = "notre dame" AND pick__number = "49" | ### Context: CREATE TABLE table_name_90 (round INTEGER, college VARCHAR, pick__number VARCHAR) ### Question: What is the average round for draft pick #49 from Notre Dame? ### Answer: SELECT AVG(round) FROM table_name_90 WHERE college = "notre dame" AND pick__number = "49" |
What college is draft pick #327 from? | CREATE TABLE table_name_80 (college VARCHAR, pick__number VARCHAR) | SELECT college FROM table_name_80 WHERE pick__number = "327" | ### Context: CREATE TABLE table_name_80 (college VARCHAR, pick__number VARCHAR) ### Question: What college is draft pick #327 from? ### Answer: SELECT college FROM table_name_80 WHERE pick__number = "327" |
What college is pick number 268 from? | CREATE TABLE table_name_44 (college VARCHAR, pick__number VARCHAR) | SELECT college FROM table_name_44 WHERE pick__number = "268" | ### Context: CREATE TABLE table_name_44 (college VARCHAR, pick__number VARCHAR) ### Question: What college is pick number 268 from? ### Answer: SELECT college FROM table_name_44 WHERE pick__number = "268" |
What round pick was pick number 101 who plays defensive back? | CREATE TABLE table_name_92 (round VARCHAR, position VARCHAR, pick__number VARCHAR) | SELECT round FROM table_name_92 WHERE position = "defensive back" AND pick__number = "101" | ### Context: CREATE TABLE table_name_92 (round VARCHAR, position VARCHAR, pick__number VARCHAR) ### Question: What round pick was pick number 101 who plays defensive back? ### Answer: SELECT round FROM table_name_92 WHERE position = "defensive back" AND pick__number = "101" |
What pick number was from the college of maryland and was picked in a round larger than 7? | CREATE TABLE table_name_65 (pick__number VARCHAR, round VARCHAR, college VARCHAR) | SELECT pick__number FROM table_name_65 WHERE round > 7 AND college = "maryland" | ### Context: CREATE TABLE table_name_65 (pick__number VARCHAR, round VARCHAR, college VARCHAR) ### Question: What pick number was from the college of maryland and was picked in a round larger than 7? ### Answer: SELECT pick__number FROM table_name_65 WHERE round > 7 AND college = "maryland" |
How much Overall has a Pick # of 26? | CREATE TABLE table_name_25 (overall INTEGER, pick__number VARCHAR) | SELECT SUM(overall) FROM table_name_25 WHERE pick__number = 26 | ### Context: CREATE TABLE table_name_25 (overall INTEGER, pick__number VARCHAR) ### Question: How much Overall has a Pick # of 26? ### Answer: SELECT SUM(overall) FROM table_name_25 WHERE pick__number = 26 |
Which Position has a Round smaller than 14, and a College of illinois? | CREATE TABLE table_name_88 (position VARCHAR, round VARCHAR, college VARCHAR) | SELECT position FROM table_name_88 WHERE round < 14 AND college = "illinois" | ### Context: CREATE TABLE table_name_88 (position VARCHAR, round VARCHAR, college VARCHAR) ### Question: Which Position has a Round smaller than 14, and a College of illinois? ### Answer: SELECT position FROM table_name_88 WHERE round < 14 AND college = "illinois" |
How much Overall has a Round smaller than 6, and a Pick # of 26? | CREATE TABLE table_name_68 (overall INTEGER, round VARCHAR, pick__number VARCHAR) | SELECT SUM(overall) FROM table_name_68 WHERE round < 6 AND pick__number = 26 | ### Context: CREATE TABLE table_name_68 (overall INTEGER, round VARCHAR, pick__number VARCHAR) ### Question: How much Overall has a Round smaller than 6, and a Pick # of 26? ### Answer: SELECT SUM(overall) FROM table_name_68 WHERE round < 6 AND pick__number = 26 |
What is Roy Hall's highest round? | CREATE TABLE table_name_67 (round INTEGER, name VARCHAR) | SELECT MAX(round) FROM table_name_67 WHERE name = "roy hall" | ### Context: CREATE TABLE table_name_67 (round INTEGER, name VARCHAR) ### Question: What is Roy Hall's highest round? ### Answer: SELECT MAX(round) FROM table_name_67 WHERE name = "roy hall" |
How much Overall has a Pick # larger than 2, and a Name of claude humphrey? | CREATE TABLE table_name_93 (overall VARCHAR, pick__number VARCHAR, name VARCHAR) | SELECT COUNT(overall) FROM table_name_93 WHERE pick__number > 2 AND name = "claude humphrey" | ### Context: CREATE TABLE table_name_93 (overall VARCHAR, pick__number VARCHAR, name VARCHAR) ### Question: How much Overall has a Pick # larger than 2, and a Name of claude humphrey? ### Answer: SELECT COUNT(overall) FROM table_name_93 WHERE pick__number > 2 AND name = "claude humphrey" |
What is the oppenent when the score was 5–0? | CREATE TABLE table_name_70 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_70 WHERE score = "5–0" | ### Context: CREATE TABLE table_name_70 (opponent VARCHAR, score VARCHAR) ### Question: What is the oppenent when the score was 5–0? ### Answer: SELECT opponent FROM table_name_70 WHERE score = "5–0" |
What is the opponent before game 57 when the score was 4–5? | CREATE TABLE table_name_61 (opponent VARCHAR, game VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_61 WHERE game < 57 AND score = "4–5" | ### Context: CREATE TABLE table_name_61 (opponent VARCHAR, game VARCHAR, score VARCHAR) ### Question: What is the opponent before game 57 when the score was 4–5? ### Answer: SELECT opponent FROM table_name_61 WHERE game < 57 AND score = "4–5" |
What is the score when the points are larger than 74 and the game is 57? | CREATE TABLE table_name_7 (score VARCHAR, points VARCHAR, game VARCHAR) | SELECT score FROM table_name_7 WHERE points > 74 AND game = 57 | ### Context: CREATE TABLE table_name_7 (score VARCHAR, points VARCHAR, game VARCHAR) ### Question: What is the score when the points are larger than 74 and the game is 57? ### Answer: SELECT score FROM table_name_7 WHERE points > 74 AND game = 57 |
When is the latest year that an entrant has toro rosso str1 chassis and under 1 point? | CREATE TABLE table_name_4 (year INTEGER, chassis VARCHAR, points VARCHAR) | SELECT MAX(year) FROM table_name_4 WHERE chassis = "toro rosso str1" AND points < 1 | ### Context: CREATE TABLE table_name_4 (year INTEGER, chassis VARCHAR, points VARCHAR) ### Question: When is the latest year that an entrant has toro rosso str1 chassis and under 1 point? ### Answer: SELECT MAX(year) FROM table_name_4 WHERE chassis = "toro rosso str1" AND points < 1 |
How many entrants have a mercedes fo 108w 2.4l v8 engine and over 0 points? | CREATE TABLE table_name_4 (year VARCHAR, engine VARCHAR, points VARCHAR) | SELECT COUNT(year) FROM table_name_4 WHERE engine = "mercedes fo 108w 2.4l v8" AND points > 0 | ### Context: CREATE TABLE table_name_4 (year VARCHAR, engine VARCHAR, points VARCHAR) ### Question: How many entrants have a mercedes fo 108w 2.4l v8 engine and over 0 points? ### Answer: SELECT COUNT(year) FROM table_name_4 WHERE engine = "mercedes fo 108w 2.4l v8" AND points > 0 |
What is the engine for the car with 3 points? | CREATE TABLE table_name_6 (engine VARCHAR, points VARCHAR) | SELECT engine FROM table_name_6 WHERE points = 3 | ### Context: CREATE TABLE table_name_6 (engine VARCHAR, points VARCHAR) ### Question: What is the engine for the car with 3 points? ### Answer: SELECT engine FROM table_name_6 WHERE points = 3 |
Which International tourism expenditure (2012) has an International tourism expenditure (2011) of $33.3 billion? | CREATE TABLE table_name_65 (international_tourism_expenditure__2012_ VARCHAR, international_tourism_expenditure__2011_ VARCHAR) | SELECT international_tourism_expenditure__2012_ FROM table_name_65 WHERE international_tourism_expenditure__2011_ = "$33.3 billion" | ### Context: CREATE TABLE table_name_65 (international_tourism_expenditure__2012_ VARCHAR, international_tourism_expenditure__2011_ VARCHAR) ### Question: Which International tourism expenditure (2012) has an International tourism expenditure (2011) of $33.3 billion? ### Answer: SELECT international_tourism_expenditure__2012_ FROM table_name_65 WHERE international_tourism_expenditure__2011_ = "$33.3 billion" |
What is Italy's UNWTO region? | CREATE TABLE table_name_24 (unwto_region VARCHAR, country VARCHAR) | SELECT unwto_region FROM table_name_24 WHERE country = "italy" | ### Context: CREATE TABLE table_name_24 (unwto_region VARCHAR, country VARCHAR) ### Question: What is Italy's UNWTO region? ### Answer: SELECT unwto_region FROM table_name_24 WHERE country = "italy" |
What is China's International tourism expenditure (2011)? | CREATE TABLE table_name_4 (international_tourism_expenditure__2011_ VARCHAR, country VARCHAR) | SELECT international_tourism_expenditure__2011_ FROM table_name_4 WHERE country = "china" | ### Context: CREATE TABLE table_name_4 (international_tourism_expenditure__2011_ VARCHAR, country VARCHAR) ### Question: What is China's International tourism expenditure (2011)? ### Answer: SELECT international_tourism_expenditure__2011_ FROM table_name_4 WHERE country = "china" |
What was the format for the 4 disc season that had less than 22 episodes and n/a for region 4? | CREATE TABLE table_name_86 (format VARCHAR, region_4 VARCHAR, _number_episodes VARCHAR, _number_disc_s_ VARCHAR) | SELECT format FROM table_name_86 WHERE _number_episodes < 22 AND _number_disc_s_ = 4 AND region_4 = "n/a" | ### Context: CREATE TABLE table_name_86 (format VARCHAR, region_4 VARCHAR, _number_episodes VARCHAR, _number_disc_s_ VARCHAR) ### Question: What was the format for the 4 disc season that had less than 22 episodes and n/a for region 4? ### Answer: SELECT format FROM table_name_86 WHERE _number_episodes < 22 AND _number_disc_s_ = 4 AND region_4 = "n/a" |
What is the lowest Top-25 for the open championship, with a Top-10 larger than 3? | CREATE TABLE table_name_55 (top_25 INTEGER, tournament VARCHAR, top_10 VARCHAR) | SELECT MIN(top_25) FROM table_name_55 WHERE tournament = "the open championship" AND top_10 > 3 | ### Context: CREATE TABLE table_name_55 (top_25 INTEGER, tournament VARCHAR, top_10 VARCHAR) ### Question: What is the lowest Top-25 for the open championship, with a Top-10 larger than 3? ### Answer: SELECT MIN(top_25) FROM table_name_55 WHERE tournament = "the open championship" AND top_10 > 3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.