question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
How many drafts featured fred hoaglin? | CREATE TABLE table_name_42 (overall VARCHAR, player VARCHAR) | SELECT COUNT(overall) FROM table_name_42 WHERE player = "fred hoaglin" | ### Context: CREATE TABLE table_name_42 (overall VARCHAR, player VARCHAR) ### Question: How many drafts featured fred hoaglin? ### Answer: SELECT COUNT(overall) FROM table_name_42 WHERE player = "fred hoaglin" |
What round did the player from delta st. get picked? | CREATE TABLE table_name_84 (round VARCHAR, school_club_team VARCHAR) | SELECT round FROM table_name_84 WHERE school_club_team = "delta st." | ### Context: CREATE TABLE table_name_84 (round VARCHAR, school_club_team VARCHAR) ### Question: What round did the player from delta st. get picked? ### Answer: SELECT round FROM table_name_84 WHERE school_club_team = "delta st." |
What is the highest overall number for someone from round 16? | CREATE TABLE table_name_51 (overall INTEGER, round VARCHAR) | SELECT MAX(overall) FROM table_name_51 WHERE round = 16 | ### Context: CREATE TABLE table_name_51 (overall INTEGER, round VARCHAR) ### Question: What is the highest overall number for someone from round 16? ### Answer: SELECT MAX(overall) FROM table_name_51 WHERE round = 16 |
What was the average crowd size when Melbourne was the home team? | CREATE TABLE table_name_9 (crowd INTEGER, home_team VARCHAR) | SELECT AVG(crowd) FROM table_name_9 WHERE home_team = "melbourne" | ### Context: CREATE TABLE table_name_9 (crowd INTEGER, home_team VARCHAR) ### Question: What was the average crowd size when Melbourne was the home team? ### Answer: SELECT AVG(crowd) FROM table_name_9 WHERE home_team = "melbourne" |
What was North Melbourne's score when they were the home team? | CREATE TABLE table_name_52 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_52 WHERE away_team = "north melbourne" | ### Context: CREATE TABLE table_name_52 (away_team VARCHAR) ### Question: What was North Melbourne's score when they were the home team? ### Answer: SELECT away_team AS score FROM table_name_52 WHERE away_team = "north melbourne" |
What was Hawthorn's score as the away team? | CREATE TABLE table_name_96 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_96 WHERE away_team = "hawthorn" | ### Context: CREATE TABLE table_name_96 (away_team VARCHAR) ### Question: What was Hawthorn's score as the away team? ### Answer: SELECT away_team AS score FROM table_name_96 WHERE away_team = "hawthorn" |
Who was the away team at the game at Lake Oval? | CREATE TABLE table_name_57 (away_team VARCHAR, venue VARCHAR) | SELECT away_team AS score FROM table_name_57 WHERE venue = "lake oval" | ### Context: CREATE TABLE table_name_57 (away_team VARCHAR, venue VARCHAR) ### Question: Who was the away team at the game at Lake Oval? ### Answer: SELECT away_team AS score FROM table_name_57 WHERE venue = "lake oval" |
Which stadium held the game that 65,677 people attended? | CREATE TABLE table_name_21 (stadium VARCHAR, attendance VARCHAR) | SELECT stadium FROM table_name_21 WHERE attendance = "65,677" | ### Context: CREATE TABLE table_name_21 (stadium VARCHAR, attendance VARCHAR) ### Question: Which stadium held the game that 65,677 people attended? ### Answer: SELECT stadium FROM table_name_21 WHERE attendance = "65,677" |
What was the attendance of the game on October 17, 2004? | CREATE TABLE table_name_41 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_41 WHERE date = "october 17, 2004" | ### Context: CREATE TABLE table_name_41 (attendance VARCHAR, date VARCHAR) ### Question: What was the attendance of the game on October 17, 2004? ### Answer: SELECT attendance FROM table_name_41 WHERE date = "october 17, 2004" |
Which week was the October 17, 2004 game played? | CREATE TABLE table_name_76 (week VARCHAR, date VARCHAR) | SELECT week FROM table_name_76 WHERE date = "october 17, 2004" | ### Context: CREATE TABLE table_name_76 (week VARCHAR, date VARCHAR) ### Question: Which week was the October 17, 2004 game played? ### Answer: SELECT week FROM table_name_76 WHERE date = "october 17, 2004" |
What was the Browns record after they played the game at the Paul Brown stadium? | CREATE TABLE table_name_41 (record VARCHAR, stadium VARCHAR) | SELECT record FROM table_name_41 WHERE stadium = "paul brown stadium" | ### Context: CREATE TABLE table_name_41 (record VARCHAR, stadium VARCHAR) ### Question: What was the Browns record after they played the game at the Paul Brown stadium? ### Answer: SELECT record FROM table_name_41 WHERE stadium = "paul brown stadium" |
Which player went to Gonzaga? | CREATE TABLE table_name_80 (player VARCHAR, school_country VARCHAR) | SELECT player FROM table_name_80 WHERE school_country = "gonzaga" | ### Context: CREATE TABLE table_name_80 (player VARCHAR, school_country VARCHAR) ### Question: Which player went to Gonzaga? ### Answer: SELECT player FROM table_name_80 WHERE school_country = "gonzaga" |
Which Rams opponent had a record of 2-3? | CREATE TABLE table_name_87 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_87 WHERE record = "2-3" | ### Context: CREATE TABLE table_name_87 (opponent VARCHAR, record VARCHAR) ### Question: Which Rams opponent had a record of 2-3? ### Answer: SELECT opponent FROM table_name_87 WHERE record = "2-3" |
What is the number of podiums for the races of 13/15? | CREATE TABLE table_name_97 (podiums VARCHAR, races_† VARCHAR) | SELECT podiums FROM table_name_97 WHERE races_† = "13/15" | ### Context: CREATE TABLE table_name_97 (podiums VARCHAR, races_† VARCHAR) ### Question: What is the number of podiums for the races of 13/15? ### Answer: SELECT podiums FROM table_name_97 WHERE races_† = "13/15" |
How many wins are there for the Races of 12/12? | CREATE TABLE table_name_36 (wins VARCHAR, races_† VARCHAR) | SELECT wins FROM table_name_36 WHERE races_† = "12/12" | ### Context: CREATE TABLE table_name_36 (wins VARCHAR, races_† VARCHAR) ### Question: How many wins are there for the Races of 12/12? ### Answer: SELECT wins FROM table_name_36 WHERE races_† = "12/12" |
What is the fastest lap for a season smaller than 1979? | CREATE TABLE table_name_99 (fastest_laps VARCHAR, season INTEGER) | SELECT fastest_laps FROM table_name_99 WHERE season < 1979 | ### Context: CREATE TABLE table_name_99 (fastest_laps VARCHAR, season INTEGER) ### Question: What is the fastest lap for a season smaller than 1979? ### Answer: SELECT fastest_laps FROM table_name_99 WHERE season < 1979 |
For the 12/12 races, what is the fastest lap? | CREATE TABLE table_name_95 (fastest_laps VARCHAR, races_† VARCHAR) | SELECT fastest_laps FROM table_name_95 WHERE races_† = "12/12" | ### Context: CREATE TABLE table_name_95 (fastest_laps VARCHAR, races_† VARCHAR) ### Question: For the 12/12 races, what is the fastest lap? ### Answer: SELECT fastest_laps FROM table_name_95 WHERE races_† = "12/12" |
What was the largest crowd where Carlton was the away team? | CREATE TABLE table_name_64 (crowd INTEGER, away_team VARCHAR) | SELECT MAX(crowd) FROM table_name_64 WHERE away_team = "carlton" | ### Context: CREATE TABLE table_name_64 (crowd INTEGER, away_team VARCHAR) ### Question: What was the largest crowd where Carlton was the away team? ### Answer: SELECT MAX(crowd) FROM table_name_64 WHERE away_team = "carlton" |
Which team's home is the Arden Street Oval? | CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_56 WHERE venue = "arden street oval" | ### Context: CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR) ### Question: Which team's home is the Arden Street Oval? ### Answer: SELECT home_team FROM table_name_56 WHERE venue = "arden street oval" |
What was the lowest attendance at a Fitzroy match? | CREATE TABLE table_name_68 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_68 WHERE home_team = "fitzroy" | ### Context: CREATE TABLE table_name_68 (crowd INTEGER, home_team VARCHAR) ### Question: What was the lowest attendance at a Fitzroy match? ### Answer: SELECT MIN(crowd) FROM table_name_68 WHERE home_team = "fitzroy" |
What is the current club with more than 368 apps and a debut year earlier than 1994? | CREATE TABLE table_name_51 (current_club VARCHAR, apps VARCHAR, debut_year VARCHAR) | SELECT current_club FROM table_name_51 WHERE apps > 368 AND debut_year < 1994 | ### Context: CREATE TABLE table_name_51 (current_club VARCHAR, apps VARCHAR, debut_year VARCHAR) ### Question: What is the current club with more than 368 apps and a debut year earlier than 1994? ### Answer: SELECT current_club FROM table_name_51 WHERE apps > 368 AND debut_year < 1994 |
What is the all-time rank associated with a rank less than 9 and a debut in 1994? | CREATE TABLE table_name_55 (time VARCHAR, rank VARCHAR, debut_year VARCHAR) | SELECT -time AS rank FROM table_name_55 WHERE rank < 9 AND debut_year = 1994 | ### Context: CREATE TABLE table_name_55 (time VARCHAR, rank VARCHAR, debut_year VARCHAR) ### Question: What is the all-time rank associated with a rank less than 9 and a debut in 1994? ### Answer: SELECT -time AS rank FROM table_name_55 WHERE rank < 9 AND debut_year = 1994 |
Which tournament was played on clay and there was a score of 4–6, 6–1, 6–4? | CREATE TABLE table_name_52 (tournament VARCHAR, surface VARCHAR, score VARCHAR) | SELECT tournament FROM table_name_52 WHERE surface = "clay" AND score = "4–6, 6–1, 6–4" | ### Context: CREATE TABLE table_name_52 (tournament VARCHAR, surface VARCHAR, score VARCHAR) ### Question: Which tournament was played on clay and there was a score of 4–6, 6–1, 6–4? ### Answer: SELECT tournament FROM table_name_52 WHERE surface = "clay" AND score = "4–6, 6–1, 6–4" |
What is the score for the match where albert montañés was the partner? | CREATE TABLE table_name_60 (score VARCHAR, partner VARCHAR) | SELECT score FROM table_name_60 WHERE partner = "albert montañés" | ### Context: CREATE TABLE table_name_60 (score VARCHAR, partner VARCHAR) ### Question: What is the score for the match where albert montañés was the partner? ### Answer: SELECT score FROM table_name_60 WHERE partner = "albert montañés" |
What is the score for the match where the opponent in the final was james cerretani todd perry? | CREATE TABLE table_name_5 (score VARCHAR, opponents_in_the_final VARCHAR) | SELECT score FROM table_name_5 WHERE opponents_in_the_final = "james cerretani todd perry" | ### Context: CREATE TABLE table_name_5 (score VARCHAR, opponents_in_the_final VARCHAR) ### Question: What is the score for the match where the opponent in the final was james cerretani todd perry? ### Answer: SELECT score FROM table_name_5 WHERE opponents_in_the_final = "james cerretani todd perry" |
What is the date when the opponent in the final is gastón etlis martín rodríguez? | CREATE TABLE table_name_22 (date VARCHAR, opponents_in_the_final VARCHAR) | SELECT date FROM table_name_22 WHERE opponents_in_the_final = "gastón etlis martín rodríguez" | ### Context: CREATE TABLE table_name_22 (date VARCHAR, opponents_in_the_final VARCHAR) ### Question: What is the date when the opponent in the final is gastón etlis martín rodríguez? ### Answer: SELECT date FROM table_name_22 WHERE opponents_in_the_final = "gastón etlis martín rodríguez" |
What was the score for the match were the opponent in the final was james cerretani todd perry? | CREATE TABLE table_name_95 (score VARCHAR, opponents_in_the_final VARCHAR) | SELECT score FROM table_name_95 WHERE opponents_in_the_final = "james cerretani todd perry" | ### Context: CREATE TABLE table_name_95 (score VARCHAR, opponents_in_the_final VARCHAR) ### Question: What was the score for the match were the opponent in the final was james cerretani todd perry? ### Answer: SELECT score FROM table_name_95 WHERE opponents_in_the_final = "james cerretani todd perry" |
Who is Birmingham City's outgoing manager? | CREATE TABLE table_name_12 (outgoing_manager VARCHAR, team VARCHAR) | SELECT outgoing_manager FROM table_name_12 WHERE team = "birmingham city" | ### Context: CREATE TABLE table_name_12 (outgoing_manager VARCHAR, team VARCHAR) ### Question: Who is Birmingham City's outgoing manager? ### Answer: SELECT outgoing_manager FROM table_name_12 WHERE team = "birmingham city" |
What is the name of the replacement manager for the Bolton Wanderers? | CREATE TABLE table_name_2 (replaced_by VARCHAR, team VARCHAR) | SELECT replaced_by FROM table_name_2 WHERE team = "bolton wanderers" | ### Context: CREATE TABLE table_name_2 (replaced_by VARCHAR, team VARCHAR) ### Question: What is the name of the replacement manager for the Bolton Wanderers? ### Answer: SELECT replaced_by FROM table_name_2 WHERE team = "bolton wanderers" |
How was Sammy Lee's team doing on the table before being replaced? | CREATE TABLE table_name_49 (position_in_table VARCHAR, outgoing_manager VARCHAR) | SELECT position_in_table FROM table_name_49 WHERE outgoing_manager = "sammy lee" | ### Context: CREATE TABLE table_name_49 (position_in_table VARCHAR, outgoing_manager VARCHAR) ### Question: How was Sammy Lee's team doing on the table before being replaced? ### Answer: SELECT position_in_table FROM table_name_49 WHERE outgoing_manager = "sammy lee" |
Which team hired Gary Megson as the replacement manager? | CREATE TABLE table_name_63 (team VARCHAR, replaced_by VARCHAR) | SELECT team FROM table_name_63 WHERE replaced_by = "gary megson" | ### Context: CREATE TABLE table_name_63 (team VARCHAR, replaced_by VARCHAR) ### Question: Which team hired Gary Megson as the replacement manager? ### Answer: SELECT team FROM table_name_63 WHERE replaced_by = "gary megson" |
What was the date of the match played at MCG? | CREATE TABLE table_name_86 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_86 WHERE venue = "mcg" | ### Context: CREATE TABLE table_name_86 (date VARCHAR, venue VARCHAR) ### Question: What was the date of the match played at MCG? ### Answer: SELECT date FROM table_name_86 WHERE venue = "mcg" |
What was Carlton's score as the home team? | CREATE TABLE table_name_65 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_65 WHERE home_team = "carlton" | ### Context: CREATE TABLE table_name_65 (home_team VARCHAR) ### Question: What was Carlton's score as the home team? ### Answer: SELECT home_team AS score FROM table_name_65 WHERE home_team = "carlton" |
What home team plays at Princes Park? | CREATE TABLE table_name_62 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_62 WHERE venue = "princes park" | ### Context: CREATE TABLE table_name_62 (home_team VARCHAR, venue VARCHAR) ### Question: What home team plays at Princes Park? ### Answer: SELECT home_team FROM table_name_62 WHERE venue = "princes park" |
WHAT WAS COLLINGWOOD'S LOWEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM? | CREATE TABLE table_name_21 (crowd INTEGER, away_team VARCHAR) | SELECT MIN(crowd) FROM table_name_21 WHERE away_team = "collingwood" | ### Context: CREATE TABLE table_name_21 (crowd INTEGER, away_team VARCHAR) ### Question: WHAT WAS COLLINGWOOD'S LOWEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM? ### Answer: SELECT MIN(crowd) FROM table_name_21 WHERE away_team = "collingwood" |
WHAT WAS ESSENDON'S HIGHEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM? | CREATE TABLE table_name_85 (crowd INTEGER, away_team VARCHAR) | SELECT MAX(crowd) FROM table_name_85 WHERE away_team = "essendon" | ### Context: CREATE TABLE table_name_85 (crowd INTEGER, away_team VARCHAR) ### Question: WHAT WAS ESSENDON'S HIGHEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM? ### Answer: SELECT MAX(crowd) FROM table_name_85 WHERE away_team = "essendon" |
WHAT DID HAWTHORN SCORE AT ITS AWAY GAME? | CREATE TABLE table_name_50 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_50 WHERE away_team = "hawthorn" | ### Context: CREATE TABLE table_name_50 (away_team VARCHAR) ### Question: WHAT DID HAWTHORN SCORE AT ITS AWAY GAME? ### Answer: SELECT away_team AS score FROM table_name_50 WHERE away_team = "hawthorn" |
Who was the opponent on November 26, 1989? | CREATE TABLE table_name_86 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_86 WHERE date = "november 26, 1989" | ### Context: CREATE TABLE table_name_86 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on November 26, 1989? ### Answer: SELECT opponent FROM table_name_86 WHERE date = "november 26, 1989" |
What was the result on October 29, 1989? | CREATE TABLE table_name_41 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_41 WHERE date = "october 29, 1989" | ### Context: CREATE TABLE table_name_41 (result VARCHAR, date VARCHAR) ### Question: What was the result on October 29, 1989? ### Answer: SELECT result FROM table_name_41 WHERE date = "october 29, 1989" |
What was the result on October 1, 1989? | CREATE TABLE table_name_15 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_15 WHERE date = "october 1, 1989" | ### Context: CREATE TABLE table_name_15 (result VARCHAR, date VARCHAR) ### Question: What was the result on October 1, 1989? ### Answer: SELECT result FROM table_name_15 WHERE date = "october 1, 1989" |
What is the highest number of losses that a team who had an away record of 1-6 and more than 4 wins had? | CREATE TABLE table_name_6 (losses INTEGER, away VARCHAR, wins VARCHAR) | SELECT MAX(losses) FROM table_name_6 WHERE away = "1-6" AND wins > 4 | ### Context: CREATE TABLE table_name_6 (losses INTEGER, away VARCHAR, wins VARCHAR) ### Question: What is the highest number of losses that a team who had an away record of 1-6 and more than 4 wins had? ### Answer: SELECT MAX(losses) FROM table_name_6 WHERE away = "1-6" AND wins > 4 |
What is the home team's score at corio oval? | CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_66 WHERE venue = "corio oval" | ### Context: CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR) ### Question: What is the home team's score at corio oval? ### Answer: SELECT home_team AS score FROM table_name_66 WHERE venue = "corio oval" |
What network is in the language of Bengali? | CREATE TABLE table_name_88 (service VARCHAR, language VARCHAR) | SELECT service FROM table_name_88 WHERE language = "bengali" | ### Context: CREATE TABLE table_name_88 (service VARCHAR, language VARCHAR) ### Question: What network is in the language of Bengali? ### Answer: SELECT service FROM table_name_88 WHERE language = "bengali" |
What network has an origin in India, a genre of general, and broadcasts in Bengali? | CREATE TABLE table_name_20 (network VARCHAR, language VARCHAR, origin_of_programming VARCHAR, genre VARCHAR) | SELECT network FROM table_name_20 WHERE origin_of_programming = "india" AND genre = "general" AND language = "bengali" | ### Context: CREATE TABLE table_name_20 (network VARCHAR, language VARCHAR, origin_of_programming VARCHAR, genre VARCHAR) ### Question: What network has an origin in India, a genre of general, and broadcasts in Bengali? ### Answer: SELECT network FROM table_name_20 WHERE origin_of_programming = "india" AND genre = "general" AND language = "bengali" |
What language does the Ary Digital network broadcast in? | CREATE TABLE table_name_98 (language VARCHAR, network VARCHAR) | SELECT language FROM table_name_98 WHERE network = "ary digital" | ### Context: CREATE TABLE table_name_98 (language VARCHAR, network VARCHAR) ### Question: What language does the Ary Digital network broadcast in? ### Answer: SELECT language FROM table_name_98 WHERE network = "ary digital" |
What is the average crowd for Carlton? | CREATE TABLE table_name_59 (crowd INTEGER, away_team VARCHAR) | SELECT AVG(crowd) FROM table_name_59 WHERE away_team = "carlton" | ### Context: CREATE TABLE table_name_59 (crowd INTEGER, away_team VARCHAR) ### Question: What is the average crowd for Carlton? ### Answer: SELECT AVG(crowd) FROM table_name_59 WHERE away_team = "carlton" |
How many points did Carlton score? | CREATE TABLE table_name_41 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_41 WHERE away_team = "carlton" | ### Context: CREATE TABLE table_name_41 (home_team VARCHAR, away_team VARCHAR) ### Question: How many points did Carlton score? ### Answer: SELECT home_team AS score FROM table_name_41 WHERE away_team = "carlton" |
What was the largest crowd for North Melbourne | CREATE TABLE table_name_98 (crowd INTEGER, home_team VARCHAR) | SELECT MAX(crowd) FROM table_name_98 WHERE home_team = "north melbourne" | ### Context: CREATE TABLE table_name_98 (crowd INTEGER, home_team VARCHAR) ### Question: What was the largest crowd for North Melbourne ### Answer: SELECT MAX(crowd) FROM table_name_98 WHERE home_team = "north melbourne" |
What is the score for Footscray? | CREATE TABLE table_name_6 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_6 WHERE away_team = "footscray" | ### Context: CREATE TABLE table_name_6 (away_team VARCHAR) ### Question: What is the score for Footscray? ### Answer: SELECT away_team AS score FROM table_name_6 WHERE away_team = "footscray" |
What is the result of week 5? | CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_33 WHERE week = 5 | ### Context: CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR) ### Question: What is the result of week 5? ### Answer: SELECT result FROM table_name_33 WHERE week = 5 |
What is the name of the gun with a shoulder that measures 10.688 (.420)? | CREATE TABLE table_name_45 (name VARCHAR, shoulder VARCHAR) | SELECT name FROM table_name_45 WHERE shoulder = "10.688 (.420)" | ### Context: CREATE TABLE table_name_45 (name VARCHAR, shoulder VARCHAR) ### Question: What is the name of the gun with a shoulder that measures 10.688 (.420)? ### Answer: SELECT name FROM table_name_45 WHERE shoulder = "10.688 (.420)" |
What is the shoulder measurement of the gun with a length of 57.85 (2.278)? | CREATE TABLE table_name_36 (shoulder VARCHAR, length VARCHAR) | SELECT shoulder FROM table_name_36 WHERE length = "57.85 (2.278)" | ### Context: CREATE TABLE table_name_36 (shoulder VARCHAR, length VARCHAR) ### Question: What is the shoulder measurement of the gun with a length of 57.85 (2.278)? ### Answer: SELECT shoulder FROM table_name_36 WHERE length = "57.85 (2.278)" |
What is the neck measurement of the gun with a shoulder measurement of 10.688 (.420)? | CREATE TABLE table_name_16 (neck VARCHAR, shoulder VARCHAR) | SELECT neck FROM table_name_16 WHERE shoulder = "10.688 (.420)" | ### Context: CREATE TABLE table_name_16 (neck VARCHAR, shoulder VARCHAR) ### Question: What is the neck measurement of the gun with a shoulder measurement of 10.688 (.420)? ### Answer: SELECT neck FROM table_name_16 WHERE shoulder = "10.688 (.420)" |
What is the length of the gun that has a shoulder measurement of 12.18 (.480)? | CREATE TABLE table_name_35 (length VARCHAR, shoulder VARCHAR) | SELECT length FROM table_name_35 WHERE shoulder = "12.18 (.480)" | ### Context: CREATE TABLE table_name_35 (length VARCHAR, shoulder VARCHAR) ### Question: What is the length of the gun that has a shoulder measurement of 12.18 (.480)? ### Answer: SELECT length FROM table_name_35 WHERE shoulder = "12.18 (.480)" |
What bullet does the gun with a shoulder measurement of 12.5 (.491)? | CREATE TABLE table_name_51 (bullet VARCHAR, shoulder VARCHAR) | SELECT bullet FROM table_name_51 WHERE shoulder = "12.5 (.491)" | ### Context: CREATE TABLE table_name_51 (bullet VARCHAR, shoulder VARCHAR) ### Question: What bullet does the gun with a shoulder measurement of 12.5 (.491)? ### Answer: SELECT bullet FROM table_name_51 WHERE shoulder = "12.5 (.491)" |
What was the attendance for the game held on September 18, 1994, with a week less than 5? | CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_25 WHERE week < 5 AND date = "september 18, 1994" | ### Context: CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR, date VARCHAR) ### Question: What was the attendance for the game held on September 18, 1994, with a week less than 5? ### Answer: SELECT attendance FROM table_name_25 WHERE week < 5 AND date = "september 18, 1994" |
What was the average attendance when the opponent was at Philadelphia Eagles and the week was later than week 6? | CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR, opponent VARCHAR) | SELECT AVG(attendance) FROM table_name_34 WHERE week > 6 AND opponent = "at philadelphia eagles" | ### Context: CREATE TABLE table_name_34 (attendance INTEGER, week VARCHAR, opponent VARCHAR) ### Question: What was the average attendance when the opponent was at Philadelphia Eagles and the week was later than week 6? ### Answer: SELECT AVG(attendance) FROM table_name_34 WHERE week > 6 AND opponent = "at philadelphia eagles" |
What was the attendance for the game on October 30, 1994 for a week after week 2? | CREATE TABLE table_name_54 (attendance VARCHAR, week VARCHAR, date VARCHAR) | SELECT COUNT(attendance) FROM table_name_54 WHERE week > 2 AND date = "october 30, 1994" | ### Context: CREATE TABLE table_name_54 (attendance VARCHAR, week VARCHAR, date VARCHAR) ### Question: What was the attendance for the game on October 30, 1994 for a week after week 2? ### Answer: SELECT COUNT(attendance) FROM table_name_54 WHERE week > 2 AND date = "october 30, 1994" |
What is the title of the episode that aired on September 25, 2005? | CREATE TABLE table_name_23 (title VARCHAR, podcast_date VARCHAR) | SELECT title FROM table_name_23 WHERE podcast_date = "september 25, 2005" | ### Context: CREATE TABLE table_name_23 (title VARCHAR, podcast_date VARCHAR) ### Question: What is the title of the episode that aired on September 25, 2005? ### Answer: SELECT title FROM table_name_23 WHERE podcast_date = "september 25, 2005" |
What is the run time of the episode that aired on September 4, 2005? | CREATE TABLE table_name_66 (run_time VARCHAR, podcast_date VARCHAR) | SELECT run_time FROM table_name_66 WHERE podcast_date = "september 4, 2005" | ### Context: CREATE TABLE table_name_66 (run_time VARCHAR, podcast_date VARCHAR) ### Question: What is the run time of the episode that aired on September 4, 2005? ### Answer: SELECT run_time FROM table_name_66 WHERE podcast_date = "september 4, 2005" |
What is the historical reference of the episode that aired on October 23, 2005? | CREATE TABLE table_name_38 (historical_references VARCHAR, podcast_date VARCHAR) | SELECT historical_references FROM table_name_38 WHERE podcast_date = "october 23, 2005" | ### Context: CREATE TABLE table_name_38 (historical_references VARCHAR, podcast_date VARCHAR) ### Question: What is the historical reference of the episode that aired on October 23, 2005? ### Answer: SELECT historical_references FROM table_name_38 WHERE podcast_date = "october 23, 2005" |
What is the date of the episode that is before 307, run time equals 5:48 and has P.T. Barnum as the topic? | CREATE TABLE table_name_92 (podcast_date VARCHAR, run_time VARCHAR, episode_number VARCHAR, historical_references VARCHAR) | SELECT podcast_date FROM table_name_92 WHERE episode_number < 307 AND historical_references = "p.t. barnum" AND run_time = "5:48" | ### Context: CREATE TABLE table_name_92 (podcast_date VARCHAR, run_time VARCHAR, episode_number VARCHAR, historical_references VARCHAR) ### Question: What is the date of the episode that is before 307, run time equals 5:48 and has P.T. Barnum as the topic? ### Answer: SELECT podcast_date FROM table_name_92 WHERE episode_number < 307 AND historical_references = "p.t. barnum" AND run_time = "5:48" |
What is the topic of the episode that runs 6:07? | CREATE TABLE table_name_7 (historical_references VARCHAR, run_time VARCHAR) | SELECT historical_references FROM table_name_7 WHERE run_time = "6:07" | ### Context: CREATE TABLE table_name_7 (historical_references VARCHAR, run_time VARCHAR) ### Question: What is the topic of the episode that runs 6:07? ### Answer: SELECT historical_references FROM table_name_7 WHERE run_time = "6:07" |
What is the episode number of the episode that aired on August 8, 2005? | CREATE TABLE table_name_17 (episode_number VARCHAR, podcast_date VARCHAR) | SELECT episode_number FROM table_name_17 WHERE podcast_date = "august 8, 2005" | ### Context: CREATE TABLE table_name_17 (episode_number VARCHAR, podcast_date VARCHAR) ### Question: What is the episode number of the episode that aired on August 8, 2005? ### Answer: SELECT episode_number FROM table_name_17 WHERE podcast_date = "august 8, 2005" |
What day is south melbourne the away side? | CREATE TABLE table_name_21 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_21 WHERE away_team = "south melbourne" | ### Context: CREATE TABLE table_name_21 (date VARCHAR, away_team VARCHAR) ### Question: What day is south melbourne the away side? ### Answer: SELECT date FROM table_name_21 WHERE away_team = "south melbourne" |
Did the fighter beat Ryo Takigawa? | CREATE TABLE table_name_62 (res VARCHAR, opponent VARCHAR) | SELECT res FROM table_name_62 WHERE opponent = "ryo takigawa" | ### Context: CREATE TABLE table_name_62 (res VARCHAR, opponent VARCHAR) ### Question: Did the fighter beat Ryo Takigawa? ### Answer: SELECT res FROM table_name_62 WHERE opponent = "ryo takigawa" |
What is the incident number of the incident that occurred in Dantewada, Chattisgarh? | CREATE TABLE table_name_8 (incident_no VARCHAR, place VARCHAR) | SELECT incident_no FROM table_name_8 WHERE place = "dantewada, chattisgarh" | ### Context: CREATE TABLE table_name_8 (incident_no VARCHAR, place VARCHAR) ### Question: What is the incident number of the incident that occurred in Dantewada, Chattisgarh? ### Answer: SELECT incident_no FROM table_name_8 WHERE place = "dantewada, chattisgarh" |
WHich province has an IATA of UYN? | CREATE TABLE table_name_12 (province VARCHAR, iata VARCHAR) | SELECT province FROM table_name_12 WHERE iata = "uyn" | ### Context: CREATE TABLE table_name_12 (province VARCHAR, iata VARCHAR) ### Question: WHich province has an IATA of UYN? ### Answer: SELECT province FROM table_name_12 WHERE iata = "uyn" |
Which city has an ICAO of ZSXZ? | CREATE TABLE table_name_61 (city VARCHAR, icao VARCHAR) | SELECT city FROM table_name_61 WHERE icao = "zsxz" | ### Context: CREATE TABLE table_name_61 (city VARCHAR, icao VARCHAR) ### Question: Which city has an ICAO of ZSXZ? ### Answer: SELECT city FROM table_name_61 WHERE icao = "zsxz" |
Which province is Luogang International Airport located in? | CREATE TABLE table_name_63 (province VARCHAR, airport VARCHAR) | SELECT province FROM table_name_63 WHERE airport = "luogang international airport" | ### Context: CREATE TABLE table_name_63 (province VARCHAR, airport VARCHAR) ### Question: Which province is Luogang International Airport located in? ### Answer: SELECT province FROM table_name_63 WHERE airport = "luogang international airport" |
WHich province has an IATA of WNZ? | CREATE TABLE table_name_7 (province VARCHAR, iata VARCHAR) | SELECT province FROM table_name_7 WHERE iata = "wnz" | ### Context: CREATE TABLE table_name_7 (province VARCHAR, iata VARCHAR) ### Question: WHich province has an IATA of WNZ? ### Answer: SELECT province FROM table_name_7 WHERE iata = "wnz" |
What is the IATA for Korla Airport. | CREATE TABLE table_name_33 (iata VARCHAR, airport VARCHAR) | SELECT iata FROM table_name_33 WHERE airport = "korla airport" | ### Context: CREATE TABLE table_name_33 (iata VARCHAR, airport VARCHAR) ### Question: What is the IATA for Korla Airport. ### Answer: SELECT iata FROM table_name_33 WHERE airport = "korla airport" |
In what division did they place 4th? | CREATE TABLE table_name_27 (division VARCHAR, position VARCHAR) | SELECT division FROM table_name_27 WHERE position = "4th" | ### Context: CREATE TABLE table_name_27 (division VARCHAR, position VARCHAR) ### Question: In what division did they place 4th? ### Answer: SELECT division FROM table_name_27 WHERE position = "4th" |
What was the top scorer in the 1890-91 season? | CREATE TABLE table_name_31 (top_scorer VARCHAR, season VARCHAR) | SELECT top_scorer FROM table_name_31 WHERE season = "1890-91" | ### Context: CREATE TABLE table_name_31 (top_scorer VARCHAR, season VARCHAR) ### Question: What was the top scorer in the 1890-91 season? ### Answer: SELECT top_scorer FROM table_name_31 WHERE season = "1890-91" |
Which position has a player at Arizona state? | CREATE TABLE table_name_95 (position VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_name_95 WHERE school_club_team = "arizona state" | ### Context: CREATE TABLE table_name_95 (position VARCHAR, school_club_team VARCHAR) ### Question: Which position has a player at Arizona state? ### Answer: SELECT position FROM table_name_95 WHERE school_club_team = "arizona state" |
Which school/club has a pick smaller than 196, a round higher than 5 and has Blake Miller? | CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR, pick VARCHAR, round VARCHAR) | SELECT school_club_team FROM table_name_25 WHERE pick < 196 AND round > 5 AND player = "blake miller" | ### Context: CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR, pick VARCHAR, round VARCHAR) ### Question: Which school/club has a pick smaller than 196, a round higher than 5 and has Blake Miller? ### Answer: SELECT school_club_team FROM table_name_25 WHERE pick < 196 AND round > 5 AND player = "blake miller" |
What is the average round at which is the position of Tight End and Randy Bethel? | CREATE TABLE table_name_56 (round INTEGER, position VARCHAR, player VARCHAR) | SELECT AVG(round) FROM table_name_56 WHERE position = "tight end" AND player = "randy bethel" | ### Context: CREATE TABLE table_name_56 (round INTEGER, position VARCHAR, player VARCHAR) ### Question: What is the average round at which is the position of Tight End and Randy Bethel? ### Answer: SELECT AVG(round) FROM table_name_56 WHERE position = "tight end" AND player = "randy bethel" |
What day did they play the New Orleans Saints? | CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_35 WHERE opponent = "new orleans saints" | ### Context: CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR) ### Question: What day did they play the New Orleans Saints? ### Answer: SELECT date FROM table_name_35 WHERE opponent = "new orleans saints" |
What was coach Dick Bennett's overall win percentage? | CREATE TABLE table_name_5 (overall_win_percentage VARCHAR, coach VARCHAR) | SELECT overall_win_percentage FROM table_name_5 WHERE coach = "dick bennett" | ### Context: CREATE TABLE table_name_5 (overall_win_percentage VARCHAR, coach VARCHAR) ### Question: What was coach Dick Bennett's overall win percentage? ### Answer: SELECT overall_win_percentage FROM table_name_5 WHERE coach = "dick bennett" |
What are the notes for the shirt that said Pavv before 2005? | CREATE TABLE table_name_57 (notes VARCHAR, shirt_printing VARCHAR, year VARCHAR) | SELECT notes FROM table_name_57 WHERE shirt_printing = "pavv" AND year < 2005 | ### Context: CREATE TABLE table_name_57 (notes VARCHAR, shirt_printing VARCHAR, year VARCHAR) ### Question: What are the notes for the shirt that said Pavv before 2005? ### Answer: SELECT notes FROM table_name_57 WHERE shirt_printing = "pavv" AND year < 2005 |
What are the notes for the shirt that said Pavv after 2007? | CREATE TABLE table_name_31 (notes VARCHAR, shirt_printing VARCHAR, year VARCHAR) | SELECT notes FROM table_name_31 WHERE shirt_printing = "pavv" AND year > 2007 | ### Context: CREATE TABLE table_name_31 (notes VARCHAR, shirt_printing VARCHAR, year VARCHAR) ### Question: What are the notes for the shirt that said Pavv after 2007? ### Answer: SELECT notes FROM table_name_31 WHERE shirt_printing = "pavv" AND year > 2007 |
What is the average of all the years when the notes are “electronics brand?” | CREATE TABLE table_name_36 (year INTEGER, notes VARCHAR) | SELECT AVG(year) FROM table_name_36 WHERE notes = "electronics brand" | ### Context: CREATE TABLE table_name_36 (year INTEGER, notes VARCHAR) ### Question: What is the average of all the years when the notes are “electronics brand?” ### Answer: SELECT AVG(year) FROM table_name_36 WHERE notes = "electronics brand" |
What are the notes for the shirt that says 名品+1 in the kit supplied by Rapido? | CREATE TABLE table_name_85 (notes VARCHAR, kit_supplier VARCHAR, shirt_printing VARCHAR) | SELECT notes FROM table_name_85 WHERE kit_supplier = "rapido" AND shirt_printing = "名品+1" | ### Context: CREATE TABLE table_name_85 (notes VARCHAR, kit_supplier VARCHAR, shirt_printing VARCHAR) ### Question: What are the notes for the shirt that says 名品+1 in the kit supplied by Rapido? ### Answer: SELECT notes FROM table_name_85 WHERE kit_supplier = "rapido" AND shirt_printing = "名品+1" |
What is the largest crowd at Lake Oval? | CREATE TABLE table_name_52 (crowd INTEGER, venue VARCHAR) | SELECT MAX(crowd) FROM table_name_52 WHERE venue = "lake oval" | ### Context: CREATE TABLE table_name_52 (crowd INTEGER, venue VARCHAR) ### Question: What is the largest crowd at Lake Oval? ### Answer: SELECT MAX(crowd) FROM table_name_52 WHERE venue = "lake oval" |
What was the home team for the game with more than 25,000 crowd? | CREATE TABLE table_name_70 (home_team VARCHAR, crowd INTEGER) | SELECT home_team FROM table_name_70 WHERE crowd > 25 OFFSET 000 | ### Context: CREATE TABLE table_name_70 (home_team VARCHAR, crowd INTEGER) ### Question: What was the home team for the game with more than 25,000 crowd? ### Answer: SELECT home_team FROM table_name_70 WHERE crowd > 25 OFFSET 000 |
What was the score for Footscray when they were the away team? | CREATE TABLE table_name_66 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_66 WHERE away_team = "footscray" | ### Context: CREATE TABLE table_name_66 (away_team VARCHAR) ### Question: What was the score for Footscray when they were the away team? ### Answer: SELECT away_team AS score FROM table_name_66 WHERE away_team = "footscray" |
What is the result from March 14, 2007? | CREATE TABLE table_name_26 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_26 WHERE date = "march 14, 2007" | ### Context: CREATE TABLE table_name_26 (result VARCHAR, date VARCHAR) ### Question: What is the result from March 14, 2007? ### Answer: SELECT result FROM table_name_26 WHERE date = "march 14, 2007" |
How many goals have a result of 0-1 on march 28, 2007? | CREATE TABLE table_name_48 (goals VARCHAR, result VARCHAR, date VARCHAR) | SELECT COUNT(goals) FROM table_name_48 WHERE result = "0-1" AND date = "march 28, 2007" | ### Context: CREATE TABLE table_name_48 (goals VARCHAR, result VARCHAR, date VARCHAR) ### Question: How many goals have a result of 0-1 on march 28, 2007? ### Answer: SELECT COUNT(goals) FROM table_name_48 WHERE result = "0-1" AND date = "march 28, 2007" |
What venue has a Result of 3-0? | CREATE TABLE table_name_73 (venue VARCHAR, result VARCHAR) | SELECT venue FROM table_name_73 WHERE result = "3-0" | ### Context: CREATE TABLE table_name_73 (venue VARCHAR, result VARCHAR) ### Question: What venue has a Result of 3-0? ### Answer: SELECT venue FROM table_name_73 WHERE result = "3-0" |
What was Collingwood's score as the home team? | CREATE TABLE table_name_54 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_54 WHERE home_team = "collingwood" | ### Context: CREATE TABLE table_name_54 (home_team VARCHAR) ### Question: What was Collingwood's score as the home team? ### Answer: SELECT home_team AS score FROM table_name_54 WHERE home_team = "collingwood" |
What venue features carlton as the home side? | CREATE TABLE table_name_40 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_40 WHERE home_team = "carlton" | ### Context: CREATE TABLE table_name_40 (venue VARCHAR, home_team VARCHAR) ### Question: What venue features carlton as the home side? ### Answer: SELECT venue FROM table_name_40 WHERE home_team = "carlton" |
What day is collingwood the home side? | CREATE TABLE table_name_79 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_79 WHERE home_team = "collingwood" | ### Context: CREATE TABLE table_name_79 (date VARCHAR, home_team VARCHAR) ### Question: What day is collingwood the home side? ### Answer: SELECT date FROM table_name_79 WHERE home_team = "collingwood" |
The event that has a record of 1-0 is none of the above. | CREATE TABLE table_name_71 (event VARCHAR, record VARCHAR) | SELECT event FROM table_name_71 WHERE record = "1-0" | ### Context: CREATE TABLE table_name_71 (event VARCHAR, record VARCHAR) ### Question: The event that has a record of 1-0 is none of the above. ### Answer: SELECT event FROM table_name_71 WHERE record = "1-0" |
What year was Leon Blevins picked? | CREATE TABLE table_name_81 (year INTEGER, name VARCHAR) | SELECT SUM(year) FROM table_name_81 WHERE name = "leon blevins" | ### Context: CREATE TABLE table_name_81 (year INTEGER, name VARCHAR) ### Question: What year was Leon Blevins picked? ### Answer: SELECT SUM(year) FROM table_name_81 WHERE name = "leon blevins" |
What year was Jordan Hill picked overall number 8? | CREATE TABLE table_name_70 (year INTEGER, overall_pick VARCHAR, name VARCHAR) | SELECT MIN(year) FROM table_name_70 WHERE overall_pick = "8" AND name = "jordan hill" | ### Context: CREATE TABLE table_name_70 (year INTEGER, overall_pick VARCHAR, name VARCHAR) ### Question: What year was Jordan Hill picked overall number 8? ### Answer: SELECT MIN(year) FROM table_name_70 WHERE overall_pick = "8" AND name = "jordan hill" |
In 1981 which team picked overall 148? | CREATE TABLE table_name_8 (team VARCHAR, year VARCHAR, overall_pick VARCHAR) | SELECT team FROM table_name_8 WHERE year = 1981 AND overall_pick = "148" | ### Context: CREATE TABLE table_name_8 (team VARCHAR, year VARCHAR, overall_pick VARCHAR) ### Question: In 1981 which team picked overall 148? ### Answer: SELECT team FROM table_name_8 WHERE year = 1981 AND overall_pick = "148" |
How many people attended the game on December 2, 1951? | CREATE TABLE table_name_69 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_69 WHERE date = "december 2, 1951" | ### Context: CREATE TABLE table_name_69 (attendance VARCHAR, date VARCHAR) ### Question: How many people attended the game on December 2, 1951? ### Answer: SELECT attendance FROM table_name_69 WHERE date = "december 2, 1951" |
What venue does st kilda play at as the away team? | CREATE TABLE table_name_30 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_30 WHERE away_team = "st kilda" | ### Context: CREATE TABLE table_name_30 (venue VARCHAR, away_team VARCHAR) ### Question: What venue does st kilda play at as the away team? ### Answer: SELECT venue FROM table_name_30 WHERE away_team = "st kilda" |
What is melbourne's home team score? | CREATE TABLE table_name_97 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_97 WHERE home_team = "melbourne" | ### Context: CREATE TABLE table_name_97 (home_team VARCHAR) ### Question: What is melbourne's home team score? ### Answer: SELECT home_team AS score FROM table_name_97 WHERE home_team = "melbourne" |
How many games is collingwood the home side? | CREATE TABLE table_name_4 (crowd VARCHAR, home_team VARCHAR) | SELECT COUNT(crowd) FROM table_name_4 WHERE home_team = "collingwood" | ### Context: CREATE TABLE table_name_4 (crowd VARCHAR, home_team VARCHAR) ### Question: How many games is collingwood the home side? ### Answer: SELECT COUNT(crowd) FROM table_name_4 WHERE home_team = "collingwood" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.