question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What is the name of the Outfielder that was picked prior to Pick 42? | CREATE TABLE table_name_63 (player VARCHAR, position VARCHAR, pick VARCHAR) | SELECT player FROM table_name_63 WHERE position = "outfielder" AND pick < 42 | ### Context: CREATE TABLE table_name_63 (player VARCHAR, position VARCHAR, pick VARCHAR) ### Question: What is the name of the Outfielder that was picked prior to Pick 42? ### Answer: SELECT player FROM table_name_63 WHERE position = "outfielder" AND pick < 42 |
What is the Week when anke huber chanda rubin shows for Semi finalists, and the Runner-up is meredith mcgrath larisa savchenko? | CREATE TABLE table_name_2 (week_of VARCHAR, semi_finalists VARCHAR, runner_up VARCHAR) | SELECT week_of FROM table_name_2 WHERE semi_finalists = "anke huber chanda rubin" AND runner_up = "meredith mcgrath larisa savchenko" | ### Context: CREATE TABLE table_name_2 (week_of VARCHAR, semi_finalists VARCHAR, runner_up VARCHAR) ### Question: What is the Week when anke huber chanda rubin shows for Semi finalists, and the Runner-up is meredith mcgrath larisa savchenko? ### Answer: SELECT week_of FROM table_name_2 WHERE semi_finalists = "anke huber chanda rubin" AND runner_up = "meredith mcgrath larisa savchenko" |
What is the Semi finalists when the Runner-up was katrina adams zina garrison-jackson? | CREATE TABLE table_name_55 (semi_finalists VARCHAR, runner_up VARCHAR) | SELECT semi_finalists FROM table_name_55 WHERE runner_up = "katrina adams zina garrison-jackson" | ### Context: CREATE TABLE table_name_55 (semi_finalists VARCHAR, runner_up VARCHAR) ### Question: What is the Semi finalists when the Runner-up was katrina adams zina garrison-jackson? ### Answer: SELECT semi_finalists FROM table_name_55 WHERE runner_up = "katrina adams zina garrison-jackson" |
What is the Winner when anke huber chanda rubin was semi finalist? | CREATE TABLE table_name_31 (winner VARCHAR, semi_finalists VARCHAR) | SELECT winner FROM table_name_31 WHERE semi_finalists = "anke huber chanda rubin" | ### Context: CREATE TABLE table_name_31 (winner VARCHAR, semi_finalists VARCHAR) ### Question: What is the Winner when anke huber chanda rubin was semi finalist? ### Answer: SELECT winner FROM table_name_31 WHERE semi_finalists = "anke huber chanda rubin" |
What is the Tier when the runner-up is chanda rubin caroline vis? | CREATE TABLE table_name_95 (tier VARCHAR, runner_up VARCHAR) | SELECT tier FROM table_name_95 WHERE runner_up = "chanda rubin caroline vis" | ### Context: CREATE TABLE table_name_95 (tier VARCHAR, runner_up VARCHAR) ### Question: What is the Tier when the runner-up is chanda rubin caroline vis? ### Answer: SELECT tier FROM table_name_95 WHERE runner_up = "chanda rubin caroline vis" |
What is the Week when the winner was mary joe fernández 6–4, 7–5? | CREATE TABLE table_name_88 (week_of VARCHAR, winner VARCHAR) | SELECT week_of FROM table_name_88 WHERE winner = "mary joe fernández 6–4, 7–5" | ### Context: CREATE TABLE table_name_88 (week_of VARCHAR, winner VARCHAR) ### Question: What is the Week when the winner was mary joe fernández 6–4, 7–5? ### Answer: SELECT week_of FROM table_name_88 WHERE winner = "mary joe fernández 6–4, 7–5" |
What is the Runner-up with the tier was tier ii, and a Winner of gigi fernández natalia zvereva 5–7, 6–1, 6–4? | CREATE TABLE table_name_43 (runner_up VARCHAR, tier VARCHAR, winner VARCHAR) | SELECT runner_up FROM table_name_43 WHERE tier = "tier ii" AND winner = "gigi fernández natalia zvereva 5–7, 6–1, 6–4" | ### Context: CREATE TABLE table_name_43 (runner_up VARCHAR, tier VARCHAR, winner VARCHAR) ### Question: What is the Runner-up with the tier was tier ii, and a Winner of gigi fernández natalia zvereva 5–7, 6–1, 6–4? ### Answer: SELECT runner_up FROM table_name_43 WHERE tier = "tier ii" AND winner = "gigi fernández natalia zvereva 5–7, 6–1, 6–4" |
Which week had safe as the result and Dolly Parton as the theme? | CREATE TABLE table_name_42 (week__number VARCHAR, result VARCHAR, theme VARCHAR) | SELECT week__number FROM table_name_42 WHERE result = "safe" AND theme = "dolly parton" | ### Context: CREATE TABLE table_name_42 (week__number VARCHAR, result VARCHAR, theme VARCHAR) ### Question: Which week had safe as the result and Dolly Parton as the theme? ### Answer: SELECT week__number FROM table_name_42 WHERE result = "safe" AND theme = "dolly parton" |
On which week was the beatles the original artist and the order # smaller than 10? | CREATE TABLE table_name_34 (week__number VARCHAR, original_artist VARCHAR, order__number VARCHAR) | SELECT week__number FROM table_name_34 WHERE original_artist = "the beatles" AND order__number < 10 | ### Context: CREATE TABLE table_name_34 (week__number VARCHAR, original_artist VARCHAR, order__number VARCHAR) ### Question: On which week was the beatles the original artist and the order # smaller than 10? ### Answer: SELECT week__number FROM table_name_34 WHERE original_artist = "the beatles" AND order__number < 10 |
Which original artist had 5 as their order #? | CREATE TABLE table_name_89 (original_artist VARCHAR, order__number VARCHAR) | SELECT original_artist FROM table_name_89 WHERE order__number = 5 | ### Context: CREATE TABLE table_name_89 (original_artist VARCHAR, order__number VARCHAR) ### Question: Which original artist had 5 as their order #? ### Answer: SELECT original_artist FROM table_name_89 WHERE order__number = 5 |
Which nominee was nominated in the Outstanding Director of a Musical category? | CREATE TABLE table_name_17 (nominee VARCHAR, category VARCHAR) | SELECT nominee FROM table_name_17 WHERE category = "outstanding director of a musical" | ### Context: CREATE TABLE table_name_17 (nominee VARCHAR, category VARCHAR) ### Question: Which nominee was nominated in the Outstanding Director of a Musical category? ### Answer: SELECT nominee FROM table_name_17 WHERE category = "outstanding director of a musical" |
What is the result for Brent Spiner? | CREATE TABLE table_name_46 (result VARCHAR, nominee VARCHAR) | SELECT result FROM table_name_46 WHERE nominee = "brent spiner" | ### Context: CREATE TABLE table_name_46 (result VARCHAR, nominee VARCHAR) ### Question: What is the result for Brent Spiner? ### Answer: SELECT result FROM table_name_46 WHERE nominee = "brent spiner" |
What is the number of games for Shaun Stonerook? | CREATE TABLE table_name_86 (games INTEGER, name VARCHAR) | SELECT MIN(games) FROM table_name_86 WHERE name = "shaun stonerook" | ### Context: CREATE TABLE table_name_86 (games INTEGER, name VARCHAR) ### Question: What is the number of games for Shaun Stonerook? ### Answer: SELECT MIN(games) FROM table_name_86 WHERE name = "shaun stonerook" |
What is the highest total number of medals of the nation with less than 1 bronzes and less than 0 silver medals? | CREATE TABLE table_name_21 (total INTEGER, bronze VARCHAR, silver VARCHAR) | SELECT MAX(total) FROM table_name_21 WHERE bronze < 1 AND silver < 0 | ### Context: CREATE TABLE table_name_21 (total INTEGER, bronze VARCHAR, silver VARCHAR) ### Question: What is the highest total number of medals of the nation with less than 1 bronzes and less than 0 silver medals? ### Answer: SELECT MAX(total) FROM table_name_21 WHERE bronze < 1 AND silver < 0 |
Total weeks of 49,980 attendance? | CREATE TABLE table_name_55 (week INTEGER, attendance VARCHAR) | SELECT SUM(week) FROM table_name_55 WHERE attendance = 49 OFFSET 980 | ### Context: CREATE TABLE table_name_55 (week INTEGER, attendance VARCHAR) ### Question: Total weeks of 49,980 attendance? ### Answer: SELECT SUM(week) FROM table_name_55 WHERE attendance = 49 OFFSET 980 |
Mean attendance for December 22, 1980? | CREATE TABLE table_name_91 (attendance INTEGER, date VARCHAR) | SELECT AVG(attendance) FROM table_name_91 WHERE date = "december 22, 1980" | ### Context: CREATE TABLE table_name_91 (attendance INTEGER, date VARCHAR) ### Question: Mean attendance for December 22, 1980? ### Answer: SELECT AVG(attendance) FROM table_name_91 WHERE date = "december 22, 1980" |
Overall attendance for week 4? | CREATE TABLE table_name_63 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_63 WHERE week = 4 | ### Context: CREATE TABLE table_name_63 (attendance VARCHAR, week VARCHAR) ### Question: Overall attendance for week 4? ### Answer: SELECT attendance FROM table_name_63 WHERE week = 4 |
What was in 2007 that has a 3r of 1999? | CREATE TABLE table_name_10 (Id VARCHAR) | SELECT 2007 FROM table_name_10 WHERE 1999 = "3r" | ### Context: CREATE TABLE table_name_10 (Id VARCHAR) ### Question: What was in 2007 that has a 3r of 1999? ### Answer: SELECT 2007 FROM table_name_10 WHERE 1999 = "3r" |
What was in 2007 that is from 2004 0f 2r and 2010 of A? | CREATE TABLE table_name_73 (Id VARCHAR) | SELECT 2007 FROM table_name_73 WHERE 2004 = "2r" AND 2010 = "a" | ### Context: CREATE TABLE table_name_73 (Id VARCHAR) ### Question: What was in 2007 that is from 2004 0f 2r and 2010 of A? ### Answer: SELECT 2007 FROM table_name_73 WHERE 2004 = "2r" AND 2010 = "a" |
What is in 2001, that has the year 2006, 2r, and in 2010 an A? | CREATE TABLE table_name_71 (Id VARCHAR) | SELECT 2001 FROM table_name_71 WHERE 2006 = "2r" AND 2010 = "a" | ### Context: CREATE TABLE table_name_71 (Id VARCHAR) ### Question: What is in 2001, that has the year 2006, 2r, and in 2010 an A? ### Answer: SELECT 2001 FROM table_name_71 WHERE 2006 = "2r" AND 2010 = "a" |
Who was awarded after 1947 in the category of, the best actor in a leading role? | CREATE TABLE table_name_90 (award VARCHAR, year VARCHAR, category VARCHAR) | SELECT award FROM table_name_90 WHERE year > 1947 AND category = "best actor in a leading role" | ### Context: CREATE TABLE table_name_90 (award VARCHAR, year VARCHAR, category VARCHAR) ### Question: Who was awarded after 1947 in the category of, the best actor in a leading role? ### Answer: SELECT award FROM table_name_90 WHERE year > 1947 AND category = "best actor in a leading role" |
Which Opponent has a Method of tko, and a Location of elgin, illinois, usa on 2001-02-11? | CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR, method VARCHAR, location VARCHAR) | SELECT opponent FROM table_name_7 WHERE method = "tko" AND location = "elgin, illinois, usa" AND date = "2001-02-11" | ### Context: CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR, method VARCHAR, location VARCHAR) ### Question: Which Opponent has a Method of tko, and a Location of elgin, illinois, usa on 2001-02-11? ### Answer: SELECT opponent FROM table_name_7 WHERE method = "tko" AND location = "elgin, illinois, usa" AND date = "2001-02-11" |
Which Round has a Location of auckland, new zealand, and a Method of tko on 1994-11-24? | CREATE TABLE table_name_83 (round INTEGER, date VARCHAR, location VARCHAR, method VARCHAR) | SELECT AVG(round) FROM table_name_83 WHERE location = "auckland, new zealand" AND method = "tko" AND date = "1994-11-24" | ### Context: CREATE TABLE table_name_83 (round INTEGER, date VARCHAR, location VARCHAR, method VARCHAR) ### Question: Which Round has a Location of auckland, new zealand, and a Method of tko on 1994-11-24? ### Answer: SELECT AVG(round) FROM table_name_83 WHERE location = "auckland, new zealand" AND method = "tko" AND date = "1994-11-24" |
Which highest Round has a Result of loss? | CREATE TABLE table_name_27 (round INTEGER, result VARCHAR) | SELECT MAX(round) FROM table_name_27 WHERE result = "loss" | ### Context: CREATE TABLE table_name_27 (round INTEGER, result VARCHAR) ### Question: Which highest Round has a Result of loss? ### Answer: SELECT MAX(round) FROM table_name_27 WHERE result = "loss" |
Which Location has a Method of decision? | CREATE TABLE table_name_40 (location VARCHAR, method VARCHAR) | SELECT location FROM table_name_40 WHERE method = "decision" | ### Context: CREATE TABLE table_name_40 (location VARCHAR, method VARCHAR) ### Question: Which Location has a Method of decision? ### Answer: SELECT location FROM table_name_40 WHERE method = "decision" |
What tournament has 1r as a 2004, and 1r as a 2007? | CREATE TABLE table_name_77 (tournament VARCHAR) | SELECT tournament FROM table_name_77 WHERE 2004 = "1r" AND 2007 = "1r" | ### Context: CREATE TABLE table_name_77 (tournament VARCHAR) ### Question: What tournament has 1r as a 2004, and 1r as a 2007? ### Answer: SELECT tournament FROM table_name_77 WHERE 2004 = "1r" AND 2007 = "1r" |
What 2012 has q2 as the 2010, and wimbledon as the tournament? | CREATE TABLE table_name_31 (tournament VARCHAR) | SELECT 2012 FROM table_name_31 WHERE 2010 = "q2" AND tournament = "wimbledon" | ### Context: CREATE TABLE table_name_31 (tournament VARCHAR) ### Question: What 2012 has q2 as the 2010, and wimbledon as the tournament? ### Answer: SELECT 2012 FROM table_name_31 WHERE 2010 = "q2" AND tournament = "wimbledon" |
What 2006 has grand slam tournaments of 2010? | CREATE TABLE table_name_95 (Id VARCHAR) | SELECT 2006 FROM table_name_95 WHERE 2010 = "grand slam tournaments" | ### Context: CREATE TABLE table_name_95 (Id VARCHAR) ### Question: What 2006 has grand slam tournaments of 2010? ### Answer: SELECT 2006 FROM table_name_95 WHERE 2010 = "grand slam tournaments" |
What 2006 has grand slam tournaments of 2005? | CREATE TABLE table_name_27 (Id VARCHAR) | SELECT 2006 FROM table_name_27 WHERE 2005 = "grand slam tournaments" | ### Context: CREATE TABLE table_name_27 (Id VARCHAR) ### Question: What 2006 has grand slam tournaments of 2005? ### Answer: SELECT 2006 FROM table_name_27 WHERE 2005 = "grand slam tournaments" |
What 2006 has q2 as the 2007? | CREATE TABLE table_name_34 (Id VARCHAR) | SELECT 2006 FROM table_name_34 WHERE 2007 = "q2" | ### Context: CREATE TABLE table_name_34 (Id VARCHAR) ### Question: What 2006 has q2 as the 2007? ### Answer: SELECT 2006 FROM table_name_34 WHERE 2007 = "q2" |
What are the losses where the award is Mike Miller (Smoy)? | CREATE TABLE table_name_34 (losses VARCHAR, awards VARCHAR) | SELECT losses FROM table_name_34 WHERE awards = "mike miller (smoy)" | ### Context: CREATE TABLE table_name_34 (losses VARCHAR, awards VARCHAR) ### Question: What are the losses where the award is Mike Miller (Smoy)? ### Answer: SELECT losses FROM table_name_34 WHERE awards = "mike miller (smoy)" |
Where the wins are 46, what is the win%? | CREATE TABLE table_name_9 (win_percentage VARCHAR, wins VARCHAR) | SELECT win_percentage FROM table_name_9 WHERE wins = "46" | ### Context: CREATE TABLE table_name_9 (win_percentage VARCHAR, wins VARCHAR) ### Question: Where the wins are 46, what is the win%? ### Answer: SELECT win_percentage FROM table_name_9 WHERE wins = "46" |
Where the Vancouver Grizzlies is the awards, what is the conference? | CREATE TABLE table_name_29 (conference VARCHAR, awards VARCHAR) | SELECT conference FROM table_name_29 WHERE awards = "vancouver grizzlies" | ### Context: CREATE TABLE table_name_29 (conference VARCHAR, awards VARCHAR) ### Question: Where the Vancouver Grizzlies is the awards, what is the conference? ### Answer: SELECT conference FROM table_name_29 WHERE awards = "vancouver grizzlies" |
What is the highest 1987 value with a 1995 value less than 1995 and a 1999 less than 9? | CREATE TABLE table_name_48 (Id VARCHAR) | SELECT MAX(1987) FROM table_name_48 WHERE 1995 < 1995 AND 1999 < 9 | ### Context: CREATE TABLE table_name_48 (Id VARCHAR) ### Question: What is the highest 1987 value with a 1995 value less than 1995 and a 1999 less than 9? ### Answer: SELECT MAX(1987) FROM table_name_48 WHERE 1995 < 1995 AND 1999 < 9 |
What is the highest 2003 value with a 1990 greater than 74, a 125 value in 1985, and a 1995 value greater than 130? | CREATE TABLE table_name_84 (Id VARCHAR) | SELECT MAX(2003) FROM table_name_84 WHERE 1990 > 74 AND 1985 = 125 AND 1995 > 130 | ### Context: CREATE TABLE table_name_84 (Id VARCHAR) ### Question: What is the highest 2003 value with a 1990 greater than 74, a 125 value in 1985, and a 1995 value greater than 130? ### Answer: SELECT MAX(2003) FROM table_name_84 WHERE 1990 > 74 AND 1985 = 125 AND 1995 > 130 |
What is the highest 2007 value with a 1985 value greater than 52, a 1987 value greater than 130, and a 1990 less than 1990? | CREATE TABLE table_name_56 (Id VARCHAR) | SELECT MAX(2007) FROM table_name_56 WHERE 1985 > 52 AND 1987 > 130 AND 1990 < 1990 | ### Context: CREATE TABLE table_name_56 (Id VARCHAR) ### Question: What is the highest 2007 value with a 1985 value greater than 52, a 1987 value greater than 130, and a 1990 less than 1990? ### Answer: SELECT MAX(2007) FROM table_name_56 WHERE 1985 > 52 AND 1987 > 130 AND 1990 < 1990 |
What is the highest 1995 with a 1990 less than 36, a 1987 less than 1987, and a 2007 value greater than 107? | CREATE TABLE table_name_4 (Id VARCHAR) | SELECT MAX(1995) FROM table_name_4 WHERE 1990 > 36 AND 1987 < 1987 AND 2007 > 107 | ### Context: CREATE TABLE table_name_4 (Id VARCHAR) ### Question: What is the highest 1995 with a 1990 less than 36, a 1987 less than 1987, and a 2007 value greater than 107? ### Answer: SELECT MAX(1995) FROM table_name_4 WHERE 1990 > 36 AND 1987 < 1987 AND 2007 > 107 |
What is the highest 2003 value with a 2011 less than 107 and a 1995 value less than 17? | CREATE TABLE table_name_19 (Id VARCHAR) | SELECT MAX(2003) FROM table_name_19 WHERE 2011 < 107 AND 1995 < 17 | ### Context: CREATE TABLE table_name_19 (Id VARCHAR) ### Question: What is the highest 2003 value with a 2011 less than 107 and a 1995 value less than 17? ### Answer: SELECT MAX(2003) FROM table_name_19 WHERE 2011 < 107 AND 1995 < 17 |
What is the name of the tournament with 11 or more events a top-5 of 0 and a top-25 of 2? | CREATE TABLE table_name_58 (tournament VARCHAR, top_25 VARCHAR, events VARCHAR, top_5 VARCHAR) | SELECT tournament FROM table_name_58 WHERE events > 11 AND top_5 = 0 AND top_25 = 2 | ### Context: CREATE TABLE table_name_58 (tournament VARCHAR, top_25 VARCHAR, events VARCHAR, top_5 VARCHAR) ### Question: What is the name of the tournament with 11 or more events a top-5 of 0 and a top-25 of 2? ### Answer: SELECT tournament FROM table_name_58 WHERE events > 11 AND top_5 = 0 AND top_25 = 2 |
What is the most top-10 of the team with 8 cuts made and less than 11 events? | CREATE TABLE table_name_40 (top_10 INTEGER, cuts_made VARCHAR, events VARCHAR) | SELECT MAX(top_10) FROM table_name_40 WHERE cuts_made = 8 AND events < 11 | ### Context: CREATE TABLE table_name_40 (top_10 INTEGER, cuts_made VARCHAR, events VARCHAR) ### Question: What is the most top-10 of the team with 8 cuts made and less than 11 events? ### Answer: SELECT MAX(top_10) FROM table_name_40 WHERE cuts_made = 8 AND events < 11 |
What is the American Labor ticket when Henry Epstein is the liberal ticket? | CREATE TABLE table_name_3 (american_labor_ticket VARCHAR, liberal_ticket VARCHAR) | SELECT american_labor_ticket FROM table_name_3 WHERE liberal_ticket = "henry epstein" | ### Context: CREATE TABLE table_name_3 (american_labor_ticket VARCHAR, liberal_ticket VARCHAR) ### Question: What is the American Labor ticket when Henry Epstein is the liberal ticket? ### Answer: SELECT american_labor_ticket FROM table_name_3 WHERE liberal_ticket = "henry epstein" |
What is the name on the Communist ticket with an Office of judge of the court of appeals? | CREATE TABLE table_name_63 (communist_ticket VARCHAR, office VARCHAR) | SELECT communist_ticket FROM table_name_63 WHERE office = "judge of the court of appeals" | ### Context: CREATE TABLE table_name_63 (communist_ticket VARCHAR, office VARCHAR) ### Question: What is the name on the Communist ticket with an Office of judge of the court of appeals? ### Answer: SELECT communist_ticket FROM table_name_63 WHERE office = "judge of the court of appeals" |
What is the Office when spencer c. young is on the liberal ticket?? | CREATE TABLE table_name_74 (office VARCHAR, liberal_ticket VARCHAR) | SELECT office FROM table_name_74 WHERE liberal_ticket = "spencer c. young" | ### Context: CREATE TABLE table_name_74 (office VARCHAR, liberal_ticket VARCHAR) ### Question: What is the Office when spencer c. young is on the liberal ticket?? ### Answer: SELECT office FROM table_name_74 WHERE liberal_ticket = "spencer c. young" |
What is the name on the Democratic ticket when the Liberal ticket is erastus corning 2nd? | CREATE TABLE table_name_43 (democratic_ticket VARCHAR, liberal_ticket VARCHAR) | SELECT democratic_ticket FROM table_name_43 WHERE liberal_ticket = "erastus corning 2nd" | ### Context: CREATE TABLE table_name_43 (democratic_ticket VARCHAR, liberal_ticket VARCHAR) ### Question: What is the name on the Democratic ticket when the Liberal ticket is erastus corning 2nd? ### Answer: SELECT democratic_ticket FROM table_name_43 WHERE liberal_ticket = "erastus corning 2nd" |
What name is on the Republican ticket when the American Labor ticket was spencer c. young? | CREATE TABLE table_name_37 (republican_ticket VARCHAR, american_labor_ticket VARCHAR) | SELECT republican_ticket FROM table_name_37 WHERE american_labor_ticket = "spencer c. young" | ### Context: CREATE TABLE table_name_37 (republican_ticket VARCHAR, american_labor_ticket VARCHAR) ### Question: What name is on the Republican ticket when the American Labor ticket was spencer c. young? ### Answer: SELECT republican_ticket FROM table_name_37 WHERE american_labor_ticket = "spencer c. young" |
What is the entered number for the person with a time of 29:28? | CREATE TABLE table_name_74 (entered VARCHAR, time VARCHAR) | SELECT entered FROM table_name_74 WHERE time = "29:28" | ### Context: CREATE TABLE table_name_74 (entered VARCHAR, time VARCHAR) ### Question: What is the entered number for the person with a time of 29:28? ### Answer: SELECT entered FROM table_name_74 WHERE time = "29:28" |
What is the number eliminated for the person with a time of 12:38? | CREATE TABLE table_name_15 (eliminated VARCHAR, time VARCHAR) | SELECT eliminated AS by FROM table_name_15 WHERE time = "12:38" | ### Context: CREATE TABLE table_name_15 (eliminated VARCHAR, time VARCHAR) ### Question: What is the number eliminated for the person with a time of 12:38? ### Answer: SELECT eliminated AS by FROM table_name_15 WHERE time = "12:38" |
What is the highest Attendance with a Result that is w 24-21? | CREATE TABLE table_name_50 (attendance INTEGER, result VARCHAR) | SELECT MAX(attendance) FROM table_name_50 WHERE result = "w 24-21" | ### Context: CREATE TABLE table_name_50 (attendance INTEGER, result VARCHAR) ### Question: What is the highest Attendance with a Result that is w 24-21? ### Answer: SELECT MAX(attendance) FROM table_name_50 WHERE result = "w 24-21" |
What Date has a time of (seconds) 42.172? | CREATE TABLE table_name_73 (date VARCHAR, time__seconds_ VARCHAR) | SELECT date FROM table_name_73 WHERE time__seconds_ = 42.172 | ### Context: CREATE TABLE table_name_73 (date VARCHAR, time__seconds_ VARCHAR) ### Question: What Date has a time of (seconds) 42.172? ### Answer: SELECT date FROM table_name_73 WHERE time__seconds_ = 42.172 |
What is the Record for 23 january 2010, with a time smaller than 42.679 seconds? | CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR, time__seconds_ VARCHAR) | SELECT record FROM table_name_42 WHERE date = "23 january 2010" AND time__seconds_ < 42.679 | ### Context: CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR, time__seconds_ VARCHAR) ### Question: What is the Record for 23 january 2010, with a time smaller than 42.679 seconds? ### Answer: SELECT record FROM table_name_42 WHERE date = "23 january 2010" AND time__seconds_ < 42.679 |
What is the total number of Points that were in a Year that was 2005? | CREATE TABLE table_name_18 (points VARCHAR, year VARCHAR) | SELECT COUNT(points) FROM table_name_18 WHERE year = "2005" | ### Context: CREATE TABLE table_name_18 (points VARCHAR, year VARCHAR) ### Question: What is the total number of Points that were in a Year that was 2005? ### Answer: SELECT COUNT(points) FROM table_name_18 WHERE year = "2005" |
What is the lowest Shots with a Point that is larger than 32? | CREATE TABLE table_name_38 (shots INTEGER, points INTEGER) | SELECT MIN(shots) FROM table_name_38 WHERE points > 32 | ### Context: CREATE TABLE table_name_38 (shots INTEGER, points INTEGER) ### Question: What is the lowest Shots with a Point that is larger than 32? ### Answer: SELECT MIN(shots) FROM table_name_38 WHERE points > 32 |
Which category had a year of 1991? | CREATE TABLE table_name_41 (category VARCHAR, year VARCHAR) | SELECT category FROM table_name_41 WHERE year = 1991 | ### Context: CREATE TABLE table_name_41 (category VARCHAR, year VARCHAR) ### Question: Which category had a year of 1991? ### Answer: SELECT category FROM table_name_41 WHERE year = 1991 |
What is the score having a runner-up of Magdalena Maleeva? | CREATE TABLE table_name_45 (score VARCHAR, runner_up VARCHAR) | SELECT score FROM table_name_45 WHERE runner_up = "magdalena maleeva" | ### Context: CREATE TABLE table_name_45 (score VARCHAR, runner_up VARCHAR) ### Question: What is the score having a runner-up of Magdalena Maleeva? ### Answer: SELECT score FROM table_name_45 WHERE runner_up = "magdalena maleeva" |
What year was John m. Belk Arena built? | CREATE TABLE table_name_74 (year_built VARCHAR, venue VARCHAR) | SELECT year_built FROM table_name_74 WHERE venue = "john m. belk arena" | ### Context: CREATE TABLE table_name_74 (year_built VARCHAR, venue VARCHAR) ### Question: What year was John m. Belk Arena built? ### Answer: SELECT year_built FROM table_name_74 WHERE venue = "john m. belk arena" |
What type of environment is the venue that was built in 2003? | CREATE TABLE table_name_11 (environment VARCHAR, year_built VARCHAR) | SELECT environment FROM table_name_11 WHERE year_built = "2003" | ### Context: CREATE TABLE table_name_11 (environment VARCHAR, year_built VARCHAR) ### Question: What type of environment is the venue that was built in 2003? ### Answer: SELECT environment FROM table_name_11 WHERE year_built = "2003" |
What year was transamerica field built in? | CREATE TABLE table_name_10 (year_built VARCHAR, venue VARCHAR) | SELECT year_built FROM table_name_10 WHERE venue = "transamerica field" | ### Context: CREATE TABLE table_name_10 (year_built VARCHAR, venue VARCHAR) ### Question: What year was transamerica field built in? ### Answer: SELECT year_built FROM table_name_10 WHERE venue = "transamerica field" |
What is the location of the venue owned by johnson c. smith university? | CREATE TABLE table_name_26 (location VARCHAR, owner VARCHAR) | SELECT location FROM table_name_26 WHERE owner = "johnson c. smith university" | ### Context: CREATE TABLE table_name_26 (location VARCHAR, owner VARCHAR) ### Question: What is the location of the venue owned by johnson c. smith university? ### Answer: SELECT location FROM table_name_26 WHERE owner = "johnson c. smith university" |
What is the venue when the score was 8-2? | CREATE TABLE table_name_61 (venue VARCHAR, score VARCHAR) | SELECT venue FROM table_name_61 WHERE score = "8-2" | ### Context: CREATE TABLE table_name_61 (venue VARCHAR, score VARCHAR) ### Question: What is the venue when the score was 8-2? ### Answer: SELECT venue FROM table_name_61 WHERE score = "8-2" |
What is the Score for the 1999 fifa confederations cup? | CREATE TABLE table_name_96 (score VARCHAR, competition VARCHAR) | SELECT score FROM table_name_96 WHERE competition = "1999 fifa confederations cup" | ### Context: CREATE TABLE table_name_96 (score VARCHAR, competition VARCHAR) ### Question: What is the Score for the 1999 fifa confederations cup? ### Answer: SELECT score FROM table_name_96 WHERE competition = "1999 fifa confederations cup" |
What is the result on 30 june 1995? | CREATE TABLE table_name_2 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_2 WHERE date = "30 june 1995" | ### Context: CREATE TABLE table_name_2 (result VARCHAR, date VARCHAR) ### Question: What is the result on 30 june 1995? ### Answer: SELECT result FROM table_name_2 WHERE date = "30 june 1995" |
What is the Date of the 1999 fifa confederations cup? | CREATE TABLE table_name_45 (date VARCHAR, competition VARCHAR) | SELECT date FROM table_name_45 WHERE competition = "1999 fifa confederations cup" | ### Context: CREATE TABLE table_name_45 (date VARCHAR, competition VARCHAR) ### Question: What is the Date of the 1999 fifa confederations cup? ### Answer: SELECT date FROM table_name_45 WHERE competition = "1999 fifa confederations cup" |
What is the Venue for the 2002 fifa world cup qualifier, and a Result of 8-2? | CREATE TABLE table_name_23 (venue VARCHAR, competition VARCHAR, result VARCHAR) | SELECT venue FROM table_name_23 WHERE competition = "2002 fifa world cup qualifier" AND result = "8-2" | ### Context: CREATE TABLE table_name_23 (venue VARCHAR, competition VARCHAR, result VARCHAR) ### Question: What is the Venue for the 2002 fifa world cup qualifier, and a Result of 8-2? ### Answer: SELECT venue FROM table_name_23 WHERE competition = "2002 fifa world cup qualifier" AND result = "8-2" |
What is the Score on 11 march 2001? | CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_76 WHERE date = "11 march 2001" | ### Context: CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR) ### Question: What is the Score on 11 march 2001? ### Answer: SELECT score FROM table_name_76 WHERE date = "11 march 2001" |
What is the symbol of the element with an empirical t of 190 and a calculated value of 135? | CREATE TABLE table_name_25 (symbol VARCHAR, empirical_† VARCHAR, calculated VARCHAR) | SELECT symbol FROM table_name_25 WHERE empirical_† = "190" AND calculated = "135" | ### Context: CREATE TABLE table_name_25 (symbol VARCHAR, empirical_† VARCHAR, calculated VARCHAR) ### Question: What is the symbol of the element with an empirical t of 190 and a calculated value of 135? ### Answer: SELECT symbol FROM table_name_25 WHERE empirical_† = "190" AND calculated = "135" |
What is the name of the element with a calculated value of 56? | CREATE TABLE table_name_57 (name VARCHAR, calculated VARCHAR) | SELECT name FROM table_name_57 WHERE calculated = "56" | ### Context: CREATE TABLE table_name_57 (name VARCHAR, calculated VARCHAR) ### Question: What is the name of the element with a calculated value of 56? ### Answer: SELECT name FROM table_name_57 WHERE calculated = "56" |
What is the covalent (single bond) value of sodium? | CREATE TABLE table_name_21 (covalent__single_bond_ VARCHAR, name VARCHAR) | SELECT covalent__single_bond_ FROM table_name_21 WHERE name = "sodium" | ### Context: CREATE TABLE table_name_21 (covalent__single_bond_ VARCHAR, name VARCHAR) ### Question: What is the covalent (single bond) value of sodium? ### Answer: SELECT covalent__single_bond_ FROM table_name_21 WHERE name = "sodium" |
What is the total height of the player with a birthdate on September 2, 1973? | CREATE TABLE table_name_65 (height__cm_ VARCHAR, birthdate VARCHAR) | SELECT COUNT(height__cm_) FROM table_name_65 WHERE birthdate = "september 2, 1973" | ### Context: CREATE TABLE table_name_65 (height__cm_ VARCHAR, birthdate VARCHAR) ### Question: What is the total height of the player with a birthdate on September 2, 1973? ### Answer: SELECT COUNT(height__cm_) FROM table_name_65 WHERE birthdate = "september 2, 1973" |
What is the birthdate of Robert Esche? | CREATE TABLE table_name_39 (birthdate VARCHAR, name VARCHAR) | SELECT birthdate FROM table_name_39 WHERE name = "robert esche" | ### Context: CREATE TABLE table_name_39 (birthdate VARCHAR, name VARCHAR) ### Question: What is the birthdate of Robert Esche? ### Answer: SELECT birthdate FROM table_name_39 WHERE name = "robert esche" |
What is the position of the player with a jersey # greater than 30 and a December 23, 1986 birthdate? | CREATE TABLE table_name_83 (position VARCHAR, jersey__number VARCHAR, birthdate VARCHAR) | SELECT position FROM table_name_83 WHERE jersey__number > 30 AND birthdate = "december 23, 1986" | ### Context: CREATE TABLE table_name_83 (position VARCHAR, jersey__number VARCHAR, birthdate VARCHAR) ### Question: What is the position of the player with a jersey # greater than 30 and a December 23, 1986 birthdate? ### Answer: SELECT position FROM table_name_83 WHERE jersey__number > 30 AND birthdate = "december 23, 1986" |
What is the weight of John-Michael Liles? | CREATE TABLE table_name_44 (weight__kg_ VARCHAR, name VARCHAR) | SELECT weight__kg_ FROM table_name_44 WHERE name = "john-michael liles" | ### Context: CREATE TABLE table_name_44 (weight__kg_ VARCHAR, name VARCHAR) ### Question: What is the weight of John-Michael Liles? ### Answer: SELECT weight__kg_ FROM table_name_44 WHERE name = "john-michael liles" |
What was the first leg score during the quarter-final game? | CREATE TABLE table_name_16 (first_leg VARCHAR, round VARCHAR) | SELECT first_leg FROM table_name_16 WHERE round = "quarter-final" | ### Context: CREATE TABLE table_name_16 (first_leg VARCHAR, round VARCHAR) ### Question: What was the first leg score during the quarter-final game? ### Answer: SELECT first_leg FROM table_name_16 WHERE round = "quarter-final" |
What was the aggregate score for the game against Dynamo Dresden? | CREATE TABLE table_name_66 (aggregate_score VARCHAR, opposition VARCHAR) | SELECT aggregate_score FROM table_name_66 WHERE opposition = "dynamo dresden" | ### Context: CREATE TABLE table_name_66 (aggregate_score VARCHAR, opposition VARCHAR) ### Question: What was the aggregate score for the game against Dynamo Dresden? ### Answer: SELECT aggregate_score FROM table_name_66 WHERE opposition = "dynamo dresden" |
Who was the opposing team in the 3rd round? | CREATE TABLE table_name_69 (opposition VARCHAR, round VARCHAR) | SELECT opposition FROM table_name_69 WHERE round = "3rd" | ### Context: CREATE TABLE table_name_69 (opposition VARCHAR, round VARCHAR) ### Question: Who was the opposing team in the 3rd round? ### Answer: SELECT opposition FROM table_name_69 WHERE round = "3rd" |
Which nation has 0 golds and more than 1 silver? | CREATE TABLE table_name_20 (nation VARCHAR, gold VARCHAR, silver VARCHAR) | SELECT nation FROM table_name_20 WHERE gold = 0 AND silver > 1 | ### Context: CREATE TABLE table_name_20 (nation VARCHAR, gold VARCHAR, silver VARCHAR) ### Question: Which nation has 0 golds and more than 1 silver? ### Answer: SELECT nation FROM table_name_20 WHERE gold = 0 AND silver > 1 |
What is the smallest total that has under 3 golds, more than 0 silvers and bronzes? | CREATE TABLE table_name_36 (total INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR) | SELECT MIN(total) FROM table_name_36 WHERE gold < 3 AND bronze > 0 AND silver > 0 | ### Context: CREATE TABLE table_name_36 (total INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR) ### Question: What is the smallest total that has under 3 golds, more than 0 silvers and bronzes? ### Answer: SELECT MIN(total) FROM table_name_36 WHERE gold < 3 AND bronze > 0 AND silver > 0 |
What is the total number of silvers associated with 3 bronzes, a total over 6, and a rank of 3? | CREATE TABLE table_name_11 (silver VARCHAR, total VARCHAR, bronze VARCHAR, rank VARCHAR) | SELECT COUNT(silver) FROM table_name_11 WHERE bronze = "3" AND rank = "3" AND total > 6 | ### Context: CREATE TABLE table_name_11 (silver VARCHAR, total VARCHAR, bronze VARCHAR, rank VARCHAR) ### Question: What is the total number of silvers associated with 3 bronzes, a total over 6, and a rank of 3? ### Answer: SELECT COUNT(silver) FROM table_name_11 WHERE bronze = "3" AND rank = "3" AND total > 6 |
What is the sum of bronzes associated with 0 golds and a rank of 10? | CREATE TABLE table_name_67 (bronze INTEGER, rank VARCHAR, gold VARCHAR) | SELECT SUM(bronze) FROM table_name_67 WHERE rank = "10" AND gold < 0 | ### Context: CREATE TABLE table_name_67 (bronze INTEGER, rank VARCHAR, gold VARCHAR) ### Question: What is the sum of bronzes associated with 0 golds and a rank of 10? ### Answer: SELECT SUM(bronze) FROM table_name_67 WHERE rank = "10" AND gold < 0 |
What is the largest silver value associated with 0 golds? | CREATE TABLE table_name_42 (silver INTEGER, gold INTEGER) | SELECT MAX(silver) FROM table_name_42 WHERE gold < 0 | ### Context: CREATE TABLE table_name_42 (silver INTEGER, gold INTEGER) ### Question: What is the largest silver value associated with 0 golds? ### Answer: SELECT MAX(silver) FROM table_name_42 WHERE gold < 0 |
What is the total number of bronzes from the Netherlands? | CREATE TABLE table_name_44 (bronze VARCHAR, nation VARCHAR) | SELECT COUNT(bronze) FROM table_name_44 WHERE nation = "netherlands" | ### Context: CREATE TABLE table_name_44 (bronze VARCHAR, nation VARCHAR) ### Question: What is the total number of bronzes from the Netherlands? ### Answer: SELECT COUNT(bronze) FROM table_name_44 WHERE nation = "netherlands" |
What is the average amount of earnings for years under 2004 and money list rankings of 6? | CREATE TABLE table_name_88 (earnings__ INTEGER, money_list_rank VARCHAR, year VARCHAR) | SELECT AVG(earnings__) AS $_ FROM table_name_88 WHERE money_list_rank = "6" AND year < 2004 | ### Context: CREATE TABLE table_name_88 (earnings__ INTEGER, money_list_rank VARCHAR, year VARCHAR) ### Question: What is the average amount of earnings for years under 2004 and money list rankings of 6? ### Answer: SELECT AVG(earnings__) AS $_ FROM table_name_88 WHERE money_list_rank = "6" AND year < 2004 |
What is the highest number of wins for years after 1999 with averages over 73.02? | CREATE TABLE table_name_60 (wins INTEGER, average VARCHAR, year VARCHAR) | SELECT MAX(wins) FROM table_name_60 WHERE average > 73.02 AND year > 1999 | ### Context: CREATE TABLE table_name_60 (wins INTEGER, average VARCHAR, year VARCHAR) ### Question: What is the highest number of wins for years after 1999 with averages over 73.02? ### Answer: SELECT MAX(wins) FROM table_name_60 WHERE average > 73.02 AND year > 1999 |
Who was the away team when the home team Manchester United played? | CREATE TABLE table_name_54 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_54 WHERE home_team = "manchester united" | ### Context: CREATE TABLE table_name_54 (away_team VARCHAR, home_team VARCHAR) ### Question: Who was the away team when the home team Manchester United played? ### Answer: SELECT away_team FROM table_name_54 WHERE home_team = "manchester united" |
When there was a tie of 16 what was the attendance? | CREATE TABLE table_name_8 (attendance VARCHAR, tie_no VARCHAR) | SELECT attendance FROM table_name_8 WHERE tie_no = "16" | ### Context: CREATE TABLE table_name_8 (attendance VARCHAR, tie_no VARCHAR) ### Question: When there was a tie of 16 what was the attendance? ### Answer: SELECT attendance FROM table_name_8 WHERE tie_no = "16" |
Tell me the score when there was a Tie number of 6? | CREATE TABLE table_name_30 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_30 WHERE tie_no = "6" | ### Context: CREATE TABLE table_name_30 (score VARCHAR, tie_no VARCHAR) ### Question: Tell me the score when there was a Tie number of 6? ### Answer: SELECT score FROM table_name_30 WHERE tie_no = "6" |
For the Tie number of 14 who was the away team? | CREATE TABLE table_name_46 (away_team VARCHAR, tie_no VARCHAR) | SELECT away_team FROM table_name_46 WHERE tie_no = "14" | ### Context: CREATE TABLE table_name_46 (away_team VARCHAR, tie_no VARCHAR) ### Question: For the Tie number of 14 who was the away team? ### Answer: SELECT away_team FROM table_name_46 WHERE tie_no = "14" |
What Catalog released on June 29, 1999 has a Digipak Album Format? | CREATE TABLE table_name_8 (catalog VARCHAR, format VARCHAR, date VARCHAR) | SELECT catalog FROM table_name_8 WHERE format = "digipak album" AND date = "june 29, 1999" | ### Context: CREATE TABLE table_name_8 (catalog VARCHAR, format VARCHAR, date VARCHAR) ### Question: What Catalog released on June 29, 1999 has a Digipak Album Format? ### Answer: SELECT catalog FROM table_name_8 WHERE format = "digipak album" AND date = "june 29, 1999" |
What is the release Date of Catalog RR 8655-2? | CREATE TABLE table_name_39 (date VARCHAR, catalog VARCHAR) | SELECT date FROM table_name_39 WHERE catalog = "rr 8655-2" | ### Context: CREATE TABLE table_name_39 (date VARCHAR, catalog VARCHAR) ### Question: What is the release Date of Catalog RR 8655-2? ### Answer: SELECT date FROM table_name_39 WHERE catalog = "rr 8655-2" |
What is Score, when Name is Nicole 赖淞凤? | CREATE TABLE table_name_38 (score VARCHAR, name VARCHAR) | SELECT score FROM table_name_38 WHERE name = "nicole 赖淞凤" | ### Context: CREATE TABLE table_name_38 (score VARCHAR, name VARCHAR) ### Question: What is Score, when Name is Nicole 赖淞凤? ### Answer: SELECT score FROM table_name_38 WHERE name = "nicole 赖淞凤" |
What is Score, when Song is 第九夜? | CREATE TABLE table_name_99 (score VARCHAR, song VARCHAR) | SELECT score FROM table_name_99 WHERE song = "第九夜" | ### Context: CREATE TABLE table_name_99 (score VARCHAR, song VARCHAR) ### Question: What is Score, when Song is 第九夜? ### Answer: SELECT score FROM table_name_99 WHERE song = "第九夜" |
What is Group Song, when Song is 换季? | CREATE TABLE table_name_80 (Group VARCHAR, song VARCHAR) | SELECT Group AS song FROM table_name_80 WHERE song = "换季" | ### Context: CREATE TABLE table_name_80 (Group VARCHAR, song VARCHAR) ### Question: What is Group Song, when Song is 换季? ### Answer: SELECT Group AS song FROM table_name_80 WHERE song = "换季" |
What is Group Song, when Name is Alice 林芯糸? | CREATE TABLE table_name_29 (Group VARCHAR, name VARCHAR) | SELECT Group AS song FROM table_name_29 WHERE name = "alice 林芯糸" | ### Context: CREATE TABLE table_name_29 (Group VARCHAR, name VARCHAR) ### Question: What is Group Song, when Name is Alice 林芯糸? ### Answer: SELECT Group AS song FROM table_name_29 WHERE name = "alice 林芯糸" |
On what surface was the match played with a score of 2–6, 6–3, 6–4? | CREATE TABLE table_name_32 (surface VARCHAR, score VARCHAR) | SELECT surface FROM table_name_32 WHERE score = "2–6, 6–3, 6–4" | ### Context: CREATE TABLE table_name_32 (surface VARCHAR, score VARCHAR) ### Question: On what surface was the match played with a score of 2–6, 6–3, 6–4? ### Answer: SELECT surface FROM table_name_32 WHERE score = "2–6, 6–3, 6–4" |
On what surface was the match played with a score of 4–6, 6–3, 6–1? | CREATE TABLE table_name_82 (surface VARCHAR, score VARCHAR) | SELECT surface FROM table_name_82 WHERE score = "4–6, 6–3, 6–1" | ### Context: CREATE TABLE table_name_82 (surface VARCHAR, score VARCHAR) ### Question: On what surface was the match played with a score of 4–6, 6–3, 6–1? ### Answer: SELECT surface FROM table_name_82 WHERE score = "4–6, 6–3, 6–1" |
What was the score when the opponent in the final was iroda tulyaganova? | CREATE TABLE table_name_44 (score VARCHAR, opponent_in_the_final VARCHAR) | SELECT score FROM table_name_44 WHERE opponent_in_the_final = "iroda tulyaganova" | ### Context: CREATE TABLE table_name_44 (score VARCHAR, opponent_in_the_final VARCHAR) ### Question: What was the score when the opponent in the final was iroda tulyaganova? ### Answer: SELECT score FROM table_name_44 WHERE opponent_in_the_final = "iroda tulyaganova" |
Which tournament has an opponent in the final of nadia petrova and a score of 6–3, 4–6, 6–1?? | CREATE TABLE table_name_22 (tournament VARCHAR, opponent_in_the_final VARCHAR, score VARCHAR) | SELECT tournament FROM table_name_22 WHERE opponent_in_the_final = "nadia petrova" AND score = "6–3, 4–6, 6–1" | ### Context: CREATE TABLE table_name_22 (tournament VARCHAR, opponent_in_the_final VARCHAR, score VARCHAR) ### Question: Which tournament has an opponent in the final of nadia petrova and a score of 6–3, 4–6, 6–1?? ### Answer: SELECT tournament FROM table_name_22 WHERE opponent_in_the_final = "nadia petrova" AND score = "6–3, 4–6, 6–1" |
What is 01-02, when 03-04 is 03-04? | CREATE TABLE table_name_61 (Id VARCHAR) | SELECT 01 AS _02 FROM table_name_61 WHERE "03_04" = "03_04" | ### Context: CREATE TABLE table_name_61 (Id VARCHAR) ### Question: What is 01-02, when 03-04 is 03-04? ### Answer: SELECT 01 AS _02 FROM table_name_61 WHERE "03_04" = "03_04" |
What is 02-03, when School Year is % Learning In Latvian? | CREATE TABLE table_name_33 (school_year VARCHAR) | SELECT 02 AS _03 FROM table_name_33 WHERE school_year = "% learning in latvian" | ### Context: CREATE TABLE table_name_33 (school_year VARCHAR) ### Question: What is 02-03, when School Year is % Learning In Latvian? ### Answer: SELECT 02 AS _03 FROM table_name_33 WHERE school_year = "% learning in latvian" |
Who was the choreographer for the dance style of Jazz? | CREATE TABLE table_name_29 (choreographer_s_ VARCHAR, style VARCHAR) | SELECT choreographer_s_ FROM table_name_29 WHERE style = "jazz" | ### Context: CREATE TABLE table_name_29 (choreographer_s_ VARCHAR, style VARCHAR) ### Question: Who was the choreographer for the dance style of Jazz? ### Answer: SELECT choreographer_s_ FROM table_name_29 WHERE style = "jazz" |
Which music led to a safe result and was choreographed by Jason Gilkison? | CREATE TABLE table_name_57 (music VARCHAR, results VARCHAR, choreographer_s_ VARCHAR) | SELECT music FROM table_name_57 WHERE results = "safe" AND choreographer_s_ = "jason gilkison" | ### Context: CREATE TABLE table_name_57 (music VARCHAR, results VARCHAR, choreographer_s_ VARCHAR) ### Question: Which music led to a safe result and was choreographed by Jason Gilkison? ### Answer: SELECT music FROM table_name_57 WHERE results = "safe" AND choreographer_s_ = "jason gilkison" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.