question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What Album has a Year that's larger than 2001? | CREATE TABLE table_name_39 (album VARCHAR, year INTEGER) | SELECT album FROM table_name_39 WHERE year > 2001 | ### Context: CREATE TABLE table_name_39 (album VARCHAR, year INTEGER) ### Question: What Album has a Year that's larger than 2001? ### Answer: SELECT album FROM table_name_39 WHERE year > 2001 |
What is the lowest position for bruce taylor? | CREATE TABLE table_name_6 (position INTEGER, pilot VARCHAR) | SELECT MIN(position) FROM table_name_6 WHERE pilot = "bruce taylor" | ### Context: CREATE TABLE table_name_6 (position INTEGER, pilot VARCHAR) ### Question: What is the lowest position for bruce taylor? ### Answer: SELECT MIN(position) FROM table_name_6 WHERE pilot = "bruce taylor" |
Which pilot has a position above 5 and a speed of 118.8km/h? | CREATE TABLE table_name_98 (pilot VARCHAR, position VARCHAR, speed VARCHAR) | SELECT pilot FROM table_name_98 WHERE position > 5 AND speed = "118.8km/h" | ### Context: CREATE TABLE table_name_98 (pilot VARCHAR, position VARCHAR, speed VARCHAR) ### Question: Which pilot has a position above 5 and a speed of 118.8km/h? ### Answer: SELECT pilot FROM table_name_98 WHERE position > 5 AND speed = "118.8km/h" |
What is Erwin Sommer's average position? | CREATE TABLE table_name_18 (position INTEGER, pilot VARCHAR) | SELECT AVG(position) FROM table_name_18 WHERE pilot = "erwin sommer" | ### Context: CREATE TABLE table_name_18 (position INTEGER, pilot VARCHAR) ### Question: What is Erwin Sommer's average position? ### Answer: SELECT AVG(position) FROM table_name_18 WHERE pilot = "erwin sommer" |
What is the highest rank of the day with a gross of $38,916 and more than 6 screens? | CREATE TABLE table_name_27 (rank INTEGER, gross VARCHAR, screens VARCHAR) | SELECT MAX(rank) FROM table_name_27 WHERE gross = "$38,916" AND screens > 6 | ### Context: CREATE TABLE table_name_27 (rank INTEGER, gross VARCHAR, screens VARCHAR) ### Question: What is the highest rank of the day with a gross of $38,916 and more than 6 screens? ### Answer: SELECT MAX(rank) FROM table_name_27 WHERE gross = "$38,916" AND screens > 6 |
What is the gross in the United Kingdom? | CREATE TABLE table_name_33 (gross VARCHAR, territory VARCHAR) | SELECT gross FROM table_name_33 WHERE territory = "united kingdom" | ### Context: CREATE TABLE table_name_33 (gross VARCHAR, territory VARCHAR) ### Question: What is the gross in the United Kingdom? ### Answer: SELECT gross FROM table_name_33 WHERE territory = "united kingdom" |
What is the territory with 17 screens? | CREATE TABLE table_name_91 (territory VARCHAR, screens VARCHAR) | SELECT territory FROM table_name_91 WHERE screens = 17 | ### Context: CREATE TABLE table_name_91 (territory VARCHAR, screens VARCHAR) ### Question: What is the territory with 17 screens? ### Answer: SELECT territory FROM table_name_91 WHERE screens = 17 |
What is the lowest number of Golds that has Participants smaller than 14, and Rank of 1, and Total larger than 1? | CREATE TABLE table_name_1 (gold INTEGER, total VARCHAR, participants VARCHAR, rank VARCHAR) | SELECT MIN(gold) FROM table_name_1 WHERE participants < 14 AND rank = 1 AND total > 1 | ### Context: CREATE TABLE table_name_1 (gold INTEGER, total VARCHAR, participants VARCHAR, rank VARCHAR) ### Question: What is the lowest number of Golds that has Participants smaller than 14, and Rank of 1, and Total larger than 1? ### Answer: SELECT MIN(gold) FROM table_name_1 WHERE participants < 14 AND rank = 1 AND total > 1 |
On what date was the record 39–54? | CREATE TABLE table_name_69 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_69 WHERE record = "39–54" | ### Context: CREATE TABLE table_name_69 (date VARCHAR, record VARCHAR) ### Question: On what date was the record 39–54? ### Answer: SELECT date FROM table_name_69 WHERE record = "39–54" |
What was the record on July 1? | CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_58 WHERE date = "july 1" | ### Context: CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR) ### Question: What was the record on July 1? ### Answer: SELECT record FROM table_name_58 WHERE date = "july 1" |
How many total matches with less than 1 win and a position higher than 8? | CREATE TABLE table_name_13 (matches INTEGER, wins VARCHAR, pos VARCHAR) | SELECT SUM(matches) FROM table_name_13 WHERE wins < 1 AND pos > 8 | ### Context: CREATE TABLE table_name_13 (matches INTEGER, wins VARCHAR, pos VARCHAR) ### Question: How many total matches with less than 1 win and a position higher than 8? ### Answer: SELECT SUM(matches) FROM table_name_13 WHERE wins < 1 AND pos > 8 |
Which Liberal leader has Seats won smaller than 100, and Seats in House of 215, and a % of popular vote of 43.1%? | CREATE TABLE table_name_86 (liberal_leader VARCHAR, _percentage_of_popular_vote VARCHAR, seats_won VARCHAR, seats_in_house VARCHAR) | SELECT liberal_leader FROM table_name_86 WHERE seats_won < 100 AND seats_in_house = 215 AND _percentage_of_popular_vote = "43.1%" | ### Context: CREATE TABLE table_name_86 (liberal_leader VARCHAR, _percentage_of_popular_vote VARCHAR, seats_won VARCHAR, seats_in_house VARCHAR) ### Question: Which Liberal leader has Seats won smaller than 100, and Seats in House of 215, and a % of popular vote of 43.1%? ### Answer: SELECT liberal_leader FROM table_name_86 WHERE seats_won < 100 AND seats_in_house = 215 AND _percentage_of_popular_vote = "43.1%" |
Which Popular vote has a Liberal leader of king, and Seats won larger than 116, and a Year of 1921? | CREATE TABLE table_name_32 (popular_vote INTEGER, year VARCHAR, liberal_leader VARCHAR, seats_won VARCHAR) | SELECT AVG(popular_vote) FROM table_name_32 WHERE liberal_leader = "king" AND seats_won > 116 AND year = "1921" | ### Context: CREATE TABLE table_name_32 (popular_vote INTEGER, year VARCHAR, liberal_leader VARCHAR, seats_won VARCHAR) ### Question: Which Popular vote has a Liberal leader of king, and Seats won larger than 116, and a Year of 1921? ### Answer: SELECT AVG(popular_vote) FROM table_name_32 WHERE liberal_leader = "king" AND seats_won > 116 AND year = "1921" |
How many Liberal candidates have a Liberal leader of pearson, and a % of popular vote of 40.2%, and Seats won smaller than 131? | CREATE TABLE table_name_94 (liberal_candidates VARCHAR, seats_won VARCHAR, liberal_leader VARCHAR, _percentage_of_popular_vote VARCHAR) | SELECT COUNT(liberal_candidates) FROM table_name_94 WHERE liberal_leader = "pearson" AND _percentage_of_popular_vote = "40.2%" AND seats_won < 131 | ### Context: CREATE TABLE table_name_94 (liberal_candidates VARCHAR, seats_won VARCHAR, liberal_leader VARCHAR, _percentage_of_popular_vote VARCHAR) ### Question: How many Liberal candidates have a Liberal leader of pearson, and a % of popular vote of 40.2%, and Seats won smaller than 131? ### Answer: SELECT COUNT(liberal_candidates) FROM table_name_94 WHERE liberal_leader = "pearson" AND _percentage_of_popular_vote = "40.2%" AND seats_won < 131 |
What is the score during the 2006-2007 year? | CREATE TABLE table_name_81 (score VARCHAR, year VARCHAR) | SELECT score FROM table_name_81 WHERE year = "2006-2007" | ### Context: CREATE TABLE table_name_81 (score VARCHAR, year VARCHAR) ### Question: What is the score during the 2006-2007 year? ### Answer: SELECT score FROM table_name_81 WHERE year = "2006-2007" |
Who were the winners in 2010-2011? | CREATE TABLE table_name_4 (winners VARCHAR, year VARCHAR) | SELECT winners FROM table_name_4 WHERE year = "2010-2011" | ### Context: CREATE TABLE table_name_4 (winners VARCHAR, year VARCHAR) ### Question: Who were the winners in 2010-2011? ### Answer: SELECT winners FROM table_name_4 WHERE year = "2010-2011" |
What is the score of the match with UTC as the runner-up and Saint-Gaudens Bears as the winners? | CREATE TABLE table_name_77 (score VARCHAR, runner_up VARCHAR, winners VARCHAR) | SELECT score FROM table_name_77 WHERE runner_up = "utc" AND winners = "saint-gaudens bears" | ### Context: CREATE TABLE table_name_77 (score VARCHAR, runner_up VARCHAR, winners VARCHAR) ### Question: What is the score of the match with UTC as the runner-up and Saint-Gaudens Bears as the winners? ### Answer: SELECT score FROM table_name_77 WHERE runner_up = "utc" AND winners = "saint-gaudens bears" |
Which year had UTC as the runner-up and Saint-Gaudens Bears as the winners? | CREATE TABLE table_name_3 (year VARCHAR, runner_up VARCHAR, winners VARCHAR) | SELECT year FROM table_name_3 WHERE runner_up = "utc" AND winners = "saint-gaudens bears" | ### Context: CREATE TABLE table_name_3 (year VARCHAR, runner_up VARCHAR, winners VARCHAR) ### Question: Which year had UTC as the runner-up and Saint-Gaudens Bears as the winners? ### Answer: SELECT year FROM table_name_3 WHERE runner_up = "utc" AND winners = "saint-gaudens bears" |
What is the venue of the match with a score of 33-22? | CREATE TABLE table_name_45 (venue VARCHAR, score VARCHAR) | SELECT venue FROM table_name_45 WHERE score = "33-22" | ### Context: CREATE TABLE table_name_45 (venue VARCHAR, score VARCHAR) ### Question: What is the venue of the match with a score of 33-22? ### Answer: SELECT venue FROM table_name_45 WHERE score = "33-22" |
Who had the highest assists during the game on February 22? | CREATE TABLE table_name_28 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_name_28 WHERE date = "february 22" | ### Context: CREATE TABLE table_name_28 (high_assists VARCHAR, date VARCHAR) ### Question: Who had the highest assists during the game on February 22? ### Answer: SELECT high_assists FROM table_name_28 WHERE date = "february 22" |
What team did the Heat play against at the TD Waterhouse Centre? | CREATE TABLE table_name_55 (team VARCHAR, location_attendance VARCHAR) | SELECT team FROM table_name_55 WHERE location_attendance = "td waterhouse centre" | ### Context: CREATE TABLE table_name_55 (team VARCHAR, location_attendance VARCHAR) ### Question: What team did the Heat play against at the TD Waterhouse Centre? ### Answer: SELECT team FROM table_name_55 WHERE location_attendance = "td waterhouse centre" |
What date was the game against Toronto which had a game number higher than 53? | CREATE TABLE table_name_68 (date VARCHAR, game VARCHAR, team VARCHAR) | SELECT date FROM table_name_68 WHERE game > 53 AND team = "toronto" | ### Context: CREATE TABLE table_name_68 (date VARCHAR, game VARCHAR, team VARCHAR) ### Question: What date was the game against Toronto which had a game number higher than 53? ### Answer: SELECT date FROM table_name_68 WHERE game > 53 AND team = "toronto" |
What is the date of the that was played with the Baltimore Colts at home? | CREATE TABLE table_name_94 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_94 WHERE home_team = "baltimore colts" | ### Context: CREATE TABLE table_name_94 (date VARCHAR, home_team VARCHAR) ### Question: What is the date of the that was played with the Baltimore Colts at home? ### Answer: SELECT date FROM table_name_94 WHERE home_team = "baltimore colts" |
How long did the game go that was played with the Houston Oilers at home? | CREATE TABLE table_name_31 (length_of_game VARCHAR, home_team VARCHAR) | SELECT length_of_game FROM table_name_31 WHERE home_team = "houston oilers" | ### Context: CREATE TABLE table_name_31 (length_of_game VARCHAR, home_team VARCHAR) ### Question: How long did the game go that was played with the Houston Oilers at home? ### Answer: SELECT length_of_game FROM table_name_31 WHERE home_team = "houston oilers" |
What was the date of the game that lasted 75:43? | CREATE TABLE table_name_93 (date VARCHAR, length_of_game VARCHAR) | SELECT date FROM table_name_93 WHERE length_of_game = "75:43" | ### Context: CREATE TABLE table_name_93 (date VARCHAR, length_of_game VARCHAR) ### Question: What was the date of the game that lasted 75:43? ### Answer: SELECT date FROM table_name_93 WHERE length_of_game = "75:43" |
Who is the away team for the game played on December 24, 1977? | CREATE TABLE table_name_78 (away_team VARCHAR, date VARCHAR) | SELECT away_team FROM table_name_78 WHERE date = "december 24, 1977" | ### Context: CREATE TABLE table_name_78 (away_team VARCHAR, date VARCHAR) ### Question: Who is the away team for the game played on December 24, 1977? ### Answer: SELECT away_team FROM table_name_78 WHERE date = "december 24, 1977" |
What was the length of the game where the Baltimore Colts were at home? | CREATE TABLE table_name_95 (length_of_game VARCHAR, home_team VARCHAR) | SELECT length_of_game FROM table_name_95 WHERE home_team = "baltimore colts" | ### Context: CREATE TABLE table_name_95 (length_of_game VARCHAR, home_team VARCHAR) ### Question: What was the length of the game where the Baltimore Colts were at home? ### Answer: SELECT length_of_game FROM table_name_95 WHERE home_team = "baltimore colts" |
What's the number of laps for 16 grids? | CREATE TABLE table_name_36 (laps INTEGER, grid VARCHAR) | SELECT SUM(laps) FROM table_name_36 WHERE grid = 16 | ### Context: CREATE TABLE table_name_36 (laps INTEGER, grid VARCHAR) ### Question: What's the number of laps for 16 grids? ### Answer: SELECT SUM(laps) FROM table_name_36 WHERE grid = 16 |
Who was the rider for laps less than 23 with grid greater than 21 that had a time of +1 lap? | CREATE TABLE table_name_71 (rider VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT rider FROM table_name_71 WHERE laps < 23 AND grid > 21 AND time_retired = "+1 lap" | ### Context: CREATE TABLE table_name_71 (rider VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: Who was the rider for laps less than 23 with grid greater than 21 that had a time of +1 lap? ### Answer: SELECT rider FROM table_name_71 WHERE laps < 23 AND grid > 21 AND time_retired = "+1 lap" |
What's the total grid for someone with a time/retire of +44.831 | CREATE TABLE table_name_26 (grid VARCHAR, time_retired VARCHAR) | SELECT COUNT(grid) FROM table_name_26 WHERE time_retired = "+44.831" | ### Context: CREATE TABLE table_name_26 (grid VARCHAR, time_retired VARCHAR) ### Question: What's the total grid for someone with a time/retire of +44.831 ### Answer: SELECT COUNT(grid) FROM table_name_26 WHERE time_retired = "+44.831" |
What's the smallest grid for Time/Retired of +22.687? | CREATE TABLE table_name_52 (grid INTEGER, time_retired VARCHAR) | SELECT MIN(grid) FROM table_name_52 WHERE time_retired = "+22.687" | ### Context: CREATE TABLE table_name_52 (grid INTEGER, time_retired VARCHAR) ### Question: What's the smallest grid for Time/Retired of +22.687? ### Answer: SELECT MIN(grid) FROM table_name_52 WHERE time_retired = "+22.687" |
What is the recoupa sudaamericana 1996 result of team flamengo, which did not qualify for the copa conmebol 1996? | CREATE TABLE table_name_10 (recopa_sudamericana_1996 VARCHAR, copa_conmebol_1996 VARCHAR, team VARCHAR) | SELECT recopa_sudamericana_1996 FROM table_name_10 WHERE copa_conmebol_1996 = "did not qualify" AND team = "flamengo" | ### Context: CREATE TABLE table_name_10 (recopa_sudamericana_1996 VARCHAR, copa_conmebol_1996 VARCHAR, team VARCHAR) ### Question: What is the recoupa sudaamericana 1996 result of team flamengo, which did not qualify for the copa conmebol 1996? ### Answer: SELECT recopa_sudamericana_1996 FROM table_name_10 WHERE copa_conmebol_1996 = "did not qualify" AND team = "flamengo" |
What is the copa libertadores 1996 result of the team with a copa conmebol 1996 result of quarterfinals? | CREATE TABLE table_name_84 (copa_libertadores_1996 VARCHAR, copa_conmebol_1996 VARCHAR) | SELECT copa_libertadores_1996 FROM table_name_84 WHERE copa_conmebol_1996 = "quarterfinals" | ### Context: CREATE TABLE table_name_84 (copa_libertadores_1996 VARCHAR, copa_conmebol_1996 VARCHAR) ### Question: What is the copa libertadores 1996 result of the team with a copa conmebol 1996 result of quarterfinals? ### Answer: SELECT copa_libertadores_1996 FROM table_name_84 WHERE copa_conmebol_1996 = "quarterfinals" |
What is the copa libertadores 1996 of team corinthians? | CREATE TABLE table_name_32 (copa_libertadores_1996 VARCHAR, team VARCHAR) | SELECT copa_libertadores_1996 FROM table_name_32 WHERE team = "corinthians" | ### Context: CREATE TABLE table_name_32 (copa_libertadores_1996 VARCHAR, team VARCHAR) ### Question: What is the copa libertadores 1996 of team corinthians? ### Answer: SELECT copa_libertadores_1996 FROM table_name_32 WHERE team = "corinthians" |
What is the copa conmebol 1996 result of the team with a recopa sudamericana 1996 result of champions? | CREATE TABLE table_name_49 (copa_conmebol_1996 VARCHAR, recopa_sudamericana_1996 VARCHAR) | SELECT copa_conmebol_1996 FROM table_name_49 WHERE recopa_sudamericana_1996 = "champions" | ### Context: CREATE TABLE table_name_49 (copa_conmebol_1996 VARCHAR, recopa_sudamericana_1996 VARCHAR) ### Question: What is the copa conmebol 1996 result of the team with a recopa sudamericana 1996 result of champions? ### Answer: SELECT copa_conmebol_1996 FROM table_name_49 WHERE recopa_sudamericana_1996 = "champions" |
What is the recoupa sudamericana 1996 of the team with a copa libertadores 1996 result of the round of 16? | CREATE TABLE table_name_64 (recopa_sudamericana_1996 VARCHAR, copa_libertadores_1996 VARCHAR) | SELECT recopa_sudamericana_1996 FROM table_name_64 WHERE copa_libertadores_1996 = "round of 16" | ### Context: CREATE TABLE table_name_64 (recopa_sudamericana_1996 VARCHAR, copa_libertadores_1996 VARCHAR) ### Question: What is the recoupa sudamericana 1996 of the team with a copa libertadores 1996 result of the round of 16? ### Answer: SELECT recopa_sudamericana_1996 FROM table_name_64 WHERE copa_libertadores_1996 = "round of 16" |
What is the recoupa sudamericana 1996 result of team corinthians? | CREATE TABLE table_name_7 (recopa_sudamericana_1996 VARCHAR, team VARCHAR) | SELECT recopa_sudamericana_1996 FROM table_name_7 WHERE team = "corinthians" | ### Context: CREATE TABLE table_name_7 (recopa_sudamericana_1996 VARCHAR, team VARCHAR) ### Question: What is the recoupa sudamericana 1996 result of team corinthians? ### Answer: SELECT recopa_sudamericana_1996 FROM table_name_7 WHERE team = "corinthians" |
What season has 195 runs as a margin? | CREATE TABLE table_name_90 (season VARCHAR, margin VARCHAR) | SELECT season FROM table_name_90 WHERE margin = "195 runs" | ### Context: CREATE TABLE table_name_90 (season VARCHAR, margin VARCHAR) ### Question: What season has 195 runs as a margin? ### Answer: SELECT season FROM table_name_90 WHERE margin = "195 runs" |
What season has 2 as a rank? | CREATE TABLE table_name_18 (season VARCHAR, rank VARCHAR) | SELECT season FROM table_name_18 WHERE rank = "2" | ### Context: CREATE TABLE table_name_18 (season VARCHAR, rank VARCHAR) ### Question: What season has 2 as a rank? ### Answer: SELECT season FROM table_name_18 WHERE rank = "2" |
What venue has 2 as the rank? | CREATE TABLE table_name_75 (venue VARCHAR, rank VARCHAR) | SELECT venue FROM table_name_75 WHERE rank = "2" | ### Context: CREATE TABLE table_name_75 (venue VARCHAR, rank VARCHAR) ### Question: What venue has 2 as the rank? ### Answer: SELECT venue FROM table_name_75 WHERE rank = "2" |
What opponent has 2011/12 as the season? | CREATE TABLE table_name_79 (opponent VARCHAR, season VARCHAR) | SELECT opponent FROM table_name_79 WHERE season = "2011/12" | ### Context: CREATE TABLE table_name_79 (opponent VARCHAR, season VARCHAR) ### Question: What opponent has 2011/12 as the season? ### Answer: SELECT opponent FROM table_name_79 WHERE season = "2011/12" |
What is the length of the version from 2003? | CREATE TABLE table_name_3 (length VARCHAR, year VARCHAR) | SELECT length FROM table_name_3 WHERE year = 2003 | ### Context: CREATE TABLE table_name_3 (length VARCHAR, year VARCHAR) ### Question: What is the length of the version from 2003? ### Answer: SELECT length FROM table_name_3 WHERE year = 2003 |
Who remixed the version with a length of 4:22? | CREATE TABLE table_name_67 (remixed_by VARCHAR, length VARCHAR) | SELECT remixed_by FROM table_name_67 WHERE length = "4:22" | ### Context: CREATE TABLE table_name_67 (remixed_by VARCHAR, length VARCHAR) ### Question: Who remixed the version with a length of 4:22? ### Answer: SELECT remixed_by FROM table_name_67 WHERE length = "4:22" |
What is the length of the UK remix version? | CREATE TABLE table_name_68 (length VARCHAR, version VARCHAR) | SELECT length FROM table_name_68 WHERE version = "uk remix" | ### Context: CREATE TABLE table_name_68 (length VARCHAR, version VARCHAR) ### Question: What is the length of the UK remix version? ### Answer: SELECT length FROM table_name_68 WHERE version = "uk remix" |
What year was the version with a remixes album? | CREATE TABLE table_name_76 (year VARCHAR, album VARCHAR) | SELECT year FROM table_name_76 WHERE album = "remixes" | ### Context: CREATE TABLE table_name_76 (year VARCHAR, album VARCHAR) ### Question: What year was the version with a remixes album? ### Answer: SELECT year FROM table_name_76 WHERE album = "remixes" |
How many losses did the team, Sturt, have when they had more than 0 wins? | CREATE TABLE table_name_85 (losses VARCHAR, team VARCHAR, wins VARCHAR) | SELECT COUNT(losses) FROM table_name_85 WHERE team = "sturt" AND wins > 0 | ### Context: CREATE TABLE table_name_85 (losses VARCHAR, team VARCHAR, wins VARCHAR) ### Question: How many losses did the team, Sturt, have when they had more than 0 wins? ### Answer: SELECT COUNT(losses) FROM table_name_85 WHERE team = "sturt" AND wins > 0 |
What is the average number of draws for the team that had more than 0 wins? | CREATE TABLE table_name_13 (draws INTEGER, wins INTEGER) | SELECT AVG(draws) FROM table_name_13 WHERE wins > 0 | ### Context: CREATE TABLE table_name_13 (draws INTEGER, wins INTEGER) ### Question: What is the average number of draws for the team that had more than 0 wins? ### Answer: SELECT AVG(draws) FROM table_name_13 WHERE wins > 0 |
What is the least amount of losses for the team that had more than 0 draws during the seasons earlier than 1926? | CREATE TABLE table_name_13 (losses INTEGER, draws VARCHAR, season VARCHAR) | SELECT MIN(losses) FROM table_name_13 WHERE draws > 0 AND season < 1926 | ### Context: CREATE TABLE table_name_13 (losses INTEGER, draws VARCHAR, season VARCHAR) ### Question: What is the least amount of losses for the team that had more than 0 draws during the seasons earlier than 1926? ### Answer: SELECT MIN(losses) FROM table_name_13 WHERE draws > 0 AND season < 1926 |
What is the highest number of wins for the team, Central District, who had less than 0 draws and took place during a season before 1995? | CREATE TABLE table_name_63 (wins INTEGER, draws VARCHAR, season VARCHAR, team VARCHAR) | SELECT MAX(wins) FROM table_name_63 WHERE season < 1995 AND team = "central district" AND draws < 0 | ### Context: CREATE TABLE table_name_63 (wins INTEGER, draws VARCHAR, season VARCHAR, team VARCHAR) ### Question: What is the highest number of wins for the team, Central District, who had less than 0 draws and took place during a season before 1995? ### Answer: SELECT MAX(wins) FROM table_name_63 WHERE season < 1995 AND team = "central district" AND draws < 0 |
What is the average number of wins before the season in 1906 where there were 0 draws? | CREATE TABLE table_name_72 (wins INTEGER, season VARCHAR, draws VARCHAR) | SELECT AVG(wins) FROM table_name_72 WHERE season < 1906 AND draws < 0 | ### Context: CREATE TABLE table_name_72 (wins INTEGER, season VARCHAR, draws VARCHAR) ### Question: What is the average number of wins before the season in 1906 where there were 0 draws? ### Answer: SELECT AVG(wins) FROM table_name_72 WHERE season < 1906 AND draws < 0 |
Who is the Opposing Pitcher when Team is phillies, Location is pittsburgh, and Inning is 8th? | CREATE TABLE table_name_37 (opposing_pitcher VARCHAR, inning VARCHAR, team VARCHAR, location VARCHAR) | SELECT opposing_pitcher FROM table_name_37 WHERE team = "phillies" AND location = "pittsburgh" AND inning = "8th" | ### Context: CREATE TABLE table_name_37 (opposing_pitcher VARCHAR, inning VARCHAR, team VARCHAR, location VARCHAR) ### Question: Who is the Opposing Pitcher when Team is phillies, Location is pittsburgh, and Inning is 8th? ### Answer: SELECT opposing_pitcher FROM table_name_37 WHERE team = "phillies" AND location = "pittsburgh" AND inning = "8th" |
What is the lowest Game where Inning is 6th, and the Opposing Pitcher is cliff curtis? | CREATE TABLE table_name_14 (game INTEGER, inning VARCHAR, opposing_pitcher VARCHAR) | SELECT MIN(game) FROM table_name_14 WHERE inning = "6th" AND opposing_pitcher = "cliff curtis" | ### Context: CREATE TABLE table_name_14 (game INTEGER, inning VARCHAR, opposing_pitcher VARCHAR) ### Question: What is the lowest Game where Inning is 6th, and the Opposing Pitcher is cliff curtis? ### Answer: SELECT MIN(game) FROM table_name_14 WHERE inning = "6th" AND opposing_pitcher = "cliff curtis" |
What is was Date that where Triple was smaller than 26, and Game was 25? | CREATE TABLE table_name_84 (date VARCHAR, triple VARCHAR, game VARCHAR) | SELECT date FROM table_name_84 WHERE triple < 26 AND game = 25 | ### Context: CREATE TABLE table_name_84 (date VARCHAR, triple VARCHAR, game VARCHAR) ### Question: What is was Date that where Triple was smaller than 26, and Game was 25? ### Answer: SELECT date FROM table_name_84 WHERE triple < 26 AND game = 25 |
Which Gold is the lowest one that has a Bronze of 14, and a Total larger than 42? | CREATE TABLE table_name_47 (gold INTEGER, bronze VARCHAR, total VARCHAR) | SELECT MIN(gold) FROM table_name_47 WHERE bronze = 14 AND total > 42 | ### Context: CREATE TABLE table_name_47 (gold INTEGER, bronze VARCHAR, total VARCHAR) ### Question: Which Gold is the lowest one that has a Bronze of 14, and a Total larger than 42? ### Answer: SELECT MIN(gold) FROM table_name_47 WHERE bronze = 14 AND total > 42 |
Which Bronze is the lowest one that has a Nation of total, and a Gold smaller than 14? | CREATE TABLE table_name_38 (bronze INTEGER, nation VARCHAR, gold VARCHAR) | SELECT MIN(bronze) FROM table_name_38 WHERE nation = "total" AND gold < 14 | ### Context: CREATE TABLE table_name_38 (bronze INTEGER, nation VARCHAR, gold VARCHAR) ### Question: Which Bronze is the lowest one that has a Nation of total, and a Gold smaller than 14? ### Answer: SELECT MIN(bronze) FROM table_name_38 WHERE nation = "total" AND gold < 14 |
How much Total has a Nation of kazakhstan (kaz), and a Gold larger than 0? | CREATE TABLE table_name_16 (total VARCHAR, nation VARCHAR, gold VARCHAR) | SELECT COUNT(total) FROM table_name_16 WHERE nation = "kazakhstan (kaz)" AND gold > 0 | ### Context: CREATE TABLE table_name_16 (total VARCHAR, nation VARCHAR, gold VARCHAR) ### Question: How much Total has a Nation of kazakhstan (kaz), and a Gold larger than 0? ### Answer: SELECT COUNT(total) FROM table_name_16 WHERE nation = "kazakhstan (kaz)" AND gold > 0 |
Which Total is the highest one that has a Rank of 1, and a Gold larger than 11? | CREATE TABLE table_name_24 (total INTEGER, rank VARCHAR, gold VARCHAR) | SELECT MAX(total) FROM table_name_24 WHERE rank = "1" AND gold > 11 | ### Context: CREATE TABLE table_name_24 (total INTEGER, rank VARCHAR, gold VARCHAR) ### Question: Which Total is the highest one that has a Rank of 1, and a Gold larger than 11? ### Answer: SELECT MAX(total) FROM table_name_24 WHERE rank = "1" AND gold > 11 |
Who finished 3rd in Oslo? | CREATE TABLE table_name_74 (third VARCHAR, venue VARCHAR) | SELECT third FROM table_name_74 WHERE venue = "oslo" | ### Context: CREATE TABLE table_name_74 (third VARCHAR, venue VARCHAR) ### Question: Who finished 3rd in Oslo? ### Answer: SELECT third FROM table_name_74 WHERE venue = "oslo" |
On November 22, what were the results of the friendly type game? | CREATE TABLE table_name_99 (results¹ VARCHAR, type_of_game VARCHAR, date VARCHAR) | SELECT results¹ FROM table_name_99 WHERE type_of_game = "friendly" AND date = "november 22" | ### Context: CREATE TABLE table_name_99 (results¹ VARCHAR, type_of_game VARCHAR, date VARCHAR) ### Question: On November 22, what were the results of the friendly type game? ### Answer: SELECT results¹ FROM table_name_99 WHERE type_of_game = "friendly" AND date = "november 22" |
On October 8, what city was the game played? | CREATE TABLE table_name_82 (city VARCHAR, date VARCHAR) | SELECT city FROM table_name_82 WHERE date = "october 8" | ### Context: CREATE TABLE table_name_82 (city VARCHAR, date VARCHAR) ### Question: On October 8, what city was the game played? ### Answer: SELECT city FROM table_name_82 WHERE date = "october 8" |
On June 29, who was the opponent? | CREATE TABLE table_name_96 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_96 WHERE date = "june 29" | ### Context: CREATE TABLE table_name_96 (opponent VARCHAR, date VARCHAR) ### Question: On June 29, who was the opponent? ### Answer: SELECT opponent FROM table_name_96 WHERE date = "june 29" |
What date had an opponent of Sweden and a friendly type game? | CREATE TABLE table_name_44 (date VARCHAR, type_of_game VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_44 WHERE type_of_game = "friendly" AND opponent = "sweden" | ### Context: CREATE TABLE table_name_44 (date VARCHAR, type_of_game VARCHAR, opponent VARCHAR) ### Question: What date had an opponent of Sweden and a friendly type game? ### Answer: SELECT date FROM table_name_44 WHERE type_of_game = "friendly" AND opponent = "sweden" |
What were the results on September 7? | CREATE TABLE table_name_31 (results¹ VARCHAR, date VARCHAR) | SELECT results¹ FROM table_name_31 WHERE date = "september 7" | ### Context: CREATE TABLE table_name_31 (results¹ VARCHAR, date VARCHAR) ### Question: What were the results on September 7? ### Answer: SELECT results¹ FROM table_name_31 WHERE date = "september 7" |
What is the Winning team on january 28, 2006? | CREATE TABLE table_name_35 (winning_team VARCHAR, date VARCHAR) | SELECT winning_team FROM table_name_35 WHERE date = "january 28, 2006" | ### Context: CREATE TABLE table_name_35 (winning_team VARCHAR, date VARCHAR) ### Question: What is the Winning team on january 28, 2006? ### Answer: SELECT winning_team FROM table_name_35 WHERE date = "january 28, 2006" |
Which Series has a Winning team of iowa state and a Sport of w basketball? | CREATE TABLE table_name_54 (series VARCHAR, winning_team VARCHAR, sport VARCHAR) | SELECT series FROM table_name_54 WHERE winning_team = "iowa state" AND sport = "w basketball" | ### Context: CREATE TABLE table_name_54 (series VARCHAR, winning_team VARCHAR, sport VARCHAR) ### Question: Which Series has a Winning team of iowa state and a Sport of w basketball? ### Answer: SELECT series FROM table_name_54 WHERE winning_team = "iowa state" AND sport = "w basketball" |
Which Series has a Site of ames on september 10, 2005? | CREATE TABLE table_name_90 (series VARCHAR, site VARCHAR, date VARCHAR) | SELECT series FROM table_name_90 WHERE site = "ames" AND date = "september 10, 2005" | ### Context: CREATE TABLE table_name_90 (series VARCHAR, site VARCHAR, date VARCHAR) ### Question: Which Series has a Site of ames on september 10, 2005? ### Answer: SELECT series FROM table_name_90 WHERE site = "ames" AND date = "september 10, 2005" |
Which Series has a Site of ames and a Sport of w gymnastics? | CREATE TABLE table_name_13 (series VARCHAR, site VARCHAR, sport VARCHAR) | SELECT series FROM table_name_13 WHERE site = "ames" AND sport = "w gymnastics" | ### Context: CREATE TABLE table_name_13 (series VARCHAR, site VARCHAR, sport VARCHAR) ### Question: Which Series has a Site of ames and a Sport of w gymnastics? ### Answer: SELECT series FROM table_name_13 WHERE site = "ames" AND sport = "w gymnastics" |
WHich port is on march 17, 2006 and has a Winning team of iowa state? | CREATE TABLE table_name_70 (sport VARCHAR, date VARCHAR, winning_team VARCHAR) | SELECT sport FROM table_name_70 WHERE date = "march 17, 2006" AND winning_team = "iowa state" | ### Context: CREATE TABLE table_name_70 (sport VARCHAR, date VARCHAR, winning_team VARCHAR) ### Question: WHich port is on march 17, 2006 and has a Winning team of iowa state? ### Answer: SELECT sport FROM table_name_70 WHERE date = "march 17, 2006" AND winning_team = "iowa state" |
Which Site has a Date of march 17, 2006 and an iowa state Winning team? | CREATE TABLE table_name_40 (site VARCHAR, date VARCHAR, winning_team VARCHAR) | SELECT site FROM table_name_40 WHERE date = "march 17, 2006" AND winning_team = "iowa state" | ### Context: CREATE TABLE table_name_40 (site VARCHAR, date VARCHAR, winning_team VARCHAR) ### Question: Which Site has a Date of march 17, 2006 and an iowa state Winning team? ### Answer: SELECT site FROM table_name_40 WHERE date = "march 17, 2006" AND winning_team = "iowa state" |
Who was the opponent of the game before week 11 on October 31, 1976? | CREATE TABLE table_name_97 (opponent VARCHAR, week VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_97 WHERE week < 11 AND date = "october 31, 1976" | ### Context: CREATE TABLE table_name_97 (opponent VARCHAR, week VARCHAR, date VARCHAR) ### Question: Who was the opponent of the game before week 11 on October 31, 1976? ### Answer: SELECT opponent FROM table_name_97 WHERE week < 11 AND date = "october 31, 1976" |
What is the highest attendance of the game on week 9? | CREATE TABLE table_name_68 (attendance INTEGER, week VARCHAR) | SELECT MAX(attendance) FROM table_name_68 WHERE week = 9 | ### Context: CREATE TABLE table_name_68 (attendance INTEGER, week VARCHAR) ### Question: What is the highest attendance of the game on week 9? ### Answer: SELECT MAX(attendance) FROM table_name_68 WHERE week = 9 |
When is the last episode air date for season 3? | CREATE TABLE table_name_2 (last_air_date VARCHAR, season VARCHAR) | SELECT last_air_date FROM table_name_2 WHERE season = 3 | ### Context: CREATE TABLE table_name_2 (last_air_date VARCHAR, season VARCHAR) ### Question: When is the last episode air date for season 3? ### Answer: SELECT last_air_date FROM table_name_2 WHERE season = 3 |
Which season had its last episode air on March 11, 2001? | CREATE TABLE table_name_43 (season VARCHAR, last_air_date VARCHAR) | SELECT season FROM table_name_43 WHERE last_air_date = "march 11, 2001" | ### Context: CREATE TABLE table_name_43 (season VARCHAR, last_air_date VARCHAR) ### Question: Which season had its last episode air on March 11, 2001? ### Answer: SELECT season FROM table_name_43 WHERE last_air_date = "march 11, 2001" |
What games have more than 1 draw? | CREATE TABLE table_name_22 (games INTEGER, drawn INTEGER) | SELECT AVG(games) FROM table_name_22 WHERE drawn > 1 | ### Context: CREATE TABLE table_name_22 (games INTEGER, drawn INTEGER) ### Question: What games have more than 1 draw? ### Answer: SELECT AVG(games) FROM table_name_22 WHERE drawn > 1 |
What game is the lowest with 1 draw and less than 7 points? | CREATE TABLE table_name_43 (games INTEGER, drawn VARCHAR, points VARCHAR) | SELECT MIN(games) FROM table_name_43 WHERE drawn = 1 AND points < 7 | ### Context: CREATE TABLE table_name_43 (games INTEGER, drawn VARCHAR, points VARCHAR) ### Question: What game is the lowest with 1 draw and less than 7 points? ### Answer: SELECT MIN(games) FROM table_name_43 WHERE drawn = 1 AND points < 7 |
Manager of art griggs had what lowest year? | CREATE TABLE table_name_86 (year INTEGER, manager VARCHAR) | SELECT MIN(year) FROM table_name_86 WHERE manager = "art griggs" | ### Context: CREATE TABLE table_name_86 (year INTEGER, manager VARCHAR) ### Question: Manager of art griggs had what lowest year? ### Answer: SELECT MIN(year) FROM table_name_86 WHERE manager = "art griggs" |
Manager of spencer abbott, and a Year of 1919 involves what playoffs? | CREATE TABLE table_name_78 (playoffs VARCHAR, manager VARCHAR, year VARCHAR) | SELECT playoffs FROM table_name_78 WHERE manager = "spencer abbott" AND year = 1919 | ### Context: CREATE TABLE table_name_78 (playoffs VARCHAR, manager VARCHAR, year VARCHAR) ### Question: Manager of spencer abbott, and a Year of 1919 involves what playoffs? ### Answer: SELECT playoffs FROM table_name_78 WHERE manager = "spencer abbott" AND year = 1919 |
Manager of marty berghammer / nick allen is what year? | CREATE TABLE table_name_91 (year VARCHAR, manager VARCHAR) | SELECT year FROM table_name_91 WHERE manager = "marty berghammer / nick allen" | ### Context: CREATE TABLE table_name_91 (year VARCHAR, manager VARCHAR) ### Question: Manager of marty berghammer / nick allen is what year? ### Answer: SELECT year FROM table_name_91 WHERE manager = "marty berghammer / nick allen" |
Manager of lyman lamb / marty berghammer is in what league? | CREATE TABLE table_name_59 (league VARCHAR, manager VARCHAR) | SELECT league FROM table_name_59 WHERE manager = "lyman lamb / marty berghammer" | ### Context: CREATE TABLE table_name_59 (league VARCHAR, manager VARCHAR) ### Question: Manager of lyman lamb / marty berghammer is in what league? ### Answer: SELECT league FROM table_name_59 WHERE manager = "lyman lamb / marty berghammer" |
Manager of marty berghammer, and a Finish of 1st involved what lowest year? | CREATE TABLE table_name_59 (year INTEGER, manager VARCHAR, finish VARCHAR) | SELECT MIN(year) FROM table_name_59 WHERE manager = "marty berghammer" AND finish = "1st" | ### Context: CREATE TABLE table_name_59 (year INTEGER, manager VARCHAR, finish VARCHAR) ### Question: Manager of marty berghammer, and a Finish of 1st involved what lowest year? ### Answer: SELECT MIN(year) FROM table_name_59 WHERE manager = "marty berghammer" AND finish = "1st" |
Playoffs of league champs, and a Record of 77-63 is in what league? | CREATE TABLE table_name_63 (league VARCHAR, playoffs VARCHAR, record VARCHAR) | SELECT league FROM table_name_63 WHERE playoffs = "league champs" AND record = "77-63" | ### Context: CREATE TABLE table_name_63 (league VARCHAR, playoffs VARCHAR, record VARCHAR) ### Question: Playoffs of league champs, and a Record of 77-63 is in what league? ### Answer: SELECT league FROM table_name_63 WHERE playoffs = "league champs" AND record = "77-63" |
Name the 2005 with 2007 of sf | CREATE TABLE table_name_16 (Id VARCHAR) | SELECT 2005 FROM table_name_16 WHERE 2007 = "sf" | ### Context: CREATE TABLE table_name_16 (Id VARCHAR) ### Question: Name the 2005 with 2007 of sf ### Answer: SELECT 2005 FROM table_name_16 WHERE 2007 = "sf" |
Name the 2006 with 2008 of 1r and 2004 of 1r | CREATE TABLE table_name_22 (Id VARCHAR) | SELECT 2006 FROM table_name_22 WHERE 2008 = "1r" AND 2004 = "1r" | ### Context: CREATE TABLE table_name_22 (Id VARCHAR) ### Question: Name the 2006 with 2008 of 1r and 2004 of 1r ### Answer: SELECT 2006 FROM table_name_22 WHERE 2008 = "1r" AND 2004 = "1r" |
Name the 2011 with 2002 of 1r and 2009 of a | CREATE TABLE table_name_9 (Id VARCHAR) | SELECT 2011 FROM table_name_9 WHERE 2002 = "1r" AND 2009 = "a" | ### Context: CREATE TABLE table_name_9 (Id VARCHAR) ### Question: Name the 2011 with 2002 of 1r and 2009 of a ### Answer: SELECT 2011 FROM table_name_9 WHERE 2002 = "1r" AND 2009 = "a" |
Name the 1999 with 2011 of 2r | CREATE TABLE table_name_3 (Id VARCHAR) | SELECT 1999 FROM table_name_3 WHERE 2011 = "2r" | ### Context: CREATE TABLE table_name_3 (Id VARCHAR) ### Question: Name the 1999 with 2011 of 2r ### Answer: SELECT 1999 FROM table_name_3 WHERE 2011 = "2r" |
Name the 2008 with 1998 of a and 2002 of 1r with 2004 of 2r | CREATE TABLE table_name_88 (Id VARCHAR) | SELECT 2008 FROM table_name_88 WHERE 1998 = "a" AND 2002 = "1r" AND 2004 = "2r" | ### Context: CREATE TABLE table_name_88 (Id VARCHAR) ### Question: Name the 2008 with 1998 of a and 2002 of 1r with 2004 of 2r ### Answer: SELECT 2008 FROM table_name_88 WHERE 1998 = "a" AND 2002 = "1r" AND 2004 = "2r" |
Name the 2001 with 2007 of sf | CREATE TABLE table_name_2 (Id VARCHAR) | SELECT 2001 FROM table_name_2 WHERE 2007 = "sf" | ### Context: CREATE TABLE table_name_2 (Id VARCHAR) ### Question: Name the 2001 with 2007 of sf ### Answer: SELECT 2001 FROM table_name_2 WHERE 2007 = "sf" |
Which school year was the Class AAA dalhart and the class AAAAA edinburg? | CREATE TABLE table_name_73 (school_year VARCHAR, class_aAA VARCHAR, dalhart VARCHAR, class_aAAAA VARCHAR, edinburg VARCHAR) | SELECT school_year FROM table_name_73 WHERE class_aAA = dalhart AND class_aAAAA = edinburg | ### Context: CREATE TABLE table_name_73 (school_year VARCHAR, class_aAA VARCHAR, dalhart VARCHAR, class_aAAAA VARCHAR, edinburg VARCHAR) ### Question: Which school year was the Class AAA dalhart and the class AAAAA edinburg? ### Answer: SELECT school_year FROM table_name_73 WHERE class_aAA = dalhart AND class_aAAAA = edinburg |
For what Class A is the school year 1987-88? | CREATE TABLE table_name_24 (class_a VARCHAR, school_year VARCHAR) | SELECT class_a FROM table_name_24 WHERE school_year = "1987-88" | ### Context: CREATE TABLE table_name_24 (class_a VARCHAR, school_year VARCHAR) ### Question: For what Class A is the school year 1987-88? ### Answer: SELECT class_a FROM table_name_24 WHERE school_year = "1987-88" |
What is the Class AAAAA when the Class AAA is Gonzales? | CREATE TABLE table_name_28 (class_aAAA VARCHAR, class_aAA VARCHAR, gonzales VARCHAR) | SELECT class_aAAA FROM table_name_28 WHERE class_aAA = gonzales | ### Context: CREATE TABLE table_name_28 (class_aAAA VARCHAR, class_aAA VARCHAR, gonzales VARCHAR) ### Question: What is the Class AAAAA when the Class AAA is Gonzales? ### Answer: SELECT class_aAAA FROM table_name_28 WHERE class_aAA = gonzales |
Which team scored less than 35 points? | CREATE TABLE table_name_78 (team VARCHAR, points INTEGER) | SELECT team FROM table_name_78 WHERE points < 35 | ### Context: CREATE TABLE table_name_78 (team VARCHAR, points INTEGER) ### Question: Which team scored less than 35 points? ### Answer: SELECT team FROM table_name_78 WHERE points < 35 |
Which Position has a Team of criciúma, and a Drawn larger than 8? | CREATE TABLE table_name_80 (position INTEGER, team VARCHAR, drawn VARCHAR) | SELECT AVG(position) FROM table_name_80 WHERE team = "criciúma" AND drawn > 8 | ### Context: CREATE TABLE table_name_80 (position INTEGER, team VARCHAR, drawn VARCHAR) ### Question: Which Position has a Team of criciúma, and a Drawn larger than 8? ### Answer: SELECT AVG(position) FROM table_name_80 WHERE team = "criciúma" AND drawn > 8 |
Which Drawn has Points smaller than 46, and a Position smaller than 20, and a Lost smaller than 19, and an Against of 56? | CREATE TABLE table_name_7 (drawn VARCHAR, against VARCHAR, lost VARCHAR, points VARCHAR, position VARCHAR) | SELECT drawn FROM table_name_7 WHERE points < 46 AND position < 20 AND lost < 19 AND against = 56 | ### Context: CREATE TABLE table_name_7 (drawn VARCHAR, against VARCHAR, lost VARCHAR, points VARCHAR, position VARCHAR) ### Question: Which Drawn has Points smaller than 46, and a Position smaller than 20, and a Lost smaller than 19, and an Against of 56? ### Answer: SELECT drawn FROM table_name_7 WHERE points < 46 AND position < 20 AND lost < 19 AND against = 56 |
Which Played has a Lost larger than 14, and a Drawn of 10, and Points larger than 46? | CREATE TABLE table_name_97 (played INTEGER, points VARCHAR, lost VARCHAR, drawn VARCHAR) | SELECT AVG(played) FROM table_name_97 WHERE lost > 14 AND drawn = 10 AND points > 46 | ### Context: CREATE TABLE table_name_97 (played INTEGER, points VARCHAR, lost VARCHAR, drawn VARCHAR) ### Question: Which Played has a Lost larger than 14, and a Drawn of 10, and Points larger than 46? ### Answer: SELECT AVG(played) FROM table_name_97 WHERE lost > 14 AND drawn = 10 AND points > 46 |
What score has devin brown (24) as the leading scorer? | CREATE TABLE table_name_36 (score VARCHAR, leading_scorer VARCHAR) | SELECT score FROM table_name_36 WHERE leading_scorer = "devin brown (24)" | ### Context: CREATE TABLE table_name_36 (score VARCHAR, leading_scorer VARCHAR) ### Question: What score has devin brown (24) as the leading scorer? ### Answer: SELECT score FROM table_name_36 WHERE leading_scorer = "devin brown (24)" |
Which height, in meters, has 36 floors? | CREATE TABLE table_name_93 (height_ft___m__ VARCHAR, floors VARCHAR) | SELECT height_ft___m__ FROM table_name_93 WHERE floors = 36 | ### Context: CREATE TABLE table_name_93 (height_ft___m__ VARCHAR, floors VARCHAR) ### Question: Which height, in meters, has 36 floors? ### Answer: SELECT height_ft___m__ FROM table_name_93 WHERE floors = 36 |
Which Floors is the highest one that has a Name of one indiana square? | CREATE TABLE table_name_84 (floors INTEGER, name VARCHAR) | SELECT MAX(floors) FROM table_name_84 WHERE name = "one indiana square" | ### Context: CREATE TABLE table_name_84 (floors INTEGER, name VARCHAR) ### Question: Which Floors is the highest one that has a Name of one indiana square? ### Answer: SELECT MAX(floors) FROM table_name_84 WHERE name = "one indiana square" |
How tall is the Street address of 07.0 200 east washington street? | CREATE TABLE table_name_10 (height_ft___m__ VARCHAR, street_address VARCHAR) | SELECT height_ft___m__ FROM table_name_10 WHERE street_address = "07.0 200 east washington street" | ### Context: CREATE TABLE table_name_10 (height_ft___m__ VARCHAR, street_address VARCHAR) ### Question: How tall is the Street address of 07.0 200 east washington street? ### Answer: SELECT height_ft___m__ FROM table_name_10 WHERE street_address = "07.0 200 east washington street" |
What was the date of the game where the indians record was 37-44? | CREATE TABLE table_name_95 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_95 WHERE record = "37-44" | ### Context: CREATE TABLE table_name_95 (date VARCHAR, record VARCHAR) ### Question: What was the date of the game where the indians record was 37-44? ### Answer: SELECT date FROM table_name_95 WHERE record = "37-44" |
What city is Garfield County Museum located in? | CREATE TABLE table_name_39 (town_city VARCHAR, name VARCHAR) | SELECT town_city FROM table_name_39 WHERE name = "garfield county museum" | ### Context: CREATE TABLE table_name_39 (town_city VARCHAR, name VARCHAR) ### Question: What city is Garfield County Museum located in? ### Answer: SELECT town_city FROM table_name_39 WHERE name = "garfield county museum" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.