question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
what team had a score of 2-1 | CREATE TABLE table_name_92 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_92 WHERE score = "2-1" | ### Context: CREATE TABLE table_name_92 (opponent VARCHAR, score VARCHAR) ### Question: what team had a score of 2-1 ### Answer: SELECT opponent FROM table_name_92 WHERE score = "2-1" |
what team played on may 11 | CREATE TABLE table_name_1 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_1 WHERE date = "may 11" | ### Context: CREATE TABLE table_name_1 (opponent VARCHAR, date VARCHAR) ### Question: what team played on may 11 ### Answer: SELECT opponent FROM table_name_1 WHERE date = "may 11" |
what place has the club of sevilla | CREATE TABLE table_name_76 (away VARCHAR, club VARCHAR) | SELECT away FROM table_name_76 WHERE club = "sevilla" | ### Context: CREATE TABLE table_name_76 (away VARCHAR, club VARCHAR) ### Question: what place has the club of sevilla ### Answer: SELECT away FROM table_name_76 WHERE club = "sevilla" |
Which new conference is located in Greentown? | CREATE TABLE table_name_64 (new_conference VARCHAR, location VARCHAR) | SELECT new_conference FROM table_name_64 WHERE location = "greentown" | ### Context: CREATE TABLE table_name_64 (new_conference VARCHAR, location VARCHAR) ### Question: Which new conference is located in Greentown? ### Answer: SELECT new_conference FROM table_name_64 WHERE location = "greentown" |
What is the most current year with a previous conference of Mid-Indiana in Converse? | CREATE TABLE table_name_35 (year_joined INTEGER, previous_conference VARCHAR, location VARCHAR) | SELECT MAX(year_joined) FROM table_name_35 WHERE previous_conference = "mid-indiana" AND location = "converse" | ### Context: CREATE TABLE table_name_35 (year_joined INTEGER, previous_conference VARCHAR, location VARCHAR) ### Question: What is the most current year with a previous conference of Mid-Indiana in Converse? ### Answer: SELECT MAX(year_joined) FROM table_name_35 WHERE previous_conference = "mid-indiana" AND location = "converse" |
What year did Culver leave? | CREATE TABLE table_name_71 (year_left INTEGER, location VARCHAR) | SELECT SUM(year_left) FROM table_name_71 WHERE location = "culver" | ### Context: CREATE TABLE table_name_71 (year_left INTEGER, location VARCHAR) ### Question: What year did Culver leave? ### Answer: SELECT SUM(year_left) FROM table_name_71 WHERE location = "culver" |
What is the mascot with a #/County of 34 Howard? | CREATE TABLE table_name_41 (mascot VARCHAR, _number___county VARCHAR) | SELECT mascot FROM table_name_41 WHERE _number___county = "34 howard" | ### Context: CREATE TABLE table_name_41 (mascot VARCHAR, _number___county VARCHAR) ### Question: What is the mascot with a #/County of 34 Howard? ### Answer: SELECT mascot FROM table_name_41 WHERE _number___county = "34 howard" |
What day was a friendly game held that had a score of 2:3? | CREATE TABLE table_name_87 (date VARCHAR, type_of_game VARCHAR, resultsΒΉ VARCHAR) | SELECT date FROM table_name_87 WHERE type_of_game = "friendly" AND resultsΒΉ = "2:3" | ### Context: CREATE TABLE table_name_87 (date VARCHAR, type_of_game VARCHAR, resultsΒΉ VARCHAR) ### Question: What day was a friendly game held that had a score of 2:3? ### Answer: SELECT date FROM table_name_87 WHERE type_of_game = "friendly" AND resultsΒΉ = "2:3" |
What type of game was held on December 22? | CREATE TABLE table_name_57 (type_of_game VARCHAR, date VARCHAR) | SELECT type_of_game FROM table_name_57 WHERE date = "december 22" | ### Context: CREATE TABLE table_name_57 (type_of_game VARCHAR, date VARCHAR) ### Question: What type of game was held on December 22? ### Answer: SELECT type_of_game FROM table_name_57 WHERE date = "december 22" |
what game had a doubles round in 1979 | CREATE TABLE table_name_92 (mixed_doubles VARCHAR, year VARCHAR) | SELECT mixed_doubles FROM table_name_92 WHERE year = 1979 | ### Context: CREATE TABLE table_name_92 (mixed_doubles VARCHAR, year VARCHAR) ### Question: what game had a doubles round in 1979 ### Answer: SELECT mixed_doubles FROM table_name_92 WHERE year = 1979 |
Where were less than 72 goals made and more than 40 assists made? | CREATE TABLE table_name_74 (venue VARCHAR, goals VARCHAR, assists VARCHAR) | SELECT venue FROM table_name_74 WHERE goals < 72 AND assists > 40 | ### Context: CREATE TABLE table_name_74 (venue VARCHAR, goals VARCHAR, assists VARCHAR) ### Question: Where were less than 72 goals made and more than 40 assists made? ### Answer: SELECT venue FROM table_name_74 WHERE goals < 72 AND assists > 40 |
Which opponent plays against the Pohang Steelers? | CREATE TABLE table_name_58 (name VARCHAR, opponent VARCHAR) | SELECT name FROM table_name_58 WHERE opponent = "pohang steelers" | ### Context: CREATE TABLE table_name_58 (name VARCHAR, opponent VARCHAR) ### Question: Which opponent plays against the Pohang Steelers? ### Answer: SELECT name FROM table_name_58 WHERE opponent = "pohang steelers" |
What competition had more than 40 assists? | CREATE TABLE table_name_19 (competition VARCHAR, assists INTEGER) | SELECT competition FROM table_name_19 WHERE assists > 40 | ### Context: CREATE TABLE table_name_19 (competition VARCHAR, assists INTEGER) ### Question: What competition had more than 40 assists? ### Answer: SELECT competition FROM table_name_19 WHERE assists > 40 |
What Nation Placed 122.5? | CREATE TABLE table_name_22 (nation VARCHAR, places VARCHAR) | SELECT nation FROM table_name_22 WHERE places = 122.5 | ### Context: CREATE TABLE table_name_22 (nation VARCHAR, places VARCHAR) ### Question: What Nation Placed 122.5? ### Answer: SELECT nation FROM table_name_22 WHERE places = 122.5 |
What is the Places amount of the United States Ranking 8? | CREATE TABLE table_name_71 (places INTEGER, nation VARCHAR, rank VARCHAR) | SELECT AVG(places) FROM table_name_71 WHERE nation = "united states" AND rank = 8 | ### Context: CREATE TABLE table_name_71 (places INTEGER, nation VARCHAR, rank VARCHAR) ### Question: What is the Places amount of the United States Ranking 8? ### Answer: SELECT AVG(places) FROM table_name_71 WHERE nation = "united states" AND rank = 8 |
What is the average episode number where jimmy mulville was the 4th performer? | CREATE TABLE table_name_35 (episode INTEGER, performer_4 VARCHAR) | SELECT AVG(episode) FROM table_name_35 WHERE performer_4 = "jimmy mulville" | ### Context: CREATE TABLE table_name_35 (episode INTEGER, performer_4 VARCHAR) ### Question: What is the average episode number where jimmy mulville was the 4th performer? ### Answer: SELECT AVG(episode) FROM table_name_35 WHERE performer_4 = "jimmy mulville" |
What is the total number of episodes where hugh laurie was the 3rd performer? | CREATE TABLE table_name_70 (episode VARCHAR, performer_3 VARCHAR) | SELECT COUNT(episode) FROM table_name_70 WHERE performer_3 = "hugh laurie" | ### Context: CREATE TABLE table_name_70 (episode VARCHAR, performer_3 VARCHAR) ### Question: What is the total number of episodes where hugh laurie was the 3rd performer? ### Answer: SELECT COUNT(episode) FROM table_name_70 WHERE performer_3 = "hugh laurie" |
What is the lowest episode number where john bird was the 4th performer? | CREATE TABLE table_name_48 (episode INTEGER, performer_4 VARCHAR) | SELECT MIN(episode) FROM table_name_48 WHERE performer_4 = "john bird" | ### Context: CREATE TABLE table_name_48 (episode INTEGER, performer_4 VARCHAR) ### Question: What is the lowest episode number where john bird was the 4th performer? ### Answer: SELECT MIN(episode) FROM table_name_48 WHERE performer_4 = "john bird" |
Who was the 3rd performer when Rory Bremner was the 4th performer? | CREATE TABLE table_name_11 (performer_3 VARCHAR, performer_4 VARCHAR) | SELECT performer_3 FROM table_name_11 WHERE performer_4 = "rory bremner" | ### Context: CREATE TABLE table_name_11 (performer_3 VARCHAR, performer_4 VARCHAR) ### Question: Who was the 3rd performer when Rory Bremner was the 4th performer? ### Answer: SELECT performer_3 FROM table_name_11 WHERE performer_4 = "rory bremner" |
What time did the game featuring the Detroit Lions at Three Rivers Stadium occur? | CREATE TABLE table_name_38 (time___et__ VARCHAR, location VARCHAR, opponent VARCHAR) | SELECT time___et__ FROM table_name_38 WHERE location = "three rivers stadium" AND opponent = "detroit lions" | ### Context: CREATE TABLE table_name_38 (time___et__ VARCHAR, location VARCHAR, opponent VARCHAR) ### Question: What time did the game featuring the Detroit Lions at Three Rivers Stadium occur? ### Answer: SELECT time___et__ FROM table_name_38 WHERE location = "three rivers stadium" AND opponent = "detroit lions" |
What is the highest number of successful launches associated with over 1 launch and under 0 fails? | CREATE TABLE table_name_36 (successes INTEGER, launches VARCHAR, failures VARCHAR) | SELECT MAX(successes) FROM table_name_36 WHERE launches > 1 AND failures < 0 | ### Context: CREATE TABLE table_name_36 (successes INTEGER, launches VARCHAR, failures VARCHAR) ### Question: What is the highest number of successful launches associated with over 1 launch and under 0 fails? ### Answer: SELECT MAX(successes) FROM table_name_36 WHERE launches > 1 AND failures < 0 |
What kind of locomotive is Winston Churchill? | CREATE TABLE table_name_93 (locomotive_type VARCHAR, name VARCHAR) | SELECT locomotive_type FROM table_name_93 WHERE name = "winston churchill" | ### Context: CREATE TABLE table_name_93 (locomotive_type VARCHAR, name VARCHAR) ### Question: What kind of locomotive is Winston Churchill? ### Answer: SELECT locomotive_type FROM table_name_93 WHERE name = "winston churchill" |
How many draws were there when there were points less than 23, 6 losses, and more than 21 against? | CREATE TABLE table_name_49 (drawn VARCHAR, against VARCHAR, points VARCHAR, lost VARCHAR) | SELECT COUNT(drawn) FROM table_name_49 WHERE points < 23 AND lost = 6 AND against > 21 | ### Context: CREATE TABLE table_name_49 (drawn VARCHAR, against VARCHAR, points VARCHAR, lost VARCHAR) ### Question: How many draws were there when there were points less than 23, 6 losses, and more than 21 against? ### Answer: SELECT COUNT(drawn) FROM table_name_49 WHERE points < 23 AND lost = 6 AND against > 21 |
What is the smallest amount of draws when the position is less than 7 and the against is 19? | CREATE TABLE table_name_38 (drawn INTEGER, position VARCHAR, against VARCHAR) | SELECT MIN(drawn) FROM table_name_38 WHERE position < 7 AND against = 19 | ### Context: CREATE TABLE table_name_38 (drawn INTEGER, position VARCHAR, against VARCHAR) ### Question: What is the smallest amount of draws when the position is less than 7 and the against is 19? ### Answer: SELECT MIN(drawn) FROM table_name_38 WHERE position < 7 AND against = 19 |
What is the highest amount of plays for fluminense? | CREATE TABLE table_name_97 (played INTEGER, team VARCHAR) | SELECT MAX(played) FROM table_name_97 WHERE team = "fluminense" | ### Context: CREATE TABLE table_name_97 (played INTEGER, team VARCHAR) ### Question: What is the highest amount of plays for fluminense? ### Answer: SELECT MAX(played) FROM table_name_97 WHERE team = "fluminense" |
What is the least amount of points when there were less than 4 losses and less than 16 against? | CREATE TABLE table_name_43 (points INTEGER, lost VARCHAR, against VARCHAR) | SELECT MIN(points) FROM table_name_43 WHERE lost < 4 AND against < 16 | ### Context: CREATE TABLE table_name_43 (points INTEGER, lost VARCHAR, against VARCHAR) ### Question: What is the least amount of points when there were less than 4 losses and less than 16 against? ### Answer: SELECT MIN(points) FROM table_name_43 WHERE lost < 4 AND against < 16 |
Who does Rockstar Games use as a developer? | CREATE TABLE table_name_97 (developer VARCHAR, publisher VARCHAR) | SELECT developer FROM table_name_97 WHERE publisher = "rockstar games" | ### Context: CREATE TABLE table_name_97 (developer VARCHAR, publisher VARCHAR) ### Question: Who does Rockstar Games use as a developer? ### Answer: SELECT developer FROM table_name_97 WHERE publisher = "rockstar games" |
When Did Microsoft Game Studios release Amped: Freestyle Snowboarding? | CREATE TABLE table_name_18 (release_date VARCHAR, publisher VARCHAR, title VARCHAR) | SELECT release_date FROM table_name_18 WHERE publisher = "microsoft game studios" AND title = "amped: freestyle snowboarding" | ### Context: CREATE TABLE table_name_18 (release_date VARCHAR, publisher VARCHAR, title VARCHAR) ### Question: When Did Microsoft Game Studios release Amped: Freestyle Snowboarding? ### Answer: SELECT release_date FROM table_name_18 WHERE publisher = "microsoft game studios" AND title = "amped: freestyle snowboarding" |
Which Score has a Home of quebec nordiques, and a Visitor of vancouver blazers on february 28? | CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR) | SELECT score FROM table_name_52 WHERE home = "quebec nordiques" AND visitor = "vancouver blazers" AND date = "february 28" | ### Context: CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR) ### Question: Which Score has a Home of quebec nordiques, and a Visitor of vancouver blazers on february 28? ### Answer: SELECT score FROM table_name_52 WHERE home = "quebec nordiques" AND visitor = "vancouver blazers" AND date = "february 28" |
When has a Visitor of new england whalers, and a Record of 9β9β1? Question 2 | CREATE TABLE table_name_5 (date VARCHAR, visitor VARCHAR, record VARCHAR) | SELECT date FROM table_name_5 WHERE visitor = "new england whalers" AND record = "9β9β1" | ### Context: CREATE TABLE table_name_5 (date VARCHAR, visitor VARCHAR, record VARCHAR) ### Question: When has a Visitor of new england whalers, and a Record of 9β9β1? Question 2 ### Answer: SELECT date FROM table_name_5 WHERE visitor = "new england whalers" AND record = "9β9β1" |
Which Home has a Visitor of quebec nordiques, and a Score of 3β4, and a Record of 8β8β1? | CREATE TABLE table_name_62 (home VARCHAR, record VARCHAR, visitor VARCHAR, score VARCHAR) | SELECT home FROM table_name_62 WHERE visitor = "quebec nordiques" AND score = "3β4" AND record = "8β8β1" | ### Context: CREATE TABLE table_name_62 (home VARCHAR, record VARCHAR, visitor VARCHAR, score VARCHAR) ### Question: Which Home has a Visitor of quebec nordiques, and a Score of 3β4, and a Record of 8β8β1? ### Answer: SELECT home FROM table_name_62 WHERE visitor = "quebec nordiques" AND score = "3β4" AND record = "8β8β1" |
WHich Score has a Record of 31β28β3? | CREATE TABLE table_name_16 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_16 WHERE record = "31β28β3" | ### Context: CREATE TABLE table_name_16 (score VARCHAR, record VARCHAR) ### Question: WHich Score has a Record of 31β28β3? ### Answer: SELECT score FROM table_name_16 WHERE record = "31β28β3" |
When has Score of 4β5, and a Record of 21β21β3? | CREATE TABLE table_name_94 (date VARCHAR, score VARCHAR, record VARCHAR) | SELECT date FROM table_name_94 WHERE score = "4β5" AND record = "21β21β3" | ### Context: CREATE TABLE table_name_94 (date VARCHAR, score VARCHAR, record VARCHAR) ### Question: When has Score of 4β5, and a Record of 21β21β3? ### Answer: SELECT date FROM table_name_94 WHERE score = "4β5" AND record = "21β21β3" |
What is the Score of a Record 24β23β3? | CREATE TABLE table_name_69 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_69 WHERE record = "24β23β3" | ### Context: CREATE TABLE table_name_69 (score VARCHAR, record VARCHAR) ### Question: What is the Score of a Record 24β23β3? ### Answer: SELECT score FROM table_name_69 WHERE record = "24β23β3" |
During which games did Tunisia win gold in the men's 5000 m? | CREATE TABLE table_name_24 (games VARCHAR, event VARCHAR, medal VARCHAR) | SELECT games FROM table_name_24 WHERE event = "men's 5000 m" AND medal = "gold" | ### Context: CREATE TABLE table_name_24 (games VARCHAR, event VARCHAR, medal VARCHAR) ### Question: During which games did Tunisia win gold in the men's 5000 m? ### Answer: SELECT games FROM table_name_24 WHERE event = "men's 5000 m" AND medal = "gold" |
What medal was won in the men's light welterweight event at the 1996 Atlanta games? | CREATE TABLE table_name_68 (medal VARCHAR, event VARCHAR, games VARCHAR) | SELECT medal FROM table_name_68 WHERE event = "men's light welterweight" AND games = "1996 atlanta" | ### Context: CREATE TABLE table_name_68 (medal VARCHAR, event VARCHAR, games VARCHAR) ### Question: What medal was won in the men's light welterweight event at the 1996 Atlanta games? ### Answer: SELECT medal FROM table_name_68 WHERE event = "men's light welterweight" AND games = "1996 atlanta" |
At which games did Tunisia win a bronze in the men's 1500 m freestyle? | CREATE TABLE table_name_59 (games VARCHAR, medal VARCHAR, event VARCHAR) | SELECT games FROM table_name_59 WHERE medal = "bronze" AND event = "men's 1500 m freestyle" | ### Context: CREATE TABLE table_name_59 (games VARCHAR, medal VARCHAR, event VARCHAR) ### Question: At which games did Tunisia win a bronze in the men's 1500 m freestyle? ### Answer: SELECT games FROM table_name_59 WHERE medal = "bronze" AND event = "men's 1500 m freestyle" |
What medal was won in the men's 5000 m event? | CREATE TABLE table_name_53 (medal VARCHAR, event VARCHAR) | SELECT medal FROM table_name_53 WHERE event = "men's 5000 m" | ### Context: CREATE TABLE table_name_53 (medal VARCHAR, event VARCHAR) ### Question: What medal was won in the men's 5000 m event? ### Answer: SELECT medal FROM table_name_53 WHERE event = "men's 5000 m" |
What is the draw with less than 107 points by the artist Jan Johansen? | CREATE TABLE table_name_9 (draw VARCHAR, artist VARCHAR, points VARCHAR) | SELECT COUNT(draw) FROM table_name_9 WHERE artist = "jan johansen" AND points < 107 | ### Context: CREATE TABLE table_name_9 (draw VARCHAR, artist VARCHAR, points VARCHAR) ### Question: What is the draw with less than 107 points by the artist Jan Johansen? ### Answer: SELECT COUNT(draw) FROM table_name_9 WHERE artist = "jan johansen" AND points < 107 |
In what Year did the Norton Team have 0 Points and 350cc Class? | CREATE TABLE table_name_81 (year INTEGER, points VARCHAR, class VARCHAR, team VARCHAR) | SELECT AVG(year) FROM table_name_81 WHERE class = "350cc" AND team = "norton" AND points < 0 | ### Context: CREATE TABLE table_name_81 (year INTEGER, points VARCHAR, class VARCHAR, team VARCHAR) ### Question: In what Year did the Norton Team have 0 Points and 350cc Class? ### Answer: SELECT AVG(year) FROM table_name_81 WHERE class = "350cc" AND team = "norton" AND points < 0 |
What is the Wins before 1960 with less than 2 Points? | CREATE TABLE table_name_47 (wins INTEGER, year VARCHAR, points VARCHAR) | SELECT SUM(wins) FROM table_name_47 WHERE year < 1960 AND points < 2 | ### Context: CREATE TABLE table_name_47 (wins INTEGER, year VARCHAR, points VARCHAR) ### Question: What is the Wins before 1960 with less than 2 Points? ### Answer: SELECT SUM(wins) FROM table_name_47 WHERE year < 1960 AND points < 2 |
What was the earliest Year the Linto Team had less than 15 Points with more than 0 Wins? | CREATE TABLE table_name_86 (year INTEGER, points VARCHAR, wins VARCHAR, team VARCHAR) | SELECT MIN(year) FROM table_name_86 WHERE wins > 0 AND team = "linto" AND points < 15 | ### Context: CREATE TABLE table_name_86 (year INTEGER, points VARCHAR, wins VARCHAR, team VARCHAR) ### Question: What was the earliest Year the Linto Team had less than 15 Points with more than 0 Wins? ### Answer: SELECT MIN(year) FROM table_name_86 WHERE wins > 0 AND team = "linto" AND points < 15 |
What were the points for a team that 414 points against? | CREATE TABLE table_name_52 (points_for VARCHAR, points_against VARCHAR) | SELECT points_for FROM table_name_52 WHERE points_against = "414" | ### Context: CREATE TABLE table_name_52 (points_for VARCHAR, points_against VARCHAR) ### Question: What were the points for a team that 414 points against? ### Answer: SELECT points_for FROM table_name_52 WHERE points_against = "414" |
Who was the player that had drawn 1 and tried for 20? | CREATE TABLE table_name_76 (played VARCHAR, drawn VARCHAR, tries_for VARCHAR) | SELECT played FROM table_name_76 WHERE drawn = "1" AND tries_for = "20" | ### Context: CREATE TABLE table_name_76 (played VARCHAR, drawn VARCHAR, tries_for VARCHAR) ### Question: Who was the player that had drawn 1 and tried for 20? ### Answer: SELECT played FROM table_name_76 WHERE drawn = "1" AND tries_for = "20" |
What were the points for that had a game where there was 678 against? | CREATE TABLE table_name_78 (points_for VARCHAR, points_against VARCHAR) | SELECT points_for FROM table_name_78 WHERE points_against = "678" | ### Context: CREATE TABLE table_name_78 (points_for VARCHAR, points_against VARCHAR) ### Question: What were the points for that had a game where there was 678 against? ### Answer: SELECT points_for FROM table_name_78 WHERE points_against = "678" |
What were the points against in a game that was played correct as of 2009-05-16? | CREATE TABLE table_name_99 (points_against VARCHAR, played VARCHAR) | SELECT points_against FROM table_name_99 WHERE played = "correct as of 2009-05-16" | ### Context: CREATE TABLE table_name_99 (points_against VARCHAR, played VARCHAR) ### Question: What were the points against in a game that was played correct as of 2009-05-16? ### Answer: SELECT points_against FROM table_name_99 WHERE played = "correct as of 2009-05-16" |
What was the tries again llanishen rfc? | CREATE TABLE table_name_35 (tries_against VARCHAR, club VARCHAR) | SELECT tries_against FROM table_name_35 WHERE club = "llanishen rfc" | ### Context: CREATE TABLE table_name_35 (tries_against VARCHAR, club VARCHAR) ### Question: What was the tries again llanishen rfc? ### Answer: SELECT tries_against FROM table_name_35 WHERE club = "llanishen rfc" |
What was drawn for llanishen rfc? | CREATE TABLE table_name_56 (drawn VARCHAR, club VARCHAR) | SELECT drawn FROM table_name_56 WHERE club = "llanishen rfc" | ### Context: CREATE TABLE table_name_56 (drawn VARCHAR, club VARCHAR) ### Question: What was drawn for llanishen rfc? ### Answer: SELECT drawn FROM table_name_56 WHERE club = "llanishen rfc" |
Which District has a Republican of dan mansell? | CREATE TABLE table_name_25 (district INTEGER, republican VARCHAR) | SELECT AVG(district) FROM table_name_25 WHERE republican = "dan mansell" | ### Context: CREATE TABLE table_name_25 (district INTEGER, republican VARCHAR) ### Question: Which District has a Republican of dan mansell? ### Answer: SELECT AVG(district) FROM table_name_25 WHERE republican = "dan mansell" |
Which Republican has a District of 10? | CREATE TABLE table_name_26 (republican VARCHAR, district VARCHAR) | SELECT republican FROM table_name_26 WHERE district = 10 | ### Context: CREATE TABLE table_name_26 (republican VARCHAR, district VARCHAR) ### Question: Which Republican has a District of 10? ### Answer: SELECT republican FROM table_name_26 WHERE district = 10 |
Which Incumbent has a Republican of dan mansell? | CREATE TABLE table_name_73 (incumbent VARCHAR, republican VARCHAR) | SELECT incumbent FROM table_name_73 WHERE republican = "dan mansell" | ### Context: CREATE TABLE table_name_73 (incumbent VARCHAR, republican VARCHAR) ### Question: Which Incumbent has a Republican of dan mansell? ### Answer: SELECT incumbent FROM table_name_73 WHERE republican = "dan mansell" |
Which Democratic has a District smaller than 7, and a Republican of dan mansell? | CREATE TABLE table_name_99 (democratic VARCHAR, district VARCHAR, republican VARCHAR) | SELECT democratic FROM table_name_99 WHERE district < 7 AND republican = "dan mansell" | ### Context: CREATE TABLE table_name_99 (democratic VARCHAR, district VARCHAR, republican VARCHAR) ### Question: Which Democratic has a District smaller than 7, and a Republican of dan mansell? ### Answer: SELECT democratic FROM table_name_99 WHERE district < 7 AND republican = "dan mansell" |
Which record has a score of 135β134? | CREATE TABLE table_name_7 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_7 WHERE score = "135β134" | ### Context: CREATE TABLE table_name_7 (record VARCHAR, score VARCHAR) ### Question: Which record has a score of 135β134? ### Answer: SELECT record FROM table_name_7 WHERE score = "135β134" |
Name the position for the player born 2 november 1987 | CREATE TABLE table_name_80 (position VARCHAR, date_of_birth__age_ VARCHAR) | SELECT position FROM table_name_80 WHERE date_of_birth__age_ = "2 november 1987" | ### Context: CREATE TABLE table_name_80 (position VARCHAR, date_of_birth__age_ VARCHAR) ### Question: Name the position for the player born 2 november 1987 ### Answer: SELECT position FROM table_name_80 WHERE date_of_birth__age_ = "2 november 1987" |
Name the club/province for steve borthwick | CREATE TABLE table_name_51 (club_province VARCHAR, player VARCHAR) | SELECT club_province FROM table_name_51 WHERE player = "steve borthwick" | ### Context: CREATE TABLE table_name_51 (club_province VARCHAR, player VARCHAR) ### Question: Name the club/province for steve borthwick ### Answer: SELECT club_province FROM table_name_51 WHERE player = "steve borthwick" |
What is the largest ration with an ordinary value of 84 zolotnik? | CREATE TABLE table_name_85 (ratio INTEGER, ordinary_value VARCHAR) | SELECT MAX(ratio) FROM table_name_85 WHERE ordinary_value = "84 zolotnik" | ### Context: CREATE TABLE table_name_85 (ratio INTEGER, ordinary_value VARCHAR) ### Question: What is the largest ration with an ordinary value of 84 zolotnik? ### Answer: SELECT MAX(ratio) FROM table_name_85 WHERE ordinary_value = "84 zolotnik" |
What unit has an Avoirdupois value of 57.602 gr.? | CREATE TABLE table_name_9 (unit VARCHAR, avoirdupois_value VARCHAR) | SELECT unit FROM table_name_9 WHERE avoirdupois_value = "57.602 gr." | ### Context: CREATE TABLE table_name_9 (unit VARCHAR, avoirdupois_value VARCHAR) ### Question: What unit has an Avoirdupois value of 57.602 gr.? ### Answer: SELECT unit FROM table_name_9 WHERE avoirdupois_value = "57.602 gr." |
Which translation had a unit of Uncia? | CREATE TABLE table_name_10 (translation VARCHAR, unit VARCHAR) | SELECT translation FROM table_name_10 WHERE unit = "uncia" | ### Context: CREATE TABLE table_name_10 (translation VARCHAR, unit VARCHAR) ### Question: Which translation had a unit of Uncia? ### Answer: SELECT translation FROM table_name_10 WHERE unit = "uncia" |
What ordinary value has a metric value of 29.861 g? | CREATE TABLE table_name_56 (ordinary_value VARCHAR, metric_value VARCHAR) | SELECT ordinary_value FROM table_name_56 WHERE metric_value = "29.861 g" | ### Context: CREATE TABLE table_name_56 (ordinary_value VARCHAR, metric_value VARCHAR) ### Question: What ordinary value has a metric value of 29.861 g? ### Answer: SELECT ordinary_value FROM table_name_56 WHERE metric_value = "29.861 g" |
Which ordinary value has a Russian value of ΡΠ½ΡΠΈΡ? | CREATE TABLE table_name_64 (ordinary_value VARCHAR, russian VARCHAR) | SELECT ordinary_value FROM table_name_64 WHERE russian = "ΡΠ½ΡΠΈΡ" | ### Context: CREATE TABLE table_name_64 (ordinary_value VARCHAR, russian VARCHAR) ### Question: Which ordinary value has a Russian value of ΡΠ½ΡΠΈΡ? ### Answer: SELECT ordinary_value FROM table_name_64 WHERE russian = "ΡΠ½ΡΠΈΡ" |
Which Avoirdupois value is translated to grain? | CREATE TABLE table_name_76 (avoirdupois_value VARCHAR, translation VARCHAR) | SELECT avoirdupois_value FROM table_name_76 WHERE translation = "grain" | ### Context: CREATE TABLE table_name_76 (avoirdupois_value VARCHAR, translation VARCHAR) ### Question: Which Avoirdupois value is translated to grain? ### Answer: SELECT avoirdupois_value FROM table_name_76 WHERE translation = "grain" |
What is the number of turns for the City of san antonio? | CREATE TABLE table_name_35 (turns VARCHAR, city VARCHAR) | SELECT turns FROM table_name_35 WHERE city = "san antonio" | ### Context: CREATE TABLE table_name_35 (turns VARCHAR, city VARCHAR) ### Question: What is the number of turns for the City of san antonio? ### Answer: SELECT turns FROM table_name_35 WHERE city = "san antonio" |
What is the State with the imsa gt as the Major Series and a track in new orleans? | CREATE TABLE table_name_23 (state VARCHAR, major_series VARCHAR, track VARCHAR) | SELECT state FROM table_name_23 WHERE major_series = "imsa gt" AND track = "new orleans" | ### Context: CREATE TABLE table_name_23 (state VARCHAR, major_series VARCHAR, track VARCHAR) ### Question: What is the State with the imsa gt as the Major Series and a track in new orleans? ### Answer: SELECT state FROM table_name_23 WHERE major_series = "imsa gt" AND track = "new orleans" |
Where is the track located with 18 turns? | CREATE TABLE table_name_34 (track VARCHAR, turns VARCHAR) | SELECT track FROM table_name_34 WHERE turns = "18" | ### Context: CREATE TABLE table_name_34 (track VARCHAR, turns VARCHAR) ### Question: Where is the track located with 18 turns? ### Answer: SELECT track FROM table_name_34 WHERE turns = "18" |
What is the State with the trans-am Major Series in Grand Rapids? | CREATE TABLE table_name_38 (state VARCHAR, major_series VARCHAR, city VARCHAR) | SELECT state FROM table_name_38 WHERE major_series = "trans-am" AND city = "grand rapids" | ### Context: CREATE TABLE table_name_38 (state VARCHAR, major_series VARCHAR, city VARCHAR) ### Question: What is the State with the trans-am Major Series in Grand Rapids? ### Answer: SELECT state FROM table_name_38 WHERE major_series = "trans-am" AND city = "grand rapids" |
Where is the track located that opened in 1992? | CREATE TABLE table_name_34 (track VARCHAR, opened VARCHAR) | SELECT track FROM table_name_34 WHERE opened = "1992" | ### Context: CREATE TABLE table_name_34 (track VARCHAR, opened VARCHAR) ### Question: Where is the track located that opened in 1992? ### Answer: SELECT track FROM table_name_34 WHERE opened = "1992" |
What shows for opened for the Nascar Major Series? | CREATE TABLE table_name_84 (opened VARCHAR, major_series VARCHAR) | SELECT opened FROM table_name_84 WHERE major_series = "nascar" | ### Context: CREATE TABLE table_name_84 (opened VARCHAR, major_series VARCHAR) ### Question: What shows for opened for the Nascar Major Series? ### Answer: SELECT opened FROM table_name_84 WHERE major_series = "nascar" |
What is the lowest number of FA cups associated with 0 malaysia cups? | CREATE TABLE table_name_69 (fa_cup INTEGER, malaysia_cup INTEGER) | SELECT MIN(fa_cup) FROM table_name_69 WHERE malaysia_cup < 0 | ### Context: CREATE TABLE table_name_69 (fa_cup INTEGER, malaysia_cup INTEGER) ### Question: What is the lowest number of FA cups associated with 0 malaysia cups? ### Answer: SELECT MIN(fa_cup) FROM table_name_69 WHERE malaysia_cup < 0 |
How many league cups for m patrick maria with 0 total? | CREATE TABLE table_name_96 (league INTEGER, player VARCHAR, total VARCHAR) | SELECT SUM(league) FROM table_name_96 WHERE player = "m patrick maria" AND total < 0 | ### Context: CREATE TABLE table_name_96 (league INTEGER, player VARCHAR, total VARCHAR) ### Question: How many league cups for m patrick maria with 0 total? ### Answer: SELECT SUM(league) FROM table_name_96 WHERE player = "m patrick maria" AND total < 0 |
What is the highest number of Malaysia Cups for a player with over 0 leagues and under 0 FA cups? | CREATE TABLE table_name_16 (malaysia_cup INTEGER, league VARCHAR, fa_cup VARCHAR) | SELECT MAX(malaysia_cup) FROM table_name_16 WHERE league > 0 AND fa_cup < 0 | ### Context: CREATE TABLE table_name_16 (malaysia_cup INTEGER, league VARCHAR, fa_cup VARCHAR) ### Question: What is the highest number of Malaysia Cups for a player with over 0 leagues and under 0 FA cups? ### Answer: SELECT MAX(malaysia_cup) FROM table_name_16 WHERE league > 0 AND fa_cup < 0 |
What is the tournament on July 29 hosted by SK Brann? | CREATE TABLE table_name_5 (tournament VARCHAR, host VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_5 WHERE host = "sk brann" AND date = "july 29" | ### Context: CREATE TABLE table_name_5 (tournament VARCHAR, host VARCHAR, date VARCHAR) ### Question: What is the tournament on July 29 hosted by SK Brann? ### Answer: SELECT tournament FROM table_name_5 WHERE host = "sk brann" AND date = "july 29" |
Who is the visitor of the match on July 29? | CREATE TABLE table_name_13 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_13 WHERE date = "july 29" | ### Context: CREATE TABLE table_name_13 (visitor VARCHAR, date VARCHAR) ### Question: Who is the visitor of the match on July 29? ### Answer: SELECT visitor FROM table_name_13 WHERE date = "july 29" |
What is the game that has the phoenix suns as the opponent played against? | CREATE TABLE table_name_72 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_72 WHERE opponent = "phoenix suns" | ### Context: CREATE TABLE table_name_72 (result VARCHAR, opponent VARCHAR) ### Question: What is the game that has the phoenix suns as the opponent played against? ### Answer: SELECT result FROM table_name_72 WHERE opponent = "phoenix suns" |
What is the attendance of the game on 2007-04-07 with the Warriors as the visitor team? | CREATE TABLE table_name_4 (attendance VARCHAR, visitor VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_4 WHERE visitor = "warriors" AND date = "2007-04-07" | ### Context: CREATE TABLE table_name_4 (attendance VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: What is the attendance of the game on 2007-04-07 with the Warriors as the visitor team? ### Answer: SELECT attendance FROM table_name_4 WHERE visitor = "warriors" AND date = "2007-04-07" |
What day is their record 13-15? | CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_14 WHERE record = "13-15" | ### Context: CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR) ### Question: What day is their record 13-15? ### Answer: SELECT date FROM table_name_14 WHERE record = "13-15" |
Who did they play when dickey (0-1) recorded the loss? | CREATE TABLE table_name_83 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_83 WHERE loss = "dickey (0-1)" | ### Context: CREATE TABLE table_name_83 (opponent VARCHAR, loss VARCHAR) ### Question: Who did they play when dickey (0-1) recorded the loss? ### Answer: SELECT opponent FROM table_name_83 WHERE loss = "dickey (0-1)" |
What is the result of the game of heinz field with a record of 2-5? | CREATE TABLE table_name_14 (result VARCHAR, game_site VARCHAR, record VARCHAR) | SELECT result FROM table_name_14 WHERE game_site = "heinz field" AND record = "2-5" | ### Context: CREATE TABLE table_name_14 (result VARCHAR, game_site VARCHAR, record VARCHAR) ### Question: What is the result of the game of heinz field with a record of 2-5? ### Answer: SELECT result FROM table_name_14 WHERE game_site = "heinz field" AND record = "2-5" |
What opponent has a record of 6-9? | CREATE TABLE table_name_27 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_27 WHERE record = "6-9" | ### Context: CREATE TABLE table_name_27 (opponent VARCHAR, record VARCHAR) ### Question: What opponent has a record of 6-9? ### Answer: SELECT opponent FROM table_name_27 WHERE record = "6-9" |
What is the week with a record of 2-1? | CREATE TABLE table_name_56 (week VARCHAR, record VARCHAR) | SELECT COUNT(week) FROM table_name_56 WHERE record = "2-1" | ### Context: CREATE TABLE table_name_56 (week VARCHAR, record VARCHAR) ### Question: What is the week with a record of 2-1? ### Answer: SELECT COUNT(week) FROM table_name_56 WHERE record = "2-1" |
What City of license has a Frequency MHz smaller than 95.9 with w223au as the call sign? | CREATE TABLE table_name_43 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR) | SELECT city_of_license FROM table_name_43 WHERE frequency_mhz < 95.9 AND call_sign = "w223au" | ### Context: CREATE TABLE table_name_43 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR) ### Question: What City of license has a Frequency MHz smaller than 95.9 with w223au as the call sign? ### Answer: SELECT city_of_license FROM table_name_43 WHERE frequency_mhz < 95.9 AND call_sign = "w223au" |
What is the Call sign for the ERP W 19? | CREATE TABLE table_name_75 (call_sign VARCHAR, erp_w VARCHAR) | SELECT call_sign FROM table_name_75 WHERE erp_w = 19 | ### Context: CREATE TABLE table_name_75 (call_sign VARCHAR, erp_w VARCHAR) ### Question: What is the Call sign for the ERP W 19? ### Answer: SELECT call_sign FROM table_name_75 WHERE erp_w = 19 |
What FCC info is listed for the ERP W of 2? | CREATE TABLE table_name_96 (fcc_info VARCHAR, erp_w VARCHAR) | SELECT fcc_info FROM table_name_96 WHERE erp_w = 2 | ### Context: CREATE TABLE table_name_96 (fcc_info VARCHAR, erp_w VARCHAR) ### Question: What FCC info is listed for the ERP W of 2? ### Answer: SELECT fcc_info FROM table_name_96 WHERE erp_w = 2 |
What Call sign shows an ERP W of 80? | CREATE TABLE table_name_93 (call_sign VARCHAR, erp_w VARCHAR) | SELECT call_sign FROM table_name_93 WHERE erp_w = 80 | ### Context: CREATE TABLE table_name_93 (call_sign VARCHAR, erp_w VARCHAR) ### Question: What Call sign shows an ERP W of 80? ### Answer: SELECT call_sign FROM table_name_93 WHERE erp_w = 80 |
What is the Class for the ERP W of more than 2 and the call sign of w223au? | CREATE TABLE table_name_50 (class VARCHAR, erp_w VARCHAR, call_sign VARCHAR) | SELECT class FROM table_name_50 WHERE erp_w > 2 AND call_sign = "w223au" | ### Context: CREATE TABLE table_name_50 (class VARCHAR, erp_w VARCHAR, call_sign VARCHAR) ### Question: What is the Class for the ERP W of more than 2 and the call sign of w223au? ### Answer: SELECT class FROM table_name_50 WHERE erp_w > 2 AND call_sign = "w223au" |
what team lost on july 30 | CREATE TABLE table_name_23 (loss VARCHAR, date VARCHAR) | SELECT loss FROM table_name_23 WHERE date = "july 30" | ### Context: CREATE TABLE table_name_23 (loss VARCHAR, date VARCHAR) ### Question: what team lost on july 30 ### Answer: SELECT loss FROM table_name_23 WHERE date = "july 30" |
What sport was played on February 25, 2011? | CREATE TABLE table_name_21 (sport VARCHAR, date VARCHAR) | SELECT sport FROM table_name_21 WHERE date = "february 25, 2011" | ### Context: CREATE TABLE table_name_21 (sport VARCHAR, date VARCHAR) ### Question: What sport was played on February 25, 2011? ### Answer: SELECT sport FROM table_name_21 WHERE date = "february 25, 2011" |
Where was the sport played on September 10, 2010? | CREATE TABLE table_name_55 (site VARCHAR, date VARCHAR) | SELECT site FROM table_name_55 WHERE date = "september 10, 2010" | ### Context: CREATE TABLE table_name_55 (site VARCHAR, date VARCHAR) ### Question: Where was the sport played on September 10, 2010? ### Answer: SELECT site FROM table_name_55 WHERE date = "september 10, 2010" |
What type of surface was played on when julie halard-decugis was the partner on October 8, 2000? | CREATE TABLE table_name_88 (surface VARCHAR, partner VARCHAR, date VARCHAR) | SELECT surface FROM table_name_88 WHERE partner = "julie halard-decugis" AND date = "october 8, 2000" | ### Context: CREATE TABLE table_name_88 (surface VARCHAR, partner VARCHAR, date VARCHAR) ### Question: What type of surface was played on when julie halard-decugis was the partner on October 8, 2000? ### Answer: SELECT surface FROM table_name_88 WHERE partner = "julie halard-decugis" AND date = "october 8, 2000" |
How many Played has a % Win of 50.00%, and Losses of 1, and Wins smaller than 1? | CREATE TABLE table_name_84 (played VARCHAR, wins VARCHAR, _percentage_win VARCHAR, losses VARCHAR) | SELECT COUNT(played) FROM table_name_84 WHERE _percentage_win = "50.00%" AND losses = 1 AND wins < 1 | ### Context: CREATE TABLE table_name_84 (played VARCHAR, wins VARCHAR, _percentage_win VARCHAR, losses VARCHAR) ### Question: How many Played has a % Win of 50.00%, and Losses of 1, and Wins smaller than 1? ### Answer: SELECT COUNT(played) FROM table_name_84 WHERE _percentage_win = "50.00%" AND losses = 1 AND wins < 1 |
WHAT kind of No Result has Wins smaller than 2, and Losses larger than 1? | CREATE TABLE table_name_2 (no_result VARCHAR, wins VARCHAR, losses VARCHAR) | SELECT no_result FROM table_name_2 WHERE wins < 2 AND losses > 1 | ### Context: CREATE TABLE table_name_2 (no_result VARCHAR, wins VARCHAR, losses VARCHAR) ### Question: WHAT kind of No Result has Wins smaller than 2, and Losses larger than 1? ### Answer: SELECT no_result FROM table_name_2 WHERE wins < 2 AND losses > 1 |
How many Played that has Losses of 6, and Wins larger than 33? | CREATE TABLE table_name_61 (played INTEGER, losses VARCHAR, wins VARCHAR) | SELECT AVG(played) FROM table_name_61 WHERE losses = 6 AND wins > 33 | ### Context: CREATE TABLE table_name_61 (played INTEGER, losses VARCHAR, wins VARCHAR) ### Question: How many Played that has Losses of 6, and Wins larger than 33? ### Answer: SELECT AVG(played) FROM table_name_61 WHERE losses = 6 AND wins > 33 |
What kind of No Result has a % Win of 100.00% and a Played larger than 4 in 2012? | CREATE TABLE table_name_50 (no_result INTEGER, year VARCHAR, _percentage_win VARCHAR, played VARCHAR) | SELECT MIN(no_result) FROM table_name_50 WHERE _percentage_win = "100.00%" AND played > 4 AND year = "2012" | ### Context: CREATE TABLE table_name_50 (no_result INTEGER, year VARCHAR, _percentage_win VARCHAR, played VARCHAR) ### Question: What kind of No Result has a % Win of 100.00% and a Played larger than 4 in 2012? ### Answer: SELECT MIN(no_result) FROM table_name_50 WHERE _percentage_win = "100.00%" AND played > 4 AND year = "2012" |
Which Loss has a Score of 6β5? | CREATE TABLE table_name_20 (loss VARCHAR, score VARCHAR) | SELECT loss FROM table_name_20 WHERE score = "6β5" | ### Context: CREATE TABLE table_name_20 (loss VARCHAR, score VARCHAR) ### Question: Which Loss has a Score of 6β5? ### Answer: SELECT loss FROM table_name_20 WHERE score = "6β5" |
Date of wed. nov. 13 had how many number of games? | CREATE TABLE table_name_1 (game VARCHAR, date VARCHAR) | SELECT COUNT(game) FROM table_name_1 WHERE date = "wed. nov. 13" | ### Context: CREATE TABLE table_name_1 (game VARCHAR, date VARCHAR) ### Question: Date of wed. nov. 13 had how many number of games? ### Answer: SELECT COUNT(game) FROM table_name_1 WHERE date = "wed. nov. 13" |
Record of 6β1 had what score? | CREATE TABLE table_name_16 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_16 WHERE record = "6β1" | ### Context: CREATE TABLE table_name_16 (score VARCHAR, record VARCHAR) ### Question: Record of 6β1 had what score? ### Answer: SELECT score FROM table_name_16 WHERE record = "6β1" |
Score of 118β114, and a Record of 8β1 is what lowest game? | CREATE TABLE table_name_64 (game INTEGER, score VARCHAR, record VARCHAR) | SELECT MIN(game) FROM table_name_64 WHERE score = "118β114" AND record = "8β1" | ### Context: CREATE TABLE table_name_64 (game INTEGER, score VARCHAR, record VARCHAR) ### Question: Score of 118β114, and a Record of 8β1 is what lowest game? ### Answer: SELECT MIN(game) FROM table_name_64 WHERE score = "118β114" AND record = "8β1" |
Which circuit was in Great Britain with Ireland as the winner? | CREATE TABLE table_name_85 (circuit VARCHAR, feature_winner VARCHAR, country VARCHAR) | SELECT circuit FROM table_name_85 WHERE feature_winner = "ireland" AND country = "great britain" | ### Context: CREATE TABLE table_name_85 (circuit VARCHAR, feature_winner VARCHAR, country VARCHAR) ### Question: Which circuit was in Great Britain with Ireland as the winner? ### Answer: SELECT circuit FROM table_name_85 WHERE feature_winner = "ireland" AND country = "great britain" |
How many were in attendance when the league position was 16th and the score was FβA of 0β3? | CREATE TABLE table_name_43 (attendance VARCHAR, league_position VARCHAR, score_f_a VARCHAR) | SELECT COUNT(attendance) FROM table_name_43 WHERE league_position = "16th" AND score_f_a = "0β3" | ### Context: CREATE TABLE table_name_43 (attendance VARCHAR, league_position VARCHAR, score_f_a VARCHAR) ### Question: How many were in attendance when the league position was 16th and the score was FβA of 0β3? ### Answer: SELECT COUNT(attendance) FROM table_name_43 WHERE league_position = "16th" AND score_f_a = "0β3" |
How many were in attendance for a result of D, at H venue, and Arsenal as an opponent? | CREATE TABLE table_name_40 (attendance VARCHAR, opponents VARCHAR, result VARCHAR, venue VARCHAR) | SELECT attendance FROM table_name_40 WHERE result = "d" AND venue = "h" AND opponents = "arsenal" | ### Context: CREATE TABLE table_name_40 (attendance VARCHAR, opponents VARCHAR, result VARCHAR, venue VARCHAR) ### Question: How many were in attendance for a result of D, at H venue, and Arsenal as an opponent? ### Answer: SELECT attendance FROM table_name_40 WHERE result = "d" AND venue = "h" AND opponents = "arsenal" |
What is the largest number in attendance at H venue opposing Liverpool with a result of D? | CREATE TABLE table_name_40 (attendance INTEGER, opponents VARCHAR, venue VARCHAR, result VARCHAR) | SELECT MAX(attendance) FROM table_name_40 WHERE venue = "h" AND result = "d" AND opponents = "liverpool" | ### Context: CREATE TABLE table_name_40 (attendance INTEGER, opponents VARCHAR, venue VARCHAR, result VARCHAR) ### Question: What is the largest number in attendance at H venue opposing Liverpool with a result of D? ### Answer: SELECT MAX(attendance) FROM table_name_40 WHERE venue = "h" AND result = "d" AND opponents = "liverpool" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.