question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Name the most goals for josep samitier | CREATE TABLE table_name_8 (goals INTEGER, name VARCHAR) | SELECT MAX(goals) FROM table_name_8 WHERE name = "josep samitier" | ### Context: CREATE TABLE table_name_8 (goals INTEGER, name VARCHAR) ### Question: Name the most goals for josep samitier ### Answer: SELECT MAX(goals) FROM table_name_8 WHERE name = "josep samitier" |
Which Record has a December smaller than 22 and a Score of 4–3? | CREATE TABLE table_name_58 (record VARCHAR, december VARCHAR, score VARCHAR) | SELECT record FROM table_name_58 WHERE december < 22 AND score = "4–3" | ### Context: CREATE TABLE table_name_58 (record VARCHAR, december VARCHAR, score VARCHAR) ### Question: Which Record has a December smaller than 22 and a Score of 4–3? ### Answer: SELECT record FROM table_name_58 WHERE december < 22 AND score = "4–3" |
Which Score has a Record of 15–12–2? | CREATE TABLE table_name_28 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_28 WHERE record = "15–12–2" | ### Context: CREATE TABLE table_name_28 (score VARCHAR, record VARCHAR) ### Question: Which Score has a Record of 15–12–2? ### Answer: SELECT score FROM table_name_28 WHERE record = "15–12–2" |
Which December has a Game of 37 and Points smaller than 47? | CREATE TABLE table_name_35 (december INTEGER, game VARCHAR, points VARCHAR) | SELECT AVG(december) FROM table_name_35 WHERE game = 37 AND points < 47 | ### Context: CREATE TABLE table_name_35 (december INTEGER, game VARCHAR, points VARCHAR) ### Question: Which December has a Game of 37 and Points smaller than 47? ### Answer: SELECT AVG(december) FROM table_name_35 WHERE game = 37 AND points < 47 |
Which Points have a December smaller than 6, and a Score of 1–1 ot, and a Game smaller than 28? | CREATE TABLE table_name_1 (points INTEGER, game VARCHAR, december VARCHAR, score VARCHAR) | SELECT MIN(points) FROM table_name_1 WHERE december < 6 AND score = "1–1 ot" AND game < 28 | ### Context: CREATE TABLE table_name_1 (points INTEGER, game VARCHAR, december VARCHAR, score VARCHAR) ### Question: Which Points have a December smaller than 6, and a Score of 1–1 ot, and a Game smaller than 28? ### Answer: SELECT MIN(points) FROM table_name_1 WHERE december < 6 AND score = "1–1 ot" AND game < 28 |
Which Game has a Score of 4–0 and Points of 44? | CREATE TABLE table_name_3 (game VARCHAR, score VARCHAR, points VARCHAR) | SELECT game FROM table_name_3 WHERE score = "4–0" AND points = 44 | ### Context: CREATE TABLE table_name_3 (game VARCHAR, score VARCHAR, points VARCHAR) ### Question: Which Game has a Score of 4–0 and Points of 44? ### Answer: SELECT game FROM table_name_3 WHERE score = "4–0" AND points = 44 |
Which Previous conference has a Year joined smaller than 1976, and an IHSAA Class of A? | CREATE TABLE table_name_23 (previous_conference VARCHAR, year_joined VARCHAR, ihsaa_class VARCHAR) | SELECT previous_conference FROM table_name_23 WHERE year_joined < 1976 AND ihsaa_class = "a" | ### Context: CREATE TABLE table_name_23 (previous_conference VARCHAR, year_joined VARCHAR, ihsaa_class VARCHAR) ### Question: Which Previous conference has a Year joined smaller than 1976, and an IHSAA Class of A? ### Answer: SELECT previous_conference FROM table_name_23 WHERE year_joined < 1976 AND ihsaa_class = "a" |
Which Enrollment has a Mascot of norsemen? | CREATE TABLE table_name_5 (enrollment INTEGER, mascot VARCHAR) | SELECT SUM(enrollment) FROM table_name_5 WHERE mascot = "norsemen" | ### Context: CREATE TABLE table_name_5 (enrollment INTEGER, mascot VARCHAR) ### Question: Which Enrollment has a Mascot of norsemen? ### Answer: SELECT SUM(enrollment) FROM table_name_5 WHERE mascot = "norsemen" |
Which Mascot has a Previous conference of independents, and a Location of akron? | CREATE TABLE table_name_38 (mascot VARCHAR, previous_conference VARCHAR, location VARCHAR) | SELECT mascot FROM table_name_38 WHERE previous_conference = "independents" AND location = "akron" | ### Context: CREATE TABLE table_name_38 (mascot VARCHAR, previous_conference VARCHAR, location VARCHAR) ### Question: Which Mascot has a Previous conference of independents, and a Location of akron? ### Answer: SELECT mascot FROM table_name_38 WHERE previous_conference = "independents" AND location = "akron" |
Which IHSAA Class has a Mascot of wildcats? | CREATE TABLE table_name_2 (ihsaa_class VARCHAR, mascot VARCHAR) | SELECT ihsaa_class FROM table_name_2 WHERE mascot = "wildcats" | ### Context: CREATE TABLE table_name_2 (ihsaa_class VARCHAR, mascot VARCHAR) ### Question: Which IHSAA Class has a Mascot of wildcats? ### Answer: SELECT ihsaa_class FROM table_name_2 WHERE mascot = "wildcats" |
Which School in Wabash has a Mascot of knights? | CREATE TABLE table_name_96 (school VARCHAR, location VARCHAR, mascot VARCHAR) | SELECT school FROM table_name_96 WHERE location = "wabash" AND mascot = "knights" | ### Context: CREATE TABLE table_name_96 (school VARCHAR, location VARCHAR, mascot VARCHAR) ### Question: Which School in Wabash has a Mascot of knights? ### Answer: SELECT school FROM table_name_96 WHERE location = "wabash" AND mascot = "knights" |
Which Win percentage has a Name of red kelly? | CREATE TABLE table_name_55 (win_percentage INTEGER, name VARCHAR) | SELECT SUM(win_percentage) FROM table_name_55 WHERE name = "red kelly" | ### Context: CREATE TABLE table_name_55 (win_percentage INTEGER, name VARCHAR) ### Question: Which Win percentage has a Name of red kelly? ### Answer: SELECT SUM(win_percentage) FROM table_name_55 WHERE name = "red kelly" |
Which Name has Games of 105? | CREATE TABLE table_name_53 (name VARCHAR, games VARCHAR) | SELECT name FROM table_name_53 WHERE games = 105 | ### Context: CREATE TABLE table_name_53 (name VARCHAR, games VARCHAR) ### Question: Which Name has Games of 105? ### Answer: SELECT name FROM table_name_53 WHERE games = 105 |
Which Win percentage has Points smaller than 472, and a Record (W–L–T/OTL) of 140–220–40? | CREATE TABLE table_name_79 (win_percentage INTEGER, points VARCHAR, record__w_l_t___otl_ VARCHAR) | SELECT AVG(win_percentage) FROM table_name_79 WHERE points < 472 AND record__w_l_t___otl_ = "140–220–40" | ### Context: CREATE TABLE table_name_79 (win_percentage INTEGER, points VARCHAR, record__w_l_t___otl_ VARCHAR) ### Question: Which Win percentage has Points smaller than 472, and a Record (W–L–T/OTL) of 140–220–40? ### Answer: SELECT AVG(win_percentage) FROM table_name_79 WHERE points < 472 AND record__w_l_t___otl_ = "140–220–40" |
Which round has an H/A of A with Notts County as opponents? | CREATE TABLE table_name_72 (round VARCHAR, h___a VARCHAR, opponents VARCHAR) | SELECT round FROM table_name_72 WHERE h___a = "a" AND opponents = "notts county" | ### Context: CREATE TABLE table_name_72 (round VARCHAR, h___a VARCHAR, opponents VARCHAR) ### Question: Which round has an H/A of A with Notts County as opponents? ### Answer: SELECT round FROM table_name_72 WHERE h___a = "a" AND opponents = "notts county" |
What was the Premiership Years that had in the Competition of 1983-1992? | CREATE TABLE table_name_65 (premiership_years VARCHAR, years_in_competition VARCHAR) | SELECT premiership_years FROM table_name_65 WHERE years_in_competition = "1983-1992" | ### Context: CREATE TABLE table_name_65 (premiership_years VARCHAR, years_in_competition VARCHAR) ### Question: What was the Premiership Years that had in the Competition of 1983-1992? ### Answer: SELECT premiership_years FROM table_name_65 WHERE years_in_competition = "1983-1992" |
What was the Years in competition that had a Premiership of 1982, 1984, 1999, 2002-03, 2008-09-10? | CREATE TABLE table_name_2 (years_in_competition VARCHAR, premiership_years VARCHAR) | SELECT years_in_competition FROM table_name_2 WHERE premiership_years = "1982, 1984, 1999, 2002-03, 2008-09-10" | ### Context: CREATE TABLE table_name_2 (years_in_competition VARCHAR, premiership_years VARCHAR) ### Question: What was the Years in competition that had a Premiership of 1982, 1984, 1999, 2002-03, 2008-09-10? ### Answer: SELECT years_in_competition FROM table_name_2 WHERE premiership_years = "1982, 1984, 1999, 2002-03, 2008-09-10" |
What is the Nickname in the Competition of 1982-1994? | CREATE TABLE table_name_76 (nickname VARCHAR, years_in_competition VARCHAR) | SELECT nickname FROM table_name_76 WHERE years_in_competition = "1982-1994" | ### Context: CREATE TABLE table_name_76 (nickname VARCHAR, years_in_competition VARCHAR) ### Question: What is the Nickname in the Competition of 1982-1994? ### Answer: SELECT nickname FROM table_name_76 WHERE years_in_competition = "1982-1994" |
What was the Nickname that had a No. 0, and Years in Competition of 1982-2003? | CREATE TABLE table_name_26 (nickname VARCHAR, no_of_premierships VARCHAR, years_in_competition VARCHAR) | SELECT nickname FROM table_name_26 WHERE no_of_premierships = 0 AND years_in_competition = "1982-2003" | ### Context: CREATE TABLE table_name_26 (nickname VARCHAR, no_of_premierships VARCHAR, years_in_competition VARCHAR) ### Question: What was the Nickname that had a No. 0, and Years in Competition of 1982-2003? ### Answer: SELECT nickname FROM table_name_26 WHERE no_of_premierships = 0 AND years_in_competition = "1982-2003" |
Which highest Points has a Score of 1–1 ot? | CREATE TABLE table_name_49 (points INTEGER, score VARCHAR) | SELECT MAX(points) FROM table_name_49 WHERE score = "1–1 ot" | ### Context: CREATE TABLE table_name_49 (points INTEGER, score VARCHAR) ### Question: Which highest Points has a Score of 1–1 ot? ### Answer: SELECT MAX(points) FROM table_name_49 WHERE score = "1–1 ot" |
Which College/Junior/Club team has a Round of 6? | CREATE TABLE table_name_13 (college_junior_club_team VARCHAR, round VARCHAR) | SELECT college_junior_club_team FROM table_name_13 WHERE round = 6 | ### Context: CREATE TABLE table_name_13 (college_junior_club_team VARCHAR, round VARCHAR) ### Question: Which College/Junior/Club team has a Round of 6? ### Answer: SELECT college_junior_club_team FROM table_name_13 WHERE round = 6 |
What was the record on April 16? | CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_41 WHERE date = "april 16" | ### Context: CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR) ### Question: What was the record on April 16? ### Answer: SELECT record FROM table_name_41 WHERE date = "april 16" |
What was the record on April 8? | CREATE TABLE table_name_53 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_53 WHERE date = "april 8" | ### Context: CREATE TABLE table_name_53 (record VARCHAR, date VARCHAR) ### Question: What was the record on April 8? ### Answer: SELECT record FROM table_name_53 WHERE date = "april 8" |
What date was the visitor chicago black hawks, and a Record of 1-1? | CREATE TABLE table_name_12 (date VARCHAR, visitor VARCHAR, record VARCHAR) | SELECT date FROM table_name_12 WHERE visitor = "chicago black hawks" AND record = "1-1" | ### Context: CREATE TABLE table_name_12 (date VARCHAR, visitor VARCHAR, record VARCHAR) ### Question: What date was the visitor chicago black hawks, and a Record of 1-1? ### Answer: SELECT date FROM table_name_12 WHERE visitor = "chicago black hawks" AND record = "1-1" |
Studio host of jimmy myers had what play by play? | CREATE TABLE table_name_80 (play_by_play VARCHAR, studio_host VARCHAR) | SELECT play_by_play FROM table_name_80 WHERE studio_host = "jimmy myers" | ### Context: CREATE TABLE table_name_80 (play_by_play VARCHAR, studio_host VARCHAR) ### Question: Studio host of jimmy myers had what play by play? ### Answer: SELECT play_by_play FROM table_name_80 WHERE studio_host = "jimmy myers" |
Play-by-play of sean grande, and a Year of 2004-05 had what studio host? | CREATE TABLE table_name_47 (studio_host VARCHAR, play_by_play VARCHAR, year VARCHAR) | SELECT studio_host FROM table_name_47 WHERE play_by_play = "sean grande" AND year = "2004-05" | ### Context: CREATE TABLE table_name_47 (studio_host VARCHAR, play_by_play VARCHAR, year VARCHAR) ### Question: Play-by-play of sean grande, and a Year of 2004-05 had what studio host? ### Answer: SELECT studio_host FROM table_name_47 WHERE play_by_play = "sean grande" AND year = "2004-05" |
Year of 2006-07 had what studio host? | CREATE TABLE table_name_10 (studio_host VARCHAR, year VARCHAR) | SELECT studio_host FROM table_name_10 WHERE year = "2006-07" | ### Context: CREATE TABLE table_name_10 (studio_host VARCHAR, year VARCHAR) ### Question: Year of 2006-07 had what studio host? ### Answer: SELECT studio_host FROM table_name_10 WHERE year = "2006-07" |
Play-by-play of sean grande, and a Flagship Station of wrko, and a Year of 2005-06 had what studio host? | CREATE TABLE table_name_1 (studio_host VARCHAR, year VARCHAR, play_by_play VARCHAR, flagship_station VARCHAR) | SELECT studio_host FROM table_name_1 WHERE play_by_play = "sean grande" AND flagship_station = "wrko" AND year = "2005-06" | ### Context: CREATE TABLE table_name_1 (studio_host VARCHAR, year VARCHAR, play_by_play VARCHAR, flagship_station VARCHAR) ### Question: Play-by-play of sean grande, and a Flagship Station of wrko, and a Year of 2005-06 had what studio host? ### Answer: SELECT studio_host FROM table_name_1 WHERE play_by_play = "sean grande" AND flagship_station = "wrko" AND year = "2005-06" |
Studio host of john ryder, and a Year of 2007-08 had what play by play? | CREATE TABLE table_name_38 (play_by_play VARCHAR, studio_host VARCHAR, year VARCHAR) | SELECT play_by_play FROM table_name_38 WHERE studio_host = "john ryder" AND year = "2007-08" | ### Context: CREATE TABLE table_name_38 (play_by_play VARCHAR, studio_host VARCHAR, year VARCHAR) ### Question: Studio host of john ryder, and a Year of 2007-08 had what play by play? ### Answer: SELECT play_by_play FROM table_name_38 WHERE studio_host = "john ryder" AND year = "2007-08" |
Play-by-play of sean grande, and a Flagship Station of wrko involved what color commentator? | CREATE TABLE table_name_99 (color_commentator_s_ VARCHAR, play_by_play VARCHAR, flagship_station VARCHAR) | SELECT color_commentator_s_ FROM table_name_99 WHERE play_by_play = "sean grande" AND flagship_station = "wrko" | ### Context: CREATE TABLE table_name_99 (color_commentator_s_ VARCHAR, play_by_play VARCHAR, flagship_station VARCHAR) ### Question: Play-by-play of sean grande, and a Flagship Station of wrko involved what color commentator? ### Answer: SELECT color_commentator_s_ FROM table_name_99 WHERE play_by_play = "sean grande" AND flagship_station = "wrko" |
What was the value in 2011 for United States? | CREATE TABLE table_name_95 (country VARCHAR) | SELECT 2011 FROM table_name_95 WHERE country = "united states" | ### Context: CREATE TABLE table_name_95 (country VARCHAR) ### Question: What was the value in 2011 for United States? ### Answer: SELECT 2011 FROM table_name_95 WHERE country = "united states" |
What was the value in 2011 when value in 2009 was 82,003? | CREATE TABLE table_name_45 (Id VARCHAR) | SELECT 2011 FROM table_name_45 WHERE 2009 = "82,003" | ### Context: CREATE TABLE table_name_45 (Id VARCHAR) ### Question: What was the value in 2011 when value in 2009 was 82,003? ### Answer: SELECT 2011 FROM table_name_45 WHERE 2009 = "82,003" |
What country was rank 1? | CREATE TABLE table_name_68 (country VARCHAR, rank VARCHAR) | SELECT country FROM table_name_68 WHERE rank = "1" | ### Context: CREATE TABLE table_name_68 (country VARCHAR, rank VARCHAR) ### Question: What country was rank 1? ### Answer: SELECT country FROM table_name_68 WHERE rank = "1" |
What country was rank 4? | CREATE TABLE table_name_43 (country VARCHAR, rank VARCHAR) | SELECT country FROM table_name_43 WHERE rank = "4" | ### Context: CREATE TABLE table_name_43 (country VARCHAR, rank VARCHAR) ### Question: What country was rank 4? ### Answer: SELECT country FROM table_name_43 WHERE rank = "4" |
Games started of 4 is in what hometown? | CREATE TABLE table_name_79 (hometown VARCHAR, games_started VARCHAR) | SELECT hometown FROM table_name_79 WHERE games_started = "4" | ### Context: CREATE TABLE table_name_79 (hometown VARCHAR, games_started VARCHAR) ### Question: Games started of 4 is in what hometown? ### Answer: SELECT hometown FROM table_name_79 WHERE games_started = "4" |
Weight larger than 180, and a Player of charles b. carter is what previous experience? | CREATE TABLE table_name_41 (previous_experience VARCHAR, weight VARCHAR, player VARCHAR) | SELECT previous_experience FROM table_name_41 WHERE weight > 180 AND player = "charles b. carter" | ### Context: CREATE TABLE table_name_41 (previous_experience VARCHAR, weight VARCHAR, player VARCHAR) ### Question: Weight larger than 180, and a Player of charles b. carter is what previous experience? ### Answer: SELECT previous_experience FROM table_name_41 WHERE weight > 180 AND player = "charles b. carter" |
Player of herbert s. graver has what position? | CREATE TABLE table_name_24 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_24 WHERE player = "herbert s. graver" | ### Context: CREATE TABLE table_name_24 (position VARCHAR, player VARCHAR) ### Question: Player of herbert s. graver has what position? ### Answer: SELECT position FROM table_name_24 WHERE player = "herbert s. graver" |
Position of fullback has what highest weight? | CREATE TABLE table_name_33 (weight INTEGER, position VARCHAR) | SELECT MAX(weight) FROM table_name_33 WHERE position = "fullback" | ### Context: CREATE TABLE table_name_33 (weight INTEGER, position VARCHAR) ### Question: Position of fullback has what highest weight? ### Answer: SELECT MAX(weight) FROM table_name_33 WHERE position = "fullback" |
what is the callsign whtat uses 7bu? | CREATE TABLE table_name_9 (callsign VARCHAR, on_air_id VARCHAR) | SELECT callsign FROM table_name_9 WHERE on_air_id = "7bu" | ### Context: CREATE TABLE table_name_9 (callsign VARCHAR, on_air_id VARCHAR) ### Question: what is the callsign whtat uses 7bu? ### Answer: SELECT callsign FROM table_name_9 WHERE on_air_id = "7bu" |
What is the highest rank for ben crenshaw after winning more than 14 times? | CREATE TABLE table_name_65 (rank INTEGER, player VARCHAR, wins VARCHAR) | SELECT MAX(rank) FROM table_name_65 WHERE player = "ben crenshaw" AND wins > 14 | ### Context: CREATE TABLE table_name_65 (rank INTEGER, player VARCHAR, wins VARCHAR) ### Question: What is the highest rank for ben crenshaw after winning more than 14 times? ### Answer: SELECT MAX(rank) FROM table_name_65 WHERE player = "ben crenshaw" AND wins > 14 |
What is the lowest number of wins for ben crenshaw? | CREATE TABLE table_name_87 (wins INTEGER, player VARCHAR) | SELECT MIN(wins) FROM table_name_87 WHERE player = "ben crenshaw" | ### Context: CREATE TABLE table_name_87 (wins INTEGER, player VARCHAR) ### Question: What is the lowest number of wins for ben crenshaw? ### Answer: SELECT MIN(wins) FROM table_name_87 WHERE player = "ben crenshaw" |
What player has 14 wins? | CREATE TABLE table_name_83 (player VARCHAR, wins VARCHAR) | SELECT player FROM table_name_83 WHERE wins = 14 | ### Context: CREATE TABLE table_name_83 (player VARCHAR, wins VARCHAR) ### Question: What player has 14 wins? ### Answer: SELECT player FROM table_name_83 WHERE wins = 14 |
What is the 1995 value with of the 1993 ATP Masters Series? | CREATE TABLE table_name_15 (Id VARCHAR) | SELECT 1995 FROM table_name_15 WHERE 1993 = "atp masters series" | ### Context: CREATE TABLE table_name_15 (Id VARCHAR) ### Question: What is the 1995 value with of the 1993 ATP Masters Series? ### Answer: SELECT 1995 FROM table_name_15 WHERE 1993 = "atp masters series" |
What is the 1993 value of the 1997 Grand Slams? | CREATE TABLE table_name_49 (Id VARCHAR) | SELECT 1993 FROM table_name_49 WHERE 1997 = "grand slams" | ### Context: CREATE TABLE table_name_49 (Id VARCHAR) ### Question: What is the 1993 value of the 1997 Grand Slams? ### Answer: SELECT 1993 FROM table_name_49 WHERE 1997 = "grand slams" |
What is the 1998 value with A in 1995, A in 1993, and 1r in 1996? | CREATE TABLE table_name_4 (Id VARCHAR) | SELECT 1998 FROM table_name_4 WHERE 1995 = "a" AND 1993 = "a" AND 1996 = "1r" | ### Context: CREATE TABLE table_name_4 (Id VARCHAR) ### Question: What is the 1998 value with A in 1995, A in 1993, and 1r in 1996? ### Answer: SELECT 1998 FROM table_name_4 WHERE 1995 = "a" AND 1993 = "a" AND 1996 = "1r" |
How many games does team Czechoslovakia have that had a drawn greater than 0? | CREATE TABLE table_name_18 (games INTEGER, team VARCHAR, drawn VARCHAR) | SELECT MAX(games) FROM table_name_18 WHERE team = "czechoslovakia" AND drawn > 0 | ### Context: CREATE TABLE table_name_18 (games INTEGER, team VARCHAR, drawn VARCHAR) ### Question: How many games does team Czechoslovakia have that had a drawn greater than 0? ### Answer: SELECT MAX(games) FROM table_name_18 WHERE team = "czechoslovakia" AND drawn > 0 |
Which Prime Minister's served a term of 344 days? | CREATE TABLE table_name_68 (Prime VARCHAR, term_in_office VARCHAR) | SELECT Prime AS minister FROM table_name_68 WHERE term_in_office = "344 days" | ### Context: CREATE TABLE table_name_68 (Prime VARCHAR, term_in_office VARCHAR) ### Question: Which Prime Minister's served a term of 344 days? ### Answer: SELECT Prime AS minister FROM table_name_68 WHERE term_in_office = "344 days" |
Who was the Minister that served for 307 days? | CREATE TABLE table_name_46 (minister VARCHAR, term_in_office VARCHAR) | SELECT minister FROM table_name_46 WHERE term_in_office = "307 days" | ### Context: CREATE TABLE table_name_46 (minister VARCHAR, term_in_office VARCHAR) ### Question: Who was the Minister that served for 307 days? ### Answer: SELECT minister FROM table_name_46 WHERE term_in_office = "307 days" |
what ceremony did big titty milfs work in | CREATE TABLE table_name_35 (ceremony VARCHAR, work VARCHAR) | SELECT ceremony FROM table_name_35 WHERE work = "big titty milfs" | ### Context: CREATE TABLE table_name_35 (ceremony VARCHAR, work VARCHAR) ### Question: what ceremony did big titty milfs work in ### Answer: SELECT ceremony FROM table_name_35 WHERE work = "big titty milfs" |
What was the end result for 28 February 2001? | CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_52 WHERE date = "28 february 2001" | ### Context: CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR) ### Question: What was the end result for 28 February 2001? ### Answer: SELECT result FROM table_name_52 WHERE date = "28 february 2001" |
How many yards did Davin Meggett have with more than 9 Rec.? | CREATE TABLE table_name_62 (yards INTEGER, player VARCHAR, rec VARCHAR) | SELECT SUM(yards) FROM table_name_62 WHERE player = "davin meggett" AND rec > 9 | ### Context: CREATE TABLE table_name_62 (yards INTEGER, player VARCHAR, rec VARCHAR) ### Question: How many yards did Davin Meggett have with more than 9 Rec.? ### Answer: SELECT SUM(yards) FROM table_name_62 WHERE player = "davin meggett" AND rec > 9 |
What is Darrius Heyward-Bey's average with more than 20 yards and less than 80 long? | CREATE TABLE table_name_89 (avg VARCHAR, long VARCHAR, yards VARCHAR, player VARCHAR) | SELECT COUNT(avg) FROM table_name_89 WHERE yards > 20 AND player = "darrius heyward-bey" AND long < 80 | ### Context: CREATE TABLE table_name_89 (avg VARCHAR, long VARCHAR, yards VARCHAR, player VARCHAR) ### Question: What is Darrius Heyward-Bey's average with more than 20 yards and less than 80 long? ### Answer: SELECT COUNT(avg) FROM table_name_89 WHERE yards > 20 AND player = "darrius heyward-bey" AND long < 80 |
How many points are associated with a Time/Retired of +10.131 secs? | CREATE TABLE table_name_77 (points VARCHAR, time_retired VARCHAR) | SELECT COUNT(points) FROM table_name_77 WHERE time_retired = "+10.131 secs" | ### Context: CREATE TABLE table_name_77 (points VARCHAR, time_retired VARCHAR) ### Question: How many points are associated with a Time/Retired of +10.131 secs? ### Answer: SELECT COUNT(points) FROM table_name_77 WHERE time_retired = "+10.131 secs" |
What is the grid associated witha Time/Retired of +8.180 secs, and under 47 laps? | CREATE TABLE table_name_80 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) | SELECT SUM(grid) FROM table_name_80 WHERE time_retired = "+8.180 secs" AND laps < 47 | ### Context: CREATE TABLE table_name_80 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) ### Question: What is the grid associated witha Time/Retired of +8.180 secs, and under 47 laps? ### Answer: SELECT SUM(grid) FROM table_name_80 WHERE time_retired = "+8.180 secs" AND laps < 47 |
What is the highest drawn for points over 545? | CREATE TABLE table_name_81 (drawn INTEGER, points_for INTEGER) | SELECT MAX(drawn) FROM table_name_81 WHERE points_for > 545 | ### Context: CREATE TABLE table_name_81 (drawn INTEGER, points_for INTEGER) ### Question: What is the highest drawn for points over 545? ### Answer: SELECT MAX(drawn) FROM table_name_81 WHERE points_for > 545 |
What's the average loss when the points were 545? | CREATE TABLE table_name_32 (lost INTEGER, points_for VARCHAR) | SELECT AVG(lost) FROM table_name_32 WHERE points_for = 545 | ### Context: CREATE TABLE table_name_32 (lost INTEGER, points_for VARCHAR) ### Question: What's the average loss when the points were 545? ### Answer: SELECT AVG(lost) FROM table_name_32 WHERE points_for = 545 |
How many games were lost when the order was 2nd and the play was more than 13 | CREATE TABLE table_name_66 (lost VARCHAR, order VARCHAR, played VARCHAR) | SELECT COUNT(lost) FROM table_name_66 WHERE order = "2nd" AND played > 13 | ### Context: CREATE TABLE table_name_66 (lost VARCHAR, order VARCHAR, played VARCHAR) ### Question: How many games were lost when the order was 2nd and the play was more than 13 ### Answer: SELECT COUNT(lost) FROM table_name_66 WHERE order = "2nd" AND played > 13 |
Name the least rank with bronze of 2, gold more than 0 and nation of ynys môn/anglesey with total more than 8 | CREATE TABLE table_name_27 (rank INTEGER, total VARCHAR, nation VARCHAR, bronze VARCHAR, gold VARCHAR) | SELECT MIN(rank) FROM table_name_27 WHERE bronze = 2 AND gold > 0 AND nation = "ynys môn/anglesey" AND total > 8 | ### Context: CREATE TABLE table_name_27 (rank INTEGER, total VARCHAR, nation VARCHAR, bronze VARCHAR, gold VARCHAR) ### Question: Name the least rank with bronze of 2, gold more than 0 and nation of ynys môn/anglesey with total more than 8 ### Answer: SELECT MIN(rank) FROM table_name_27 WHERE bronze = 2 AND gold > 0 AND nation = "ynys môn/anglesey" AND total > 8 |
Name the least total with rank less than 7, gold more than 16 and bronze less than 29 | CREATE TABLE table_name_54 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR) | SELECT MIN(total) FROM table_name_54 WHERE rank < 7 AND gold > 16 AND bronze < 29 | ### Context: CREATE TABLE table_name_54 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR) ### Question: Name the least total with rank less than 7, gold more than 16 and bronze less than 29 ### Answer: SELECT MIN(total) FROM table_name_54 WHERE rank < 7 AND gold > 16 AND bronze < 29 |
Name the total number of total with silver of 6, bronze more than 5 and gold less than 4 | CREATE TABLE table_name_57 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR) | SELECT COUNT(total) FROM table_name_57 WHERE silver = 6 AND bronze > 5 AND gold < 4 | ### Context: CREATE TABLE table_name_57 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR) ### Question: Name the total number of total with silver of 6, bronze more than 5 and gold less than 4 ### Answer: SELECT COUNT(total) FROM table_name_57 WHERE silver = 6 AND bronze > 5 AND gold < 4 |
What score has a game greater than 11 on October 30? | CREATE TABLE table_name_1 (score VARCHAR, game VARCHAR, october VARCHAR) | SELECT score FROM table_name_1 WHERE game > 11 AND october = 30 | ### Context: CREATE TABLE table_name_1 (score VARCHAR, game VARCHAR, october VARCHAR) ### Question: What score has a game greater than 11 on October 30? ### Answer: SELECT score FROM table_name_1 WHERE game > 11 AND october = 30 |
What October has 0-2-2 as the record? | CREATE TABLE table_name_13 (october VARCHAR, record VARCHAR) | SELECT october FROM table_name_13 WHERE record = "0-2-2" | ### Context: CREATE TABLE table_name_13 (october VARCHAR, record VARCHAR) ### Question: What October has 0-2-2 as the record? ### Answer: SELECT october FROM table_name_13 WHERE record = "0-2-2" |
What average game has @ florida panthers as the opponent, 0-1-2 as the record, with an october greater than 8? | CREATE TABLE table_name_17 (game INTEGER, october VARCHAR, opponent VARCHAR, record VARCHAR) | SELECT AVG(game) FROM table_name_17 WHERE opponent = "@ florida panthers" AND record = "0-1-2" AND october > 8 | ### Context: CREATE TABLE table_name_17 (game INTEGER, october VARCHAR, opponent VARCHAR, record VARCHAR) ### Question: What average game has @ florida panthers as the opponent, 0-1-2 as the record, with an october greater than 8? ### Answer: SELECT AVG(game) FROM table_name_17 WHERE opponent = "@ florida panthers" AND record = "0-1-2" AND october > 8 |
Which Lost has Games of 64, and Champs smaller than 0? | CREATE TABLE table_name_99 (lost INTEGER, games VARCHAR, champs VARCHAR) | SELECT AVG(lost) FROM table_name_99 WHERE games = 64 AND champs < 0 | ### Context: CREATE TABLE table_name_99 (lost INTEGER, games VARCHAR, champs VARCHAR) ### Question: Which Lost has Games of 64, and Champs smaller than 0? ### Answer: SELECT AVG(lost) FROM table_name_99 WHERE games = 64 AND champs < 0 |
Which Draw is the lowest one that has Champs smaller than 0? | CREATE TABLE table_name_40 (draw INTEGER, champs INTEGER) | SELECT MIN(draw) FROM table_name_40 WHERE champs < 0 | ### Context: CREATE TABLE table_name_40 (draw INTEGER, champs INTEGER) ### Question: Which Draw is the lowest one that has Champs smaller than 0? ### Answer: SELECT MIN(draw) FROM table_name_40 WHERE champs < 0 |
Which Win/Lose Percentage has Champs larger than 0, and a Draw larger than 3? | CREATE TABLE table_name_92 (win_lose_percentage VARCHAR, champs VARCHAR, draw VARCHAR) | SELECT win_lose_percentage FROM table_name_92 WHERE champs > 0 AND draw > 3 | ### Context: CREATE TABLE table_name_92 (win_lose_percentage VARCHAR, champs VARCHAR, draw VARCHAR) ### Question: Which Win/Lose Percentage has Champs larger than 0, and a Draw larger than 3? ### Answer: SELECT win_lose_percentage FROM table_name_92 WHERE champs > 0 AND draw > 3 |
Which Champs is the average one that has a Draw larger than 2, and Games smaller than 60? | CREATE TABLE table_name_16 (champs INTEGER, draw VARCHAR, games VARCHAR) | SELECT AVG(champs) FROM table_name_16 WHERE draw > 2 AND games < 60 | ### Context: CREATE TABLE table_name_16 (champs INTEGER, draw VARCHAR, games VARCHAR) ### Question: Which Champs is the average one that has a Draw larger than 2, and Games smaller than 60? ### Answer: SELECT AVG(champs) FROM table_name_16 WHERE draw > 2 AND games < 60 |
What is the launch date for the Ushio dd-54? | CREATE TABLE table_name_55 (launched VARCHAR, name VARCHAR) | SELECT launched FROM table_name_55 WHERE name = "ushio dd-54" | ### Context: CREATE TABLE table_name_55 (launched VARCHAR, name VARCHAR) ### Question: What is the launch date for the Ushio dd-54? ### Answer: SELECT launched FROM table_name_55 WHERE name = "ushio dd-54" |
Which name has a Kanji of 朧? | CREATE TABLE table_name_77 (name VARCHAR, kanji VARCHAR) | SELECT name FROM table_name_77 WHERE kanji = "朧" | ### Context: CREATE TABLE table_name_77 (name VARCHAR, kanji VARCHAR) ### Question: Which name has a Kanji of 朧? ### Answer: SELECT name FROM table_name_77 WHERE kanji = "朧" |
What is the Kanji for the Ayanami dd-45? | CREATE TABLE table_name_84 (kanji VARCHAR, name VARCHAR) | SELECT kanji FROM table_name_84 WHERE name = "ayanami dd-45" | ### Context: CREATE TABLE table_name_84 (kanji VARCHAR, name VARCHAR) ### Question: What is the Kanji for the Ayanami dd-45? ### Answer: SELECT kanji FROM table_name_84 WHERE name = "ayanami dd-45" |
size (steps) that has a size (cents) of 58.54, and a just ratio of 28:27, and a just (cents) larger than 62.96 is what total number? | CREATE TABLE table_name_44 (size__steps_ VARCHAR, just__cents_ VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR) | SELECT COUNT(size__steps_) FROM table_name_44 WHERE size__cents_ = 58.54 AND just_ratio = "28:27" AND just__cents_ > 62.96 | ### Context: CREATE TABLE table_name_44 (size__steps_ VARCHAR, just__cents_ VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR) ### Question: size (steps) that has a size (cents) of 58.54, and a just ratio of 28:27, and a just (cents) larger than 62.96 is what total number? ### Answer: SELECT COUNT(size__steps_) FROM table_name_44 WHERE size__cents_ = 58.54 AND just_ratio = "28:27" AND just__cents_ > 62.96 |
size (steps) of 15, and a just (cents) larger than 435.08 is what highest size (cents)? | CREATE TABLE table_name_26 (size__cents_ INTEGER, size__steps_ VARCHAR, just__cents_ VARCHAR) | SELECT MAX(size__cents_) FROM table_name_26 WHERE size__steps_ = 15 AND just__cents_ > 435.08 | ### Context: CREATE TABLE table_name_26 (size__cents_ INTEGER, size__steps_ VARCHAR, just__cents_ VARCHAR) ### Question: size (steps) of 15, and a just (cents) larger than 435.08 is what highest size (cents)? ### Answer: SELECT MAX(size__cents_) FROM table_name_26 WHERE size__steps_ = 15 AND just__cents_ > 435.08 |
ratio of 16:13 has how many highest size (steps)? | CREATE TABLE table_name_38 (size__steps_ INTEGER, just_ratio VARCHAR) | SELECT MAX(size__steps_) FROM table_name_38 WHERE just_ratio = "16:13" | ### Context: CREATE TABLE table_name_38 (size__steps_ INTEGER, just_ratio VARCHAR) ### Question: ratio of 16:13 has how many highest size (steps)? ### Answer: SELECT MAX(size__steps_) FROM table_name_38 WHERE just_ratio = "16:13" |
ratio of 15:14, and a just (cents) larger than 119.44 is what average size (cents)? | CREATE TABLE table_name_40 (size__cents_ INTEGER, just_ratio VARCHAR, just__cents_ VARCHAR) | SELECT AVG(size__cents_) FROM table_name_40 WHERE just_ratio = "15:14" AND just__cents_ > 119.44 | ### Context: CREATE TABLE table_name_40 (size__cents_ INTEGER, just_ratio VARCHAR, just__cents_ VARCHAR) ### Question: ratio of 15:14, and a just (cents) larger than 119.44 is what average size (cents)? ### Answer: SELECT AVG(size__cents_) FROM table_name_40 WHERE just_ratio = "15:14" AND just__cents_ > 119.44 |
Who was the home team for the match at Stadion pod Vrmcem? | CREATE TABLE table_name_77 (home VARCHAR, venue VARCHAR) | SELECT home FROM table_name_77 WHERE venue = "stadion pod vrmcem" | ### Context: CREATE TABLE table_name_77 (home VARCHAR, venue VARCHAR) ### Question: Who was the home team for the match at Stadion pod Vrmcem? ### Answer: SELECT home FROM table_name_77 WHERE venue = "stadion pod vrmcem" |
Who were the guest team wehn the match score was 3:0 (0:2)? | CREATE TABLE table_name_76 (guest VARCHAR, score__first_match_ VARCHAR) | SELECT guest FROM table_name_76 WHERE score__first_match_ = "3:0 (0:2)" | ### Context: CREATE TABLE table_name_76 (guest VARCHAR, score__first_match_ VARCHAR) ### Question: Who were the guest team wehn the match score was 3:0 (0:2)? ### Answer: SELECT guest FROM table_name_76 WHERE score__first_match_ = "3:0 (0:2)" |
What Picture Coding Types have Chroma Format of 4:2:2 or 4:2:0 and the Name of 4:2:2 profile? | CREATE TABLE table_name_57 (picture_coding_types VARCHAR, chroma_format VARCHAR, name VARCHAR) | SELECT picture_coding_types FROM table_name_57 WHERE chroma_format = "4:2:2 or 4:2:0" AND name = "4:2:2 profile" | ### Context: CREATE TABLE table_name_57 (picture_coding_types VARCHAR, chroma_format VARCHAR, name VARCHAR) ### Question: What Picture Coding Types have Chroma Format of 4:2:2 or 4:2:0 and the Name of 4:2:2 profile? ### Answer: SELECT picture_coding_types FROM table_name_57 WHERE chroma_format = "4:2:2 or 4:2:0" AND name = "4:2:2 profile" |
Name the Intra DC Precision that has the Name main profile? | CREATE TABLE table_name_59 (intra_dc_precision VARCHAR, name VARCHAR) | SELECT intra_dc_precision FROM table_name_59 WHERE name = "main profile" | ### Context: CREATE TABLE table_name_59 (intra_dc_precision VARCHAR, name VARCHAR) ### Question: Name the Intra DC Precision that has the Name main profile? ### Answer: SELECT intra_dc_precision FROM table_name_59 WHERE name = "main profile" |
What Chroma Format that has both Picture Coding Types of i, p, b, and the Name of main profile? | CREATE TABLE table_name_69 (chroma_format VARCHAR, picture_coding_types VARCHAR, name VARCHAR) | SELECT chroma_format FROM table_name_69 WHERE picture_coding_types = "i, p, b" AND name = "main profile" | ### Context: CREATE TABLE table_name_69 (chroma_format VARCHAR, picture_coding_types VARCHAR, name VARCHAR) ### Question: What Chroma Format that has both Picture Coding Types of i, p, b, and the Name of main profile? ### Answer: SELECT chroma_format FROM table_name_69 WHERE picture_coding_types = "i, p, b" AND name = "main profile" |
What Player is from the west Division and the Team of special teams and is from the School Toledo Western Michigan? | CREATE TABLE table_name_21 (player VARCHAR, school VARCHAR, division VARCHAR, team VARCHAR) | SELECT player FROM table_name_21 WHERE division = "west" AND team = "special teams" AND school = "toledo western michigan" | ### Context: CREATE TABLE table_name_21 (player VARCHAR, school VARCHAR, division VARCHAR, team VARCHAR) ### Question: What Player is from the west Division and the Team of special teams and is from the School Toledo Western Michigan? ### Answer: SELECT player FROM table_name_21 WHERE division = "west" AND team = "special teams" AND school = "toledo western michigan" |
What are the lowest wins for Australia? | CREATE TABLE table_name_45 (wins INTEGER, country VARCHAR) | SELECT MIN(wins) FROM table_name_45 WHERE country = "australia" | ### Context: CREATE TABLE table_name_45 (wins INTEGER, country VARCHAR) ### Question: What are the lowest wins for Australia? ### Answer: SELECT MIN(wins) FROM table_name_45 WHERE country = "australia" |
How many winners did Minas, which has 0 third places, have? | CREATE TABLE table_name_47 (winners VARCHAR, third_place VARCHAR, team VARCHAR) | SELECT winners FROM table_name_47 WHERE third_place = "0" AND team = "minas" | ### Context: CREATE TABLE table_name_47 (winners VARCHAR, third_place VARCHAR, team VARCHAR) ### Question: How many winners did Minas, which has 0 third places, have? ### Answer: SELECT winners FROM table_name_47 WHERE third_place = "0" AND team = "minas" |
How many winners did Halcones uv xalapa have? | CREATE TABLE table_name_83 (winners VARCHAR, team VARCHAR) | SELECT winners FROM table_name_83 WHERE team = "halcones uv xalapa" | ### Context: CREATE TABLE table_name_83 (winners VARCHAR, team VARCHAR) ### Question: How many winners did Halcones uv xalapa have? ### Answer: SELECT winners FROM table_name_83 WHERE team = "halcones uv xalapa" |
How many runners-up did Espartanos de Margarita have? | CREATE TABLE table_name_84 (runners_up VARCHAR, team VARCHAR) | SELECT runners_up FROM table_name_84 WHERE team = "espartanos de margarita" | ### Context: CREATE TABLE table_name_84 (runners_up VARCHAR, team VARCHAR) ### Question: How many runners-up did Espartanos de Margarita have? ### Answer: SELECT runners_up FROM table_name_84 WHERE team = "espartanos de margarita" |
Which Opponent has Attendances of 60,594? | CREATE TABLE table_name_34 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_34 WHERE attendance = "60,594" | ### Context: CREATE TABLE table_name_34 (opponent VARCHAR, attendance VARCHAR) ### Question: Which Opponent has Attendances of 60,594? ### Answer: SELECT opponent FROM table_name_34 WHERE attendance = "60,594" |
When has a Result of l 27-7 and an Opponent of at minnesota vikings? | CREATE TABLE table_name_57 (date VARCHAR, result VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_57 WHERE result = "l 27-7" AND opponent = "at minnesota vikings" | ### Context: CREATE TABLE table_name_57 (date VARCHAR, result VARCHAR, opponent VARCHAR) ### Question: When has a Result of l 27-7 and an Opponent of at minnesota vikings? ### Answer: SELECT date FROM table_name_57 WHERE result = "l 27-7" AND opponent = "at minnesota vikings" |
When has a Week of 9? | CREATE TABLE table_name_60 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_60 WHERE week = 9 | ### Context: CREATE TABLE table_name_60 (date VARCHAR, week VARCHAR) ### Question: When has a Week of 9? ### Answer: SELECT date FROM table_name_60 WHERE week = 9 |
What date did the Steelers play against the New York Jets? | CREATE TABLE table_name_39 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_39 WHERE opponent = "new york jets" | ### Context: CREATE TABLE table_name_39 (date VARCHAR, opponent VARCHAR) ### Question: What date did the Steelers play against the New York Jets? ### Answer: SELECT date FROM table_name_39 WHERE opponent = "new york jets" |
What time did the game start during week 1? | CREATE TABLE table_name_9 (time___et__ VARCHAR, week VARCHAR) | SELECT time___et__ FROM table_name_9 WHERE week = 1 | ### Context: CREATE TABLE table_name_9 (time___et__ VARCHAR, week VARCHAR) ### Question: What time did the game start during week 1? ### Answer: SELECT time___et__ FROM table_name_9 WHERE week = 1 |
How many laps for mi-jack conquest racing when they went off course? | CREATE TABLE table_name_21 (laps INTEGER, team VARCHAR, time_retired VARCHAR) | SELECT SUM(laps) FROM table_name_21 WHERE team = "mi-jack conquest racing" AND time_retired = "off course" | ### Context: CREATE TABLE table_name_21 (laps INTEGER, team VARCHAR, time_retired VARCHAR) ### Question: How many laps for mi-jack conquest racing when they went off course? ### Answer: SELECT SUM(laps) FROM table_name_21 WHERE team = "mi-jack conquest racing" AND time_retired = "off course" |
How many laps are associated with a grid greater than 8, under 11 points, and will power? | CREATE TABLE table_name_29 (laps VARCHAR, driver VARCHAR, grid VARCHAR, points VARCHAR) | SELECT COUNT(laps) FROM table_name_29 WHERE grid > 8 AND points < 11 AND driver = "will power" | ### Context: CREATE TABLE table_name_29 (laps VARCHAR, driver VARCHAR, grid VARCHAR, points VARCHAR) ### Question: How many laps are associated with a grid greater than 8, under 11 points, and will power? ### Answer: SELECT COUNT(laps) FROM table_name_29 WHERE grid > 8 AND points < 11 AND driver = "will power" |
Name the average Bronze when silver is more than 3, gold is more than 1 and the total is 14 | CREATE TABLE table_name_52 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR) | SELECT AVG(bronze) FROM table_name_52 WHERE gold > 1 AND total = 14 AND silver > 3 | ### Context: CREATE TABLE table_name_52 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR) ### Question: Name the average Bronze when silver is more than 3, gold is more than 1 and the total is 14 ### Answer: SELECT AVG(bronze) FROM table_name_52 WHERE gold > 1 AND total = 14 AND silver > 3 |
Name the total number of total for rank of 7 and bronze less than 1 | CREATE TABLE table_name_68 (total VARCHAR, rank VARCHAR, bronze VARCHAR) | SELECT COUNT(total) FROM table_name_68 WHERE rank = "7" AND bronze < 1 | ### Context: CREATE TABLE table_name_68 (total VARCHAR, rank VARCHAR, bronze VARCHAR) ### Question: Name the total number of total for rank of 7 and bronze less than 1 ### Answer: SELECT COUNT(total) FROM table_name_68 WHERE rank = "7" AND bronze < 1 |
Name the most silver with bronze more than 1 and gold more than 1 with total less than 7 | CREATE TABLE table_name_46 (silver INTEGER, gold VARCHAR, bronze VARCHAR, total VARCHAR) | SELECT MAX(silver) FROM table_name_46 WHERE bronze > 1 AND total < 7 AND gold > 1 | ### Context: CREATE TABLE table_name_46 (silver INTEGER, gold VARCHAR, bronze VARCHAR, total VARCHAR) ### Question: Name the most silver with bronze more than 1 and gold more than 1 with total less than 7 ### Answer: SELECT MAX(silver) FROM table_name_46 WHERE bronze > 1 AND total < 7 AND gold > 1 |
Name the sum of total for gold less than 1 and bronze of 3 | CREATE TABLE table_name_56 (total INTEGER, gold VARCHAR, bronze VARCHAR) | SELECT SUM(total) FROM table_name_56 WHERE gold < 1 AND bronze = 3 | ### Context: CREATE TABLE table_name_56 (total INTEGER, gold VARCHAR, bronze VARCHAR) ### Question: Name the sum of total for gold less than 1 and bronze of 3 ### Answer: SELECT SUM(total) FROM table_name_56 WHERE gold < 1 AND bronze = 3 |
Name the total number of bronze with rank of 5 and silver more than 1 | CREATE TABLE table_name_39 (bronze VARCHAR, rank VARCHAR, silver VARCHAR) | SELECT COUNT(bronze) FROM table_name_39 WHERE rank = "5" AND silver > 1 | ### Context: CREATE TABLE table_name_39 (bronze VARCHAR, rank VARCHAR, silver VARCHAR) ### Question: Name the total number of bronze with rank of 5 and silver more than 1 ### Answer: SELECT COUNT(bronze) FROM table_name_39 WHERE rank = "5" AND silver > 1 |
What is the total population from the 2000 census for the municipality that has a 464.5 square km area and a population density in 2010 larger than 1840? | CREATE TABLE table_name_58 (population_2000_census VARCHAR, area__km²_ VARCHAR, population_density_2010___km²_ VARCHAR) | SELECT COUNT(population_2000_census) FROM table_name_58 WHERE area__km²_ = 464.5 AND population_density_2010___km²_ > 1840 | ### Context: CREATE TABLE table_name_58 (population_2000_census VARCHAR, area__km²_ VARCHAR, population_density_2010___km²_ VARCHAR) ### Question: What is the total population from the 2000 census for the municipality that has a 464.5 square km area and a population density in 2010 larger than 1840? ### Answer: SELECT COUNT(population_2000_census) FROM table_name_58 WHERE area__km²_ = 464.5 AND population_density_2010___km²_ > 1840 |
What was the sum of the population in 2010 for the division of japeri with an area of 82.9 squared km? | CREATE TABLE table_name_16 (population__2010_census_ INTEGER, administrative_division VARCHAR, area__km²_ VARCHAR) | SELECT SUM(population__2010_census_) FROM table_name_16 WHERE administrative_division = "japeri" AND area__km²_ < 82.9 | ### Context: CREATE TABLE table_name_16 (population__2010_census_ INTEGER, administrative_division VARCHAR, area__km²_ VARCHAR) ### Question: What was the sum of the population in 2010 for the division of japeri with an area of 82.9 squared km? ### Answer: SELECT SUM(population__2010_census_) FROM table_name_16 WHERE administrative_division = "japeri" AND area__km²_ < 82.9 |
What was the score for the game against Atlanta? | CREATE TABLE table_name_6 (score VARCHAR, visitor VARCHAR) | SELECT score FROM table_name_6 WHERE visitor = "atlanta" | ### Context: CREATE TABLE table_name_6 (score VARCHAR, visitor VARCHAR) ### Question: What was the score for the game against Atlanta? ### Answer: SELECT score FROM table_name_6 WHERE visitor = "atlanta" |
In the 1936 summer Olympics what was the date of a match that ended with a score of 6-1? | CREATE TABLE table_name_33 (date VARCHAR, competition VARCHAR, score VARCHAR) | SELECT date FROM table_name_33 WHERE competition = "1936 summer olympics" AND score = "6-1" | ### Context: CREATE TABLE table_name_33 (date VARCHAR, competition VARCHAR, score VARCHAR) ### Question: In the 1936 summer Olympics what was the date of a match that ended with a score of 6-1? ### Answer: SELECT date FROM table_name_33 WHERE competition = "1936 summer olympics" AND score = "6-1" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.