question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
what is the company when the country is greece and the author is aeschylus? | CREATE TABLE table_name_28 (company VARCHAR, country VARCHAR, author VARCHAR) | SELECT company FROM table_name_28 WHERE country = "greece" AND author = "aeschylus" | ### Context: CREATE TABLE table_name_28 (company VARCHAR, country VARCHAR, author VARCHAR) ### Question: what is the company when the country is greece and the author is aeschylus? ### Answer: SELECT company FROM table_name_28 WHERE country = "greece" AND author = "aeschylus" |
what is the country when the base is ljubljana? | CREATE TABLE table_name_67 (country VARCHAR, base VARCHAR) | SELECT country FROM table_name_67 WHERE base = "ljubljana" | ### Context: CREATE TABLE table_name_67 (country VARCHAR, base VARCHAR) ### Question: what is the country when the base is ljubljana? ### Answer: SELECT country FROM table_name_67 WHERE base = "ljubljana" |
what is the base when the play is thesmophoriazusae? | CREATE TABLE table_name_67 (base VARCHAR, play VARCHAR) | SELECT base FROM table_name_67 WHERE play = "thesmophoriazusae" | ### Context: CREATE TABLE table_name_67 (base VARCHAR, play VARCHAR) ### Question: what is the base when the play is thesmophoriazusae? ### Answer: SELECT base FROM table_name_67 WHERE play = "thesmophoriazusae" |
what is the company when the base is ljubljana? | CREATE TABLE table_name_63 (company VARCHAR, base VARCHAR) | SELECT company FROM table_name_63 WHERE base = "ljubljana" | ### Context: CREATE TABLE table_name_63 (company VARCHAR, base VARCHAR) ### Question: what is the company when the base is ljubljana? ### Answer: SELECT company FROM table_name_63 WHERE base = "ljubljana" |
what is the play when the company is cyprus theatre organisation? | CREATE TABLE table_name_61 (play VARCHAR, company VARCHAR) | SELECT play FROM table_name_61 WHERE company = "cyprus theatre organisation" | ### Context: CREATE TABLE table_name_61 (play VARCHAR, company VARCHAR) ### Question: what is the play when the company is cyprus theatre organisation? ### Answer: SELECT play FROM table_name_61 WHERE company = "cyprus theatre organisation" |
What was the highest rank for rowers who represented Denmark? | CREATE TABLE table_name_94 (rank INTEGER, country VARCHAR) | SELECT MAX(rank) FROM table_name_94 WHERE country = "denmark" | ### Context: CREATE TABLE table_name_94 (rank INTEGER, country VARCHAR) ### Question: What was the highest rank for rowers who represented Denmark? ### Answer: SELECT MAX(rank) FROM table_name_94 WHERE country = "denmark" |
What was the time for the rowers representing great britain? | CREATE TABLE table_name_27 (time VARCHAR, country VARCHAR) | SELECT time FROM table_name_27 WHERE country = "great britain" | ### Context: CREATE TABLE table_name_27 (time VARCHAR, country VARCHAR) ### Question: What was the time for the rowers representing great britain? ### Answer: SELECT time FROM table_name_27 WHERE country = "great britain" |
Which Arena has an Opponent of @ oilers, and a Date of may 25? | CREATE TABLE table_name_79 (arena VARCHAR, opponent VARCHAR, date VARCHAR) | SELECT arena FROM table_name_79 WHERE opponent = "@ oilers" AND date = "may 25" | ### Context: CREATE TABLE table_name_79 (arena VARCHAR, opponent VARCHAR, date VARCHAR) ### Question: Which Arena has an Opponent of @ oilers, and a Date of may 25? ### Answer: SELECT arena FROM table_name_79 WHERE opponent = "@ oilers" AND date = "may 25" |
How much attendance has a Loss of roloson (11β5)? | CREATE TABLE table_name_70 (attendance INTEGER, loss VARCHAR) | SELECT SUM(attendance) FROM table_name_70 WHERE loss = "roloson (11β5)" | ### Context: CREATE TABLE table_name_70 (attendance INTEGER, loss VARCHAR) ### Question: How much attendance has a Loss of roloson (11β5)? ### Answer: SELECT SUM(attendance) FROM table_name_70 WHERE loss = "roloson (11β5)" |
Which Attendance has an Arena of arrowhead pond of anaheim, and a Loss of giguere (3β3)? | CREATE TABLE table_name_74 (attendance INTEGER, arena VARCHAR, loss VARCHAR) | SELECT MAX(attendance) FROM table_name_74 WHERE arena = "arrowhead pond of anaheim" AND loss = "giguere (3β3)" | ### Context: CREATE TABLE table_name_74 (attendance INTEGER, arena VARCHAR, loss VARCHAR) ### Question: Which Attendance has an Arena of arrowhead pond of anaheim, and a Loss of giguere (3β3)? ### Answer: SELECT MAX(attendance) FROM table_name_74 WHERE arena = "arrowhead pond of anaheim" AND loss = "giguere (3β3)" |
Which Attendance has an Opponent of @ oilers, and a Date of may 25? | CREATE TABLE table_name_25 (attendance INTEGER, opponent VARCHAR, date VARCHAR) | SELECT MAX(attendance) FROM table_name_25 WHERE opponent = "@ oilers" AND date = "may 25" | ### Context: CREATE TABLE table_name_25 (attendance INTEGER, opponent VARCHAR, date VARCHAR) ### Question: Which Attendance has an Opponent of @ oilers, and a Date of may 25? ### Answer: SELECT MAX(attendance) FROM table_name_25 WHERE opponent = "@ oilers" AND date = "may 25" |
What was the attendance on may 21? | CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR) | SELECT MAX(attendance) FROM table_name_75 WHERE date = "may 21" | ### Context: CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR) ### Question: What was the attendance on may 21? ### Answer: SELECT MAX(attendance) FROM table_name_75 WHERE date = "may 21" |
Who's the athlete with a wind of 1.7 and from the United States? | CREATE TABLE table_name_50 (athlete VARCHAR, nationality VARCHAR, wind VARCHAR) | SELECT athlete FROM table_name_50 WHERE nationality = "united states" AND wind = "1.7" | ### Context: CREATE TABLE table_name_50 (athlete VARCHAR, nationality VARCHAR, wind VARCHAR) ### Question: Who's the athlete with a wind of 1.7 and from the United States? ### Answer: SELECT athlete FROM table_name_50 WHERE nationality = "united states" AND wind = "1.7" |
Who was the athlete with a wind of 1.8? | CREATE TABLE table_name_45 (athlete VARCHAR, wind VARCHAR) | SELECT athlete FROM table_name_45 WHERE wind = "1.8" | ### Context: CREATE TABLE table_name_45 (athlete VARCHAR, wind VARCHAR) ### Question: Who was the athlete with a wind of 1.8? ### Answer: SELECT athlete FROM table_name_45 WHERE wind = "1.8" |
What's the wind when the time was 19.32? | CREATE TABLE table_name_83 (wind VARCHAR, time VARCHAR) | SELECT wind FROM table_name_83 WHERE time = "19.32" | ### Context: CREATE TABLE table_name_83 (wind VARCHAR, time VARCHAR) ### Question: What's the wind when the time was 19.32? ### Answer: SELECT wind FROM table_name_83 WHERE time = "19.32" |
What's the highest total of Romania when the bronze was less than 2? | CREATE TABLE table_name_14 (total INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT MAX(total) FROM table_name_14 WHERE nation = "romania" AND bronze < 2 | ### Context: CREATE TABLE table_name_14 (total INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: What's the highest total of Romania when the bronze was less than 2? ### Answer: SELECT MAX(total) FROM table_name_14 WHERE nation = "romania" AND bronze < 2 |
What's the total of rank number 6 with more than 2 silver? | CREATE TABLE table_name_71 (total INTEGER, rank VARCHAR, silver VARCHAR) | SELECT MAX(total) FROM table_name_71 WHERE rank = "6" AND silver > 2 | ### Context: CREATE TABLE table_name_71 (total INTEGER, rank VARCHAR, silver VARCHAR) ### Question: What's the total of rank number 6 with more than 2 silver? ### Answer: SELECT MAX(total) FROM table_name_71 WHERE rank = "6" AND silver > 2 |
What percentage of browsers were using Internet Explorer during the period in which 27.85% were using Firefox? | CREATE TABLE table_name_39 (internet_explorer VARCHAR, firefox VARCHAR) | SELECT internet_explorer FROM table_name_39 WHERE firefox = "27.85%" | ### Context: CREATE TABLE table_name_39 (internet_explorer VARCHAR, firefox VARCHAR) ### Question: What percentage of browsers were using Internet Explorer during the period in which 27.85% were using Firefox? ### Answer: SELECT internet_explorer FROM table_name_39 WHERE firefox = "27.85%" |
What percentage of browsers were using Internet Explorer in April 2009? | CREATE TABLE table_name_81 (internet_explorer VARCHAR, date VARCHAR) | SELECT internet_explorer FROM table_name_81 WHERE date = "april 2009" | ### Context: CREATE TABLE table_name_81 (internet_explorer VARCHAR, date VARCHAR) ### Question: What percentage of browsers were using Internet Explorer in April 2009? ### Answer: SELECT internet_explorer FROM table_name_81 WHERE date = "april 2009" |
What percentage of browsers were using Safari during the period in which 31.27% were using Firefox? | CREATE TABLE table_name_62 (safari VARCHAR, firefox VARCHAR) | SELECT safari FROM table_name_62 WHERE firefox = "31.27%" | ### Context: CREATE TABLE table_name_62 (safari VARCHAR, firefox VARCHAR) ### Question: What percentage of browsers were using Safari during the period in which 31.27% were using Firefox? ### Answer: SELECT safari FROM table_name_62 WHERE firefox = "31.27%" |
What percentage of browsers were using Opera in October 2010? | CREATE TABLE table_name_53 (opera VARCHAR, date VARCHAR) | SELECT opera FROM table_name_53 WHERE date = "october 2010" | ### Context: CREATE TABLE table_name_53 (opera VARCHAR, date VARCHAR) ### Question: What percentage of browsers were using Opera in October 2010? ### Answer: SELECT opera FROM table_name_53 WHERE date = "october 2010" |
What percentage of browsers were using Opera in November 2009? | CREATE TABLE table_name_69 (opera VARCHAR, date VARCHAR) | SELECT opera FROM table_name_69 WHERE date = "november 2009" | ### Context: CREATE TABLE table_name_69 (opera VARCHAR, date VARCHAR) ### Question: What percentage of browsers were using Opera in November 2009? ### Answer: SELECT opera FROM table_name_69 WHERE date = "november 2009" |
What country has sa/b as the notes, and a time of 5:51.30? | CREATE TABLE table_name_55 (country VARCHAR, notes VARCHAR, time VARCHAR) | SELECT country FROM table_name_55 WHERE notes = "sa/b" AND time = "5:51.30" | ### Context: CREATE TABLE table_name_55 (country VARCHAR, notes VARCHAR, time VARCHAR) ### Question: What country has sa/b as the notes, and a time of 5:51.30? ### Answer: SELECT country FROM table_name_55 WHERE notes = "sa/b" AND time = "5:51.30" |
Who were the rowers when notes were sa/b, with a time of 5:51.30? | CREATE TABLE table_name_76 (rowers VARCHAR, notes VARCHAR, time VARCHAR) | SELECT rowers FROM table_name_76 WHERE notes = "sa/b" AND time = "5:51.30" | ### Context: CREATE TABLE table_name_76 (rowers VARCHAR, notes VARCHAR, time VARCHAR) ### Question: Who were the rowers when notes were sa/b, with a time of 5:51.30? ### Answer: SELECT rowers FROM table_name_76 WHERE notes = "sa/b" AND time = "5:51.30" |
What country is ranked larger than 4? | CREATE TABLE table_name_72 (country VARCHAR, rank INTEGER) | SELECT country FROM table_name_72 WHERE rank > 4 | ### Context: CREATE TABLE table_name_72 (country VARCHAR, rank INTEGER) ### Question: What country is ranked larger than 4? ### Answer: SELECT country FROM table_name_72 WHERE rank > 4 |
What's the least enrolled when the mascot was the Trojans? | CREATE TABLE table_name_8 (enrollment INTEGER, mascot VARCHAR) | SELECT MIN(enrollment) FROM table_name_8 WHERE mascot = "trojans" | ### Context: CREATE TABLE table_name_8 (enrollment INTEGER, mascot VARCHAR) ### Question: What's the least enrolled when the mascot was the Trojans? ### Answer: SELECT MIN(enrollment) FROM table_name_8 WHERE mascot = "trojans" |
What's the IHSAA class of the Red Devils? | CREATE TABLE table_name_77 (ihsaa_class VARCHAR, mascot VARCHAR) | SELECT ihsaa_class FROM table_name_77 WHERE mascot = "red devils" | ### Context: CREATE TABLE table_name_77 (ihsaa_class VARCHAR, mascot VARCHAR) ### Question: What's the IHSAA class of the Red Devils? ### Answer: SELECT ihsaa_class FROM table_name_77 WHERE mascot = "red devils" |
What's the rank for February 11, 2012 with less than 18,735 in attendance? | CREATE TABLE table_name_67 (rank INTEGER, date VARCHAR, attendance VARCHAR) | SELECT AVG(rank) FROM table_name_67 WHERE date = "february 11, 2012" AND attendance < 18 OFFSET 735 | ### Context: CREATE TABLE table_name_67 (rank INTEGER, date VARCHAR, attendance VARCHAR) ### Question: What's the rank for February 11, 2012 with less than 18,735 in attendance? ### Answer: SELECT AVG(rank) FROM table_name_67 WHERE date = "february 11, 2012" AND attendance < 18 OFFSET 735 |
What is Cynthia Mobumba's height? | CREATE TABLE table_name_83 (height__ft_ VARCHAR, contestant VARCHAR) | SELECT height__ft_ FROM table_name_83 WHERE contestant = "cynthia mobumba" | ### Context: CREATE TABLE table_name_83 (height__ft_ VARCHAR, contestant VARCHAR) ### Question: What is Cynthia Mobumba's height? ### Answer: SELECT height__ft_ FROM table_name_83 WHERE contestant = "cynthia mobumba" |
What is the hometown of the player from Indonesia? | CREATE TABLE table_name_31 (hometown VARCHAR, country VARCHAR) | SELECT hometown FROM table_name_31 WHERE country = "indonesia" | ### Context: CREATE TABLE table_name_31 (hometown VARCHAR, country VARCHAR) ### Question: What is the hometown of the player from Indonesia? ### Answer: SELECT hometown FROM table_name_31 WHERE country = "indonesia" |
From what school was the player drafted in round 3? | CREATE TABLE table_name_88 (school VARCHAR, round VARCHAR) | SELECT school FROM table_name_88 WHERE round = 3 | ### Context: CREATE TABLE table_name_88 (school VARCHAR, round VARCHAR) ### Question: From what school was the player drafted in round 3? ### Answer: SELECT school FROM table_name_88 WHERE round = 3 |
From what school was the linebacker that had a pick less than 245 and was drafted in round 6? | CREATE TABLE table_name_50 (school VARCHAR, round VARCHAR, position VARCHAR, pick VARCHAR) | SELECT school FROM table_name_50 WHERE position = "linebacker" AND pick < 245 AND round = 6 | ### Context: CREATE TABLE table_name_50 (school VARCHAR, round VARCHAR, position VARCHAR, pick VARCHAR) ### Question: From what school was the linebacker that had a pick less than 245 and was drafted in round 6? ### Answer: SELECT school FROM table_name_50 WHERE position = "linebacker" AND pick < 245 AND round = 6 |
What was the Rebuildjahr(e) for the T2AA class? | CREATE TABLE table_name_17 (rebuildjahr_e_ VARCHAR, class VARCHAR) | SELECT rebuildjahr_e_ FROM table_name_17 WHERE class = "t2aa" | ### Context: CREATE TABLE table_name_17 (rebuildjahr_e_ VARCHAR, class VARCHAR) ### Question: What was the Rebuildjahr(e) for the T2AA class? ### Answer: SELECT rebuildjahr_e_ FROM table_name_17 WHERE class = "t2aa" |
What is the total of quantity rebuilt if the type is 1B N2T and the railway number is 88, 118? | CREATE TABLE table_name_4 (quantity_rebuilt VARCHAR, type VARCHAR, railway_number_s_ VARCHAR) | SELECT COUNT(quantity_rebuilt) FROM table_name_4 WHERE type = "1b n2t" AND railway_number_s_ = "88, 118" | ### Context: CREATE TABLE table_name_4 (quantity_rebuilt VARCHAR, type VARCHAR, railway_number_s_ VARCHAR) ### Question: What is the total of quantity rebuilt if the type is 1B N2T and the railway number is 88, 118? ### Answer: SELECT COUNT(quantity_rebuilt) FROM table_name_4 WHERE type = "1b n2t" AND railway_number_s_... |
What date was Chester the away team? | CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_67 WHERE away_team = "chester" | ### Context: CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR) ### Question: What date was Chester the away team? ### Answer: SELECT date FROM table_name_67 WHERE away_team = "chester" |
What's the score when the Wolverhampton Wanderers played at home? | CREATE TABLE table_name_4 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_4 WHERE home_team = "wolverhampton wanderers" | ### Context: CREATE TABLE table_name_4 (score VARCHAR, home_team VARCHAR) ### Question: What's the score when the Wolverhampton Wanderers played at home? ### Answer: SELECT score FROM table_name_4 WHERE home_team = "wolverhampton wanderers" |
Who was the home team that played against Manchester United? | CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_86 WHERE away_team = "manchester united" | ### Context: CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR) ### Question: Who was the home team that played against Manchester United? ### Answer: SELECT home_team FROM table_name_86 WHERE away_team = "manchester united" |
What's the score when the tie number was 6? | CREATE TABLE table_name_35 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_35 WHERE tie_no = "6" | ### Context: CREATE TABLE table_name_35 (score VARCHAR, tie_no VARCHAR) ### Question: What's the score when the tie number was 6? ### Answer: SELECT score FROM table_name_35 WHERE tie_no = "6" |
What's the score when the tie number was replay? | CREATE TABLE table_name_70 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_70 WHERE tie_no = "replay" | ### Context: CREATE TABLE table_name_70 (score VARCHAR, tie_no VARCHAR) ### Question: What's the score when the tie number was replay? ### Answer: SELECT score FROM table_name_70 WHERE tie_no = "replay" |
What's the episode of Batman? | CREATE TABLE table_name_38 (episode VARCHAR, program VARCHAR) | SELECT episode FROM table_name_38 WHERE program = "batman" | ### Context: CREATE TABLE table_name_38 (episode VARCHAR, program VARCHAR) ### Question: What's the episode of Batman? ### Answer: SELECT episode FROM table_name_38 WHERE program = "batman" |
What's the first aired date when Professor Hubert Whitehead was the role? | CREATE TABLE table_name_30 (first_aired VARCHAR, role VARCHAR) | SELECT first_aired FROM table_name_30 WHERE role = "professor hubert whitehead" | ### Context: CREATE TABLE table_name_30 (first_aired VARCHAR, role VARCHAR) ### Question: What's the first aired date when Professor Hubert Whitehead was the role? ### Answer: SELECT first_aired FROM table_name_30 WHERE role = "professor hubert whitehead" |
What's the first aired date of the Animated Series episode? | CREATE TABLE table_name_91 (first_aired VARCHAR, episode VARCHAR) | SELECT first_aired FROM table_name_91 WHERE episode = "animated series" | ### Context: CREATE TABLE table_name_91 (first_aired VARCHAR, episode VARCHAR) ### Question: What's the first aired date of the Animated Series episode? ### Answer: SELECT first_aired FROM table_name_91 WHERE episode = "animated series" |
What's the roles of the Bionic Woman? | CREATE TABLE table_name_4 (role VARCHAR, program VARCHAR) | SELECT role FROM table_name_4 WHERE program = "the bionic woman" | ### Context: CREATE TABLE table_name_4 (role VARCHAR, program VARCHAR) ### Question: What's the roles of the Bionic Woman? ### Answer: SELECT role FROM table_name_4 WHERE program = "the bionic woman" |
What episode was first aired in 1976? | CREATE TABLE table_name_85 (episode VARCHAR, first_aired VARCHAR) | SELECT episode FROM table_name_85 WHERE first_aired = "1976" | ### Context: CREATE TABLE table_name_85 (episode VARCHAR, first_aired VARCHAR) ### Question: What episode was first aired in 1976? ### Answer: SELECT episode FROM table_name_85 WHERE first_aired = "1976" |
What is the most total goals for a player having 0 FA Cup goals and 41 League appearances? | CREATE TABLE table_name_98 (total_goals INTEGER, fa_cup_goals VARCHAR, league_apps VARCHAR) | SELECT MAX(total_goals) FROM table_name_98 WHERE fa_cup_goals = 0 AND league_apps = "41" | ### Context: CREATE TABLE table_name_98 (total_goals INTEGER, fa_cup_goals VARCHAR, league_apps VARCHAR) ### Question: What is the most total goals for a player having 0 FA Cup goals and 41 League appearances? ### Answer: SELECT MAX(total_goals) FROM table_name_98 WHERE fa_cup_goals = 0 AND league_apps = "41" |
How many bronze medals were won when the total is more than 1, and gold is more than 0? | CREATE TABLE table_name_62 (bronze INTEGER, total VARCHAR, gold VARCHAR) | SELECT AVG(bronze) FROM table_name_62 WHERE total > 1 AND gold > 0 | ### Context: CREATE TABLE table_name_62 (bronze INTEGER, total VARCHAR, gold VARCHAR) ### Question: How many bronze medals were won when the total is more than 1, and gold is more than 0? ### Answer: SELECT AVG(bronze) FROM table_name_62 WHERE total > 1 AND gold > 0 |
What is the rank when there was less than 1 gold, 0 bronze, and more than 1 total? | CREATE TABLE table_name_23 (rank INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR) | SELECT SUM(rank) FROM table_name_23 WHERE gold < 1 AND bronze = 0 AND total > 1 | ### Context: CREATE TABLE table_name_23 (rank INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR) ### Question: What is the rank when there was less than 1 gold, 0 bronze, and more than 1 total? ### Answer: SELECT SUM(rank) FROM table_name_23 WHERE gold < 1 AND bronze = 0 AND total > 1 |
What is the total when there were less than 0 bronze? | CREATE TABLE table_name_24 (total VARCHAR, bronze INTEGER) | SELECT COUNT(total) FROM table_name_24 WHERE bronze < 0 | ### Context: CREATE TABLE table_name_24 (total VARCHAR, bronze INTEGER) ### Question: What is the total when there were less than 0 bronze? ### Answer: SELECT COUNT(total) FROM table_name_24 WHERE bronze < 0 |
What is the rank when there is 0 gold, the total is more than 1, and silver is more than 0? | CREATE TABLE table_name_58 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR) | SELECT MAX(rank) FROM table_name_58 WHERE gold = 0 AND total > 1 AND silver > 0 | ### Context: CREATE TABLE table_name_58 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR) ### Question: What is the rank when there is 0 gold, the total is more than 1, and silver is more than 0? ### Answer: SELECT MAX(rank) FROM table_name_58 WHERE gold = 0 AND total > 1 AND silver > 0 |
What is the number of gold medals for Lithuania (ltu), when the total is more than 1? | CREATE TABLE table_name_57 (gold INTEGER, nation VARCHAR, total VARCHAR) | SELECT MAX(gold) FROM table_name_57 WHERE nation = "lithuania (ltu)" AND total > 1 | ### Context: CREATE TABLE table_name_57 (gold INTEGER, nation VARCHAR, total VARCHAR) ### Question: What is the number of gold medals for Lithuania (ltu), when the total is more than 1? ### Answer: SELECT MAX(gold) FROM table_name_57 WHERE nation = "lithuania (ltu)" AND total > 1 |
What is the release date of production number 1327? | CREATE TABLE table_name_60 (release_date VARCHAR, production_number VARCHAR) | SELECT release_date FROM table_name_60 WHERE production_number = 1327 | ### Context: CREATE TABLE table_name_60 (release_date VARCHAR, production_number VARCHAR) ### Question: What is the release date of production number 1327? ### Answer: SELECT release_date FROM table_name_60 WHERE production_number = 1327 |
What is the highest production number released on 1955-04-02 with i. freleng as the director? | CREATE TABLE table_name_66 (production_number INTEGER, director VARCHAR, release_date VARCHAR) | SELECT MAX(production_number) FROM table_name_66 WHERE director = "i. freleng" AND release_date = "1955-04-02" | ### Context: CREATE TABLE table_name_66 (production_number INTEGER, director VARCHAR, release_date VARCHAR) ### Question: What is the highest production number released on 1955-04-02 with i. freleng as the director? ### Answer: SELECT MAX(production_number) FROM table_name_66 WHERE director = "i. freleng" AND release_d... |
What is the title with the production number greater than 1334 released on 1955-08-27? | CREATE TABLE table_name_65 (title VARCHAR, production_number VARCHAR, release_date VARCHAR) | SELECT title FROM table_name_65 WHERE production_number > 1334 AND release_date = "1955-08-27" | ### Context: CREATE TABLE table_name_65 (title VARCHAR, production_number VARCHAR, release_date VARCHAR) ### Question: What is the title with the production number greater than 1334 released on 1955-08-27? ### Answer: SELECT title FROM table_name_65 WHERE production_number > 1334 AND release_date = "1955-08-27" |
How many years did the role of Steve Rhoades last? | CREATE TABLE table_name_21 (years VARCHAR, role VARCHAR) | SELECT years FROM table_name_21 WHERE role = "steve rhoades" | ### Context: CREATE TABLE table_name_21 (years VARCHAR, role VARCHAR) ### Question: How many years did the role of Steve Rhoades last? ### Answer: SELECT years FROM table_name_21 WHERE role = "steve rhoades" |
How many episodes did the actor David Faustino appear in? | CREATE TABLE table_name_37 (episodes VARCHAR, actor VARCHAR) | SELECT episodes FROM table_name_37 WHERE actor = "david faustino" | ### Context: CREATE TABLE table_name_37 (episodes VARCHAR, actor VARCHAR) ### Question: How many episodes did the actor David Faustino appear in? ### Answer: SELECT episodes FROM table_name_37 WHERE actor = "david faustino" |
Which County has a Rank larger than 8, and a Player of joe mckenna? | CREATE TABLE table_name_29 (county VARCHAR, rank VARCHAR, player VARCHAR) | SELECT county FROM table_name_29 WHERE rank > 8 AND player = "joe mckenna" | ### Context: CREATE TABLE table_name_29 (county VARCHAR, rank VARCHAR, player VARCHAR) ### Question: Which County has a Rank larger than 8, and a Player of joe mckenna? ### Answer: SELECT county FROM table_name_29 WHERE rank > 8 AND player = "joe mckenna" |
Which Total has a County of kilkenny, and a Tally of 1β4, and a Rank larger than 10? | CREATE TABLE table_name_13 (total INTEGER, rank VARCHAR, county VARCHAR, tally VARCHAR) | SELECT AVG(total) FROM table_name_13 WHERE county = "kilkenny" AND tally = "1β4" AND rank > 10 | ### Context: CREATE TABLE table_name_13 (total INTEGER, rank VARCHAR, county VARCHAR, tally VARCHAR) ### Question: Which Total has a County of kilkenny, and a Tally of 1β4, and a Rank larger than 10? ### Answer: SELECT AVG(total) FROM table_name_13 WHERE county = "kilkenny" AND tally = "1β4" AND rank > 10 |
What is galway county's total? | CREATE TABLE table_name_80 (total INTEGER, county VARCHAR) | SELECT SUM(total) FROM table_name_80 WHERE county = "galway" | ### Context: CREATE TABLE table_name_80 (total INTEGER, county VARCHAR) ### Question: What is galway county's total? ### Answer: SELECT SUM(total) FROM table_name_80 WHERE county = "galway" |
What is the event when the class is time trial hc a? | CREATE TABLE table_name_95 (event VARCHAR, class VARCHAR) | SELECT event FROM table_name_95 WHERE class = "time trial hc a" | ### Context: CREATE TABLE table_name_95 (event VARCHAR, class VARCHAR) ### Question: What is the event when the class is time trial hc a? ### Answer: SELECT event FROM table_name_95 WHERE class = "time trial hc a" |
Who received gold when the event is road race details and silver is max weber germany (ger)? | CREATE TABLE table_name_96 (gold VARCHAR, event VARCHAR, silver VARCHAR) | SELECT gold FROM table_name_96 WHERE event = "road race details" AND silver = "max weber germany (ger)" | ### Context: CREATE TABLE table_name_96 (gold VARCHAR, event VARCHAR, silver VARCHAR) ### Question: Who received gold when the event is road race details and silver is max weber germany (ger)? ### Answer: SELECT gold FROM table_name_96 WHERE event = "road race details" AND silver = "max weber germany (ger)" |
Who received gold when the event is time trial details and silver is simon richardson great britain (gbr)? | CREATE TABLE table_name_2 (gold VARCHAR, event VARCHAR, silver VARCHAR) | SELECT gold FROM table_name_2 WHERE event = "time trial details" AND silver = "simon richardson great britain (gbr)" | ### Context: CREATE TABLE table_name_2 (gold VARCHAR, event VARCHAR, silver VARCHAR) ### Question: Who received gold when the event is time trial details and silver is simon richardson great britain (gbr)? ### Answer: SELECT gold FROM table_name_2 WHERE event = "time trial details" AND silver = "simon richardson great ... |
who received gold when silver is wolfgang eibeck austria (aut)? | CREATE TABLE table_name_42 (gold VARCHAR, silver VARCHAR) | SELECT gold FROM table_name_42 WHERE silver = "wolfgang eibeck austria (aut)" | ### Context: CREATE TABLE table_name_42 (gold VARCHAR, silver VARCHAR) ### Question: who received gold when silver is wolfgang eibeck austria (aut)? ### Answer: SELECT gold FROM table_name_42 WHERE silver = "wolfgang eibeck austria (aut)" |
what is the event when gold is darren kenny great britain (gbr)? | CREATE TABLE table_name_1 (event VARCHAR, gold VARCHAR) | SELECT event FROM table_name_1 WHERE gold = "darren kenny great britain (gbr)" | ### Context: CREATE TABLE table_name_1 (event VARCHAR, gold VARCHAR) ### Question: what is the event when gold is darren kenny great britain (gbr)? ### Answer: SELECT event FROM table_name_1 WHERE gold = "darren kenny great britain (gbr)" |
Who directed Bunker Hill Bunny? | CREATE TABLE table_name_77 (director VARCHAR, title VARCHAR) | SELECT director FROM table_name_77 WHERE title = "bunker hill bunny" | ### Context: CREATE TABLE table_name_77 (director VARCHAR, title VARCHAR) ### Question: Who directed Bunker Hill Bunny? ### Answer: SELECT director FROM table_name_77 WHERE title = "bunker hill bunny" |
Who directed An Egg Scramble? | CREATE TABLE table_name_53 (director VARCHAR, title VARCHAR) | SELECT director FROM table_name_53 WHERE title = "an egg scramble" | ### Context: CREATE TABLE table_name_53 (director VARCHAR, title VARCHAR) ### Question: Who directed An Egg Scramble? ### Answer: SELECT director FROM table_name_53 WHERE title = "an egg scramble" |
Who was the opposing team in the game attended by 65,554? | CREATE TABLE table_name_35 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_35 WHERE attendance = "65,554" | ### Context: CREATE TABLE table_name_35 (opponent VARCHAR, attendance VARCHAR) ### Question: Who was the opposing team in the game attended by 65,554? ### Answer: SELECT opponent FROM table_name_35 WHERE attendance = "65,554" |
what is the highest draw when the place is less than 3 and the percentage is 30.71%? | CREATE TABLE table_name_61 (draw INTEGER, place VARCHAR, percentage VARCHAR) | SELECT MAX(draw) FROM table_name_61 WHERE place < 3 AND percentage = "30.71%" | ### Context: CREATE TABLE table_name_61 (draw INTEGER, place VARCHAR, percentage VARCHAR) ### Question: what is the highest draw when the place is less than 3 and the percentage is 30.71%? ### Answer: SELECT MAX(draw) FROM table_name_61 WHERE place < 3 AND percentage = "30.71%" |
what is the least draw when the place is higher than 4? | CREATE TABLE table_name_62 (draw INTEGER, place INTEGER) | SELECT MIN(draw) FROM table_name_62 WHERE place > 4 | ### Context: CREATE TABLE table_name_62 (draw INTEGER, place INTEGER) ### Question: what is the least draw when the place is higher than 4? ### Answer: SELECT MIN(draw) FROM table_name_62 WHERE place > 4 |
What is the lowest pick of the defensive tackle player dave haverdick? | CREATE TABLE table_name_30 (pick INTEGER, position VARCHAR, player VARCHAR) | SELECT MIN(pick) FROM table_name_30 WHERE position = "defensive tackle" AND player = "dave haverdick" | ### Context: CREATE TABLE table_name_30 (pick INTEGER, position VARCHAR, player VARCHAR) ### Question: What is the lowest pick of the defensive tackle player dave haverdick? ### Answer: SELECT MIN(pick) FROM table_name_30 WHERE position = "defensive tackle" AND player = "dave haverdick" |
What is the average pick of player jim h. mitchell? | CREATE TABLE table_name_3 (pick INTEGER, player VARCHAR) | SELECT AVG(pick) FROM table_name_3 WHERE player = "jim h. mitchell" | ### Context: CREATE TABLE table_name_3 (pick INTEGER, player VARCHAR) ### Question: What is the average pick of player jim h. mitchell? ### Answer: SELECT AVG(pick) FROM table_name_3 WHERE player = "jim h. mitchell" |
With a Col (m) larger than 2012, what is Mount Kazbek's Prominence (m)? | CREATE TABLE table_name_88 (prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR) | SELECT prominence__m_ FROM table_name_88 WHERE col__m_ > 2012 AND peak = "mount kazbek" | ### Context: CREATE TABLE table_name_88 (prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR) ### Question: With a Col (m) larger than 2012, what is Mount Kazbek's Prominence (m)? ### Answer: SELECT prominence__m_ FROM table_name_88 WHERE col__m_ > 2012 AND peak = "mount kazbek" |
What genre has a station of Class 95FM? | CREATE TABLE table_name_53 (genre VARCHAR, station VARCHAR) | SELECT genre FROM table_name_53 WHERE station = "class 95fm" | ### Context: CREATE TABLE table_name_53 (genre VARCHAR, station VARCHAR) ### Question: What genre has a station of Class 95FM? ### Answer: SELECT genre FROM table_name_53 WHERE station = "class 95fm" |
What is the genre of the BBC World Service? | CREATE TABLE table_name_77 (genre VARCHAR, station VARCHAR) | SELECT genre FROM table_name_77 WHERE station = "bbc world service" | ### Context: CREATE TABLE table_name_77 (genre VARCHAR, station VARCHAR) ### Question: What is the genre of the BBC World Service? ### Answer: SELECT genre FROM table_name_77 WHERE station = "bbc world service" |
Which station is operated by BBC Radio under the talk radio genre? | CREATE TABLE table_name_63 (station VARCHAR, genre VARCHAR, operator VARCHAR) | SELECT station FROM table_name_63 WHERE genre = "talk radio" AND operator = "bbc radio" | ### Context: CREATE TABLE table_name_63 (station VARCHAR, genre VARCHAR, operator VARCHAR) ### Question: Which station is operated by BBC Radio under the talk radio genre? ### Answer: SELECT station FROM table_name_63 WHERE genre = "talk radio" AND operator = "bbc radio" |
What's the sum of Silver with total smaller than 560, a Bronze larger than 6, and a Gold of 3? | CREATE TABLE table_name_70 (silver INTEGER, gold VARCHAR, total VARCHAR, bronze VARCHAR) | SELECT SUM(silver) FROM table_name_70 WHERE total < 560 AND bronze > 6 AND gold = 3 | ### Context: CREATE TABLE table_name_70 (silver INTEGER, gold VARCHAR, total VARCHAR, bronze VARCHAR) ### Question: What's the sum of Silver with total smaller than 560, a Bronze larger than 6, and a Gold of 3? ### Answer: SELECT SUM(silver) FROM table_name_70 WHERE total < 560 AND bronze > 6 AND gold = 3 |
What's the sum of Gold with a Bronze that's larger than 15, Silver that's smaller than 197, the Nation of Saint Lucia, and has a Total that is larger than 50? | CREATE TABLE table_name_89 (gold INTEGER, total VARCHAR, nation VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT SUM(gold) FROM table_name_89 WHERE bronze > 15 AND silver < 197 AND nation = "saint lucia" AND total > 50 | ### Context: CREATE TABLE table_name_89 (gold INTEGER, total VARCHAR, nation VARCHAR, bronze VARCHAR, silver VARCHAR) ### Question: What's the sum of Gold with a Bronze that's larger than 15, Silver that's smaller than 197, the Nation of Saint Lucia, and has a Total that is larger than 50? ### Answer: SELECT SUM(gold) ... |
What Nation has a Bronze that is smaller than 10 with a Silver of 5? | CREATE TABLE table_name_72 (nation VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT nation FROM table_name_72 WHERE bronze < 10 AND silver = 5 | ### Context: CREATE TABLE table_name_72 (nation VARCHAR, bronze VARCHAR, silver VARCHAR) ### Question: What Nation has a Bronze that is smaller than 10 with a Silver of 5? ### Answer: SELECT nation FROM table_name_72 WHERE bronze < 10 AND silver = 5 |
What's the total number of Silver that has Gold that's larger than 0, Bronze that's smaller than 23, a Total that's larger than 22, and has the Nation of Saint Kitts and Nevis? | CREATE TABLE table_name_96 (silver VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR) | SELECT COUNT(silver) FROM table_name_96 WHERE gold > 0 AND bronze < 23 AND total > 22 AND nation = "saint kitts and nevis" | ### Context: CREATE TABLE table_name_96 (silver VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR) ### Question: What's the total number of Silver that has Gold that's larger than 0, Bronze that's smaller than 23, a Total that's larger than 22, and has the Nation of Saint Kitts and Nevis? ### Answer:... |
What is listed as the highest Silver that also has a Gold of 4 and a Total that's larger than 25? | CREATE TABLE table_name_70 (silver INTEGER, gold VARCHAR, total VARCHAR) | SELECT MAX(silver) FROM table_name_70 WHERE gold = 4 AND total > 25 | ### Context: CREATE TABLE table_name_70 (silver INTEGER, gold VARCHAR, total VARCHAR) ### Question: What is listed as the highest Silver that also has a Gold of 4 and a Total that's larger than 25? ### Answer: SELECT MAX(silver) FROM table_name_70 WHERE gold = 4 AND total > 25 |
What's the lost when there were more than 16 points and had a drawn less than 1? | CREATE TABLE table_name_18 (lost INTEGER, points VARCHAR, drawn VARCHAR) | SELECT SUM(lost) FROM table_name_18 WHERE points > 16 AND drawn < 1 | ### Context: CREATE TABLE table_name_18 (lost INTEGER, points VARCHAR, drawn VARCHAR) ### Question: What's the lost when there were more than 16 points and had a drawn less than 1? ### Answer: SELECT SUM(lost) FROM table_name_18 WHERE points > 16 AND drawn < 1 |
What's the most points for Ea Schongau with more than 1 drawn? | CREATE TABLE table_name_38 (points INTEGER, name VARCHAR, drawn VARCHAR) | SELECT MAX(points) FROM table_name_38 WHERE name = "ea schongau" AND drawn > 1 | ### Context: CREATE TABLE table_name_38 (points INTEGER, name VARCHAR, drawn VARCHAR) ### Question: What's the most points for Ea Schongau with more than 1 drawn? ### Answer: SELECT MAX(points) FROM table_name_38 WHERE name = "ea schongau" AND drawn > 1 |
What's the points that has a lost more 6, played less than 14 and a position more than 1? | CREATE TABLE table_name_54 (points INTEGER, played VARCHAR, position VARCHAR, lost VARCHAR) | SELECT SUM(points) FROM table_name_54 WHERE position > 1 AND lost > 6 AND played < 14 | ### Context: CREATE TABLE table_name_54 (points INTEGER, played VARCHAR, position VARCHAR, lost VARCHAR) ### Question: What's the points that has a lost more 6, played less than 14 and a position more than 1? ### Answer: SELECT SUM(points) FROM table_name_54 WHERE position > 1 AND lost > 6 AND played < 14 |
When dis cbs release the DVD set? | CREATE TABLE table_name_76 (dvd_set_release_date VARCHAR, network VARCHAR) | SELECT dvd_set_release_date FROM table_name_76 WHERE network = "cbs" | ### Context: CREATE TABLE table_name_76 (dvd_set_release_date VARCHAR, network VARCHAR) ### Question: When dis cbs release the DVD set? ### Answer: SELECT dvd_set_release_date FROM table_name_76 WHERE network = "cbs" |
What is the total season number for episodes later than episode 30? | CREATE TABLE table_name_67 (season INTEGER, episodes INTEGER) | SELECT SUM(season) FROM table_name_67 WHERE episodes > 30 | ### Context: CREATE TABLE table_name_67 (season INTEGER, episodes INTEGER) ### Question: What is the total season number for episodes later than episode 30? ### Answer: SELECT SUM(season) FROM table_name_67 WHERE episodes > 30 |
What year is the Grim Fandango with a windows platform? | CREATE TABLE table_name_36 (year VARCHAR, platform_s_ VARCHAR, game VARCHAR) | SELECT year FROM table_name_36 WHERE platform_s_ = "windows" AND game = "grim fandango" | ### Context: CREATE TABLE table_name_36 (year VARCHAR, platform_s_ VARCHAR, game VARCHAR) ### Question: What year is the Grim Fandango with a windows platform? ### Answer: SELECT year FROM table_name_36 WHERE platform_s_ = "windows" AND game = "grim fandango" |
What game in the genre of adventure, has a windows platform and its year is after 1997? | CREATE TABLE table_name_20 (game VARCHAR, genre VARCHAR, year VARCHAR, platform_s_ VARCHAR) | SELECT game FROM table_name_20 WHERE year > 1997 AND platform_s_ = "windows" AND genre = "adventure" | ### Context: CREATE TABLE table_name_20 (game VARCHAR, genre VARCHAR, year VARCHAR, platform_s_ VARCHAR) ### Question: What game in the genre of adventure, has a windows platform and its year is after 1997? ### Answer: SELECT game FROM table_name_20 WHERE year > 1997 AND platform_s_ = "windows" AND genre = "adventure" |
What is the 2.15 for Tom Parsons? | CREATE TABLE table_name_9 (athlete VARCHAR) | SELECT 215 FROM table_name_9 WHERE athlete = "tom parsons" | ### Context: CREATE TABLE table_name_9 (athlete VARCHAR) ### Question: What is the 2.15 for Tom Parsons? ### Answer: SELECT 215 FROM table_name_9 WHERE athlete = "tom parsons" |
Which athlete from Brazil has 2.20 O and 2.25 of XXX? | CREATE TABLE table_name_81 (athlete VARCHAR, nationality VARCHAR) | SELECT athlete FROM table_name_81 WHERE 220 = "o" AND 225 = "xxx" AND nationality = "brazil" | ### Context: CREATE TABLE table_name_81 (athlete VARCHAR, nationality VARCHAR) ### Question: Which athlete from Brazil has 2.20 O and 2.25 of XXX? ### Answer: SELECT athlete FROM table_name_81 WHERE 220 = "o" AND 225 = "xxx" AND nationality = "brazil" |
Which athlete from Germany has 2.20 of O and a 2.25 of O? | CREATE TABLE table_name_68 (athlete VARCHAR, nationality VARCHAR) | SELECT athlete FROM table_name_68 WHERE 220 = "o" AND 225 = "o" AND nationality = "germany" | ### Context: CREATE TABLE table_name_68 (athlete VARCHAR, nationality VARCHAR) ### Question: Which athlete from Germany has 2.20 of O and a 2.25 of O? ### Answer: SELECT athlete FROM table_name_68 WHERE 220 = "o" AND 225 = "o" AND nationality = "germany" |
Which 2011 has an Airport of bole international airport? | CREATE TABLE table_name_38 (airport VARCHAR) | SELECT MAX(2011) FROM table_name_38 WHERE airport = "bole international airport" | ### Context: CREATE TABLE table_name_38 (airport VARCHAR) ### Question: Which 2011 has an Airport of bole international airport? ### Answer: SELECT MAX(2011) FROM table_name_38 WHERE airport = "bole international airport" |
What's the release date of Forward March Hare? | CREATE TABLE table_name_10 (release_date VARCHAR, title VARCHAR) | SELECT release_date FROM table_name_10 WHERE title = "forward march hare" | ### Context: CREATE TABLE table_name_10 (release_date VARCHAR, title VARCHAR) ### Question: What's the release date of Forward March Hare? ### Answer: SELECT release_date FROM table_name_10 WHERE title = "forward march hare" |
What's the release date of Upswept Hare? | CREATE TABLE table_name_28 (release_date VARCHAR, title VARCHAR) | SELECT release_date FROM table_name_28 WHERE title = "upswept hare" | ### Context: CREATE TABLE table_name_28 (release_date VARCHAR, title VARCHAR) ### Question: What's the release date of Upswept Hare? ### Answer: SELECT release_date FROM table_name_28 WHERE title = "upswept hare" |
What's the series of Kiss Me Cat? | CREATE TABLE table_name_80 (series VARCHAR, title VARCHAR) | SELECT series FROM table_name_80 WHERE title = "kiss me cat" | ### Context: CREATE TABLE table_name_80 (series VARCHAR, title VARCHAR) ### Question: What's the series of Kiss Me Cat? ### Answer: SELECT series FROM table_name_80 WHERE title = "kiss me cat" |
What country is the athlete ekaterina karsten from with a rank less than 4? | CREATE TABLE table_name_85 (country VARCHAR, rank VARCHAR, athlete VARCHAR) | SELECT country FROM table_name_85 WHERE rank < 4 AND athlete = "ekaterina karsten" | ### Context: CREATE TABLE table_name_85 (country VARCHAR, rank VARCHAR, athlete VARCHAR) ### Question: What country is the athlete ekaterina karsten from with a rank less than 4? ### Answer: SELECT country FROM table_name_85 WHERE rank < 4 AND athlete = "ekaterina karsten" |
What is the time of frida svensson's race that had sa/b under the notes? | CREATE TABLE table_name_81 (time VARCHAR, notes VARCHAR, athlete VARCHAR) | SELECT time FROM table_name_81 WHERE notes = "sa/b" AND athlete = "frida svensson" | ### Context: CREATE TABLE table_name_81 (time VARCHAR, notes VARCHAR, athlete VARCHAR) ### Question: What is the time of frida svensson's race that had sa/b under the notes? ### Answer: SELECT time FROM table_name_81 WHERE notes = "sa/b" AND athlete = "frida svensson" |
What is the race time for emma twigg? | CREATE TABLE table_name_29 (time VARCHAR, athlete VARCHAR) | SELECT time FROM table_name_29 WHERE athlete = "emma twigg" | ### Context: CREATE TABLE table_name_29 (time VARCHAR, athlete VARCHAR) ### Question: What is the race time for emma twigg? ### Answer: SELECT time FROM table_name_29 WHERE athlete = "emma twigg" |
What is the total rank for the athlete that had a race time of 7:34.24? | CREATE TABLE table_name_56 (rank VARCHAR, time VARCHAR) | SELECT COUNT(rank) FROM table_name_56 WHERE time = "7:34.24" | ### Context: CREATE TABLE table_name_56 (rank VARCHAR, time VARCHAR) ### Question: What is the total rank for the athlete that had a race time of 7:34.24? ### Answer: SELECT COUNT(rank) FROM table_name_56 WHERE time = "7:34.24" |
What is the Date of the game with an attendance of 72,051 after Week 9? | CREATE TABLE table_name_4 (date VARCHAR, week VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_4 WHERE week > 9 AND attendance = "72,051" | ### Context: CREATE TABLE table_name_4 (date VARCHAR, week VARCHAR, attendance VARCHAR) ### Question: What is the Date of the game with an attendance of 72,051 after Week 9? ### Answer: SELECT date FROM table_name_4 WHERE week > 9 AND attendance = "72,051" |
In what Week was the Attendance 49,097? | CREATE TABLE table_name_51 (week INTEGER, attendance VARCHAR) | SELECT AVG(week) FROM table_name_51 WHERE attendance = "49,097" | ### Context: CREATE TABLE table_name_51 (week INTEGER, attendance VARCHAR) ### Question: In what Week was the Attendance 49,097? ### Answer: SELECT AVG(week) FROM table_name_51 WHERE attendance = "49,097" |
On what Date was the Attendance 73,405? | CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_32 WHERE attendance = "73,405" | ### Context: CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR) ### Question: On what Date was the Attendance 73,405? ### Answer: SELECT date FROM table_name_32 WHERE attendance = "73,405" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.