question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which player who weighs 210 plays for the Reno Bighorns? | CREATE TABLE table_name_68 (player VARCHAR, weight VARCHAR, team VARCHAR) | SELECT player FROM table_name_68 WHERE weight = 210 AND team = "reno bighorns" | ### Context: CREATE TABLE table_name_68 (player VARCHAR, weight VARCHAR, team VARCHAR) ### Question: Which player who weighs 210 plays for the Reno Bighorns? ### Answer: SELECT player FROM table_name_68 WHERE weight = 210 AND team = "reno bighorns" |
What position does Brian Butch play? | CREATE TABLE table_name_40 (pos VARCHAR, player VARCHAR) | SELECT pos FROM table_name_40 WHERE player = "brian butch" | ### Context: CREATE TABLE table_name_40 (pos VARCHAR, player VARCHAR) ### Question: What position does Brian Butch play? ### Answer: SELECT pos FROM table_name_40 WHERE player = "brian butch" |
Which Position has a Player of tyronn lue, and a Years in Orlando of 2003–2004? | CREATE TABLE table_name_97 (position VARCHAR, player VARCHAR, years_in_orlando VARCHAR) | SELECT position FROM table_name_97 WHERE player = "tyronn lue" AND years_in_orlando = "2003–2004" | ### Context: CREATE TABLE table_name_97 (position VARCHAR, player VARCHAR, years_in_orlando VARCHAR) ### Question: Which Position has a Player of tyronn lue, and a Years in Orlando of 2003–2004? ### Answer: SELECT position FROM table_name_97 WHERE player = "tyronn lue" AND years_in_orlando = "2003–2004" |
Which School/Club Team has a Player of deandre liggins? | CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_34 WHERE player = "deandre liggins" | ### Context: CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR) ### Question: Which School/Club Team has a Player of deandre liggins? ### Answer: SELECT school_club_team FROM table_name_34 WHERE player = "deandre liggins" |
Which Position has a Years in Orlando of 1997–1998? | CREATE TABLE table_name_68 (position VARCHAR, years_in_orlando VARCHAR) | SELECT position FROM table_name_68 WHERE years_in_orlando = "1997–1998" | ### Context: CREATE TABLE table_name_68 (position VARCHAR, years_in_orlando VARCHAR) ### Question: Which Position has a Years in Orlando of 1997–1998? ### Answer: SELECT position FROM table_name_68 WHERE years_in_orlando = "1997–1998" |
Which Position has a School/Club Team of stanford? | CREATE TABLE table_name_15 (position VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_name_15 WHERE school_club_team = "stanford" | ### Context: CREATE TABLE table_name_15 (position VARCHAR, school_club_team VARCHAR) ### Question: Which Position has a School/Club Team of stanford? ### Answer: SELECT position FROM table_name_15 WHERE school_club_team = "stanford" |
Which School/Club Team has a Years in Orlando of 1997–1998? | CREATE TABLE table_name_92 (school_club_team VARCHAR, years_in_orlando VARCHAR) | SELECT school_club_team FROM table_name_92 WHERE years_in_orlando = "1997–1998" | ### Context: CREATE TABLE table_name_92 (school_club_team VARCHAR, years_in_orlando VARCHAR) ### Question: Which School/Club Team has a Years in Orlando of 1997–1998? ### Answer: SELECT school_club_team FROM table_name_92 WHERE years_in_orlando = "1997–1998" |
Which Position has a Years in Orlando of 2003–2004? | CREATE TABLE table_name_55 (position VARCHAR, years_in_orlando VARCHAR) | SELECT position FROM table_name_55 WHERE years_in_orlando = "2003–2004" | ### Context: CREATE TABLE table_name_55 (position VARCHAR, years_in_orlando VARCHAR) ### Question: Which Position has a Years in Orlando of 2003–2004? ### Answer: SELECT position FROM table_name_55 WHERE years_in_orlando = "2003–2004" |
What is the High assists with a Date that is february 27? | CREATE TABLE table_name_42 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_name_42 WHERE date = "february 27" | ### Context: CREATE TABLE table_name_42 (high_assists VARCHAR, date VARCHAR) ### Question: What is the High assists with a Date that is february 27? ### Answer: SELECT high_assists FROM table_name_42 WHERE date = "february 27" |
What is the High points with a Game that is 56? | CREATE TABLE table_name_31 (high_points VARCHAR, game VARCHAR) | SELECT high_points FROM table_name_31 WHERE game = 56 | ### Context: CREATE TABLE table_name_31 (high_points VARCHAR, game VARCHAR) ### Question: What is the High points with a Game that is 56? ### Answer: SELECT high_points FROM table_name_31 WHERE game = 56 |
In what Distance has a Venue of sale? | CREATE TABLE table_name_36 (distance VARCHAR, venue VARCHAR) | SELECT distance FROM table_name_36 WHERE venue = "sale" | ### Context: CREATE TABLE table_name_36 (distance VARCHAR, venue VARCHAR) ### Question: In what Distance has a Venue of sale? ### Answer: SELECT distance FROM table_name_36 WHERE venue = "sale" |
WHo is Winner/2nd that has c. symons? | CREATE TABLE table_name_84 (winner_2nd VARCHAR, jockey VARCHAR) | SELECT winner_2nd FROM table_name_84 WHERE jockey = "c. symons" | ### Context: CREATE TABLE table_name_84 (winner_2nd VARCHAR, jockey VARCHAR) ### Question: WHo is Winner/2nd that has c. symons? ### Answer: SELECT winner_2nd FROM table_name_84 WHERE jockey = "c. symons" |
Which Race that Jockey of d. nikolic is in? | CREATE TABLE table_name_78 (race VARCHAR, jockey VARCHAR) | SELECT race FROM table_name_78 WHERE jockey = "d. nikolic" | ### Context: CREATE TABLE table_name_78 (race VARCHAR, jockey VARCHAR) ### Question: Which Race that Jockey of d. nikolic is in? ### Answer: SELECT race FROM table_name_78 WHERE jockey = "d. nikolic" |
Name The Result that has a Distance of 1200m, and a Weight (kg) of 55.5? | CREATE TABLE table_name_5 (result VARCHAR, distance VARCHAR, weight__kg_ VARCHAR) | SELECT result FROM table_name_5 WHERE distance = "1200m" AND weight__kg_ = 55.5 | ### Context: CREATE TABLE table_name_5 (result VARCHAR, distance VARCHAR, weight__kg_ VARCHAR) ### Question: Name The Result that has a Distance of 1200m, and a Weight (kg) of 55.5? ### Answer: SELECT result FROM table_name_5 WHERE distance = "1200m" AND weight__kg_ = 55.5 |
What is the previous team of the United States player who had 2 NBA years and played the F position? | CREATE TABLE table_name_41 (previous_team VARCHAR, pos VARCHAR, nationality VARCHAR, nba_years_ VARCHAR, a_ VARCHAR) | SELECT previous_team FROM table_name_41 WHERE nationality = "united states" AND nba_years_[a_] = 2 AND pos = "f" | ### Context: CREATE TABLE table_name_41 (previous_team VARCHAR, pos VARCHAR, nationality VARCHAR, nba_years_ VARCHAR, a_ VARCHAR) ### Question: What is the previous team of the United States player who had 2 NBA years and played the F position? ### Answer: SELECT previous_team FROM table_name_41 WHERE nationality = "united states" AND nba_years_[a_] = 2 AND pos = "f" |
Which Team has a Score of 108-107? | CREATE TABLE table_name_82 (team VARCHAR, score VARCHAR) | SELECT team FROM table_name_82 WHERE score = "108-107" | ### Context: CREATE TABLE table_name_82 (team VARCHAR, score VARCHAR) ### Question: Which Team has a Score of 108-107? ### Answer: SELECT team FROM table_name_82 WHERE score = "108-107" |
Which Record has a Date of may 31? | CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_55 WHERE date = "may 31" | ### Context: CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR) ### Question: Which Record has a Date of may 31? ### Answer: SELECT record FROM table_name_55 WHERE date = "may 31" |
Which Game has a Team of at phoenix, and a Score of 107-119? | CREATE TABLE table_name_54 (game VARCHAR, team VARCHAR, score VARCHAR) | SELECT COUNT(game) FROM table_name_54 WHERE team = "at phoenix" AND score = "107-119" | ### Context: CREATE TABLE table_name_54 (game VARCHAR, team VARCHAR, score VARCHAR) ### Question: Which Game has a Team of at phoenix, and a Score of 107-119? ### Answer: SELECT COUNT(game) FROM table_name_54 WHERE team = "at phoenix" AND score = "107-119" |
Which Location Attendance has a Game larger than 5? | CREATE TABLE table_name_32 (location_attendance VARCHAR, game INTEGER) | SELECT location_attendance FROM table_name_32 WHERE game > 5 | ### Context: CREATE TABLE table_name_32 (location_attendance VARCHAR, game INTEGER) ### Question: Which Location Attendance has a Game larger than 5? ### Answer: SELECT location_attendance FROM table_name_32 WHERE game > 5 |
Which Team has a Score of 89-123? | CREATE TABLE table_name_40 (team VARCHAR, score VARCHAR) | SELECT team FROM table_name_40 WHERE score = "89-123" | ### Context: CREATE TABLE table_name_40 (team VARCHAR, score VARCHAR) ### Question: Which Team has a Score of 89-123? ### Answer: SELECT team FROM table_name_40 WHERE score = "89-123" |
What is the average Game with a Date that is june 14? | CREATE TABLE table_name_24 (game INTEGER, date VARCHAR) | SELECT AVG(game) FROM table_name_24 WHERE date = "june 14" | ### Context: CREATE TABLE table_name_24 (game INTEGER, date VARCHAR) ### Question: What is the average Game with a Date that is june 14? ### Answer: SELECT AVG(game) FROM table_name_24 WHERE date = "june 14" |
What is the Record with a Team that is detroit and a Date that is june 10? | CREATE TABLE table_name_56 (record VARCHAR, team VARCHAR, date VARCHAR) | SELECT record FROM table_name_56 WHERE team = "detroit" AND date = "june 10" | ### Context: CREATE TABLE table_name_56 (record VARCHAR, team VARCHAR, date VARCHAR) ### Question: What is the Record with a Team that is detroit and a Date that is june 10? ### Answer: SELECT record FROM table_name_56 WHERE team = "detroit" AND date = "june 10" |
What is the Location Attendance with a Record that is 1-4? | CREATE TABLE table_name_31 (location_attendance VARCHAR, record VARCHAR) | SELECT location_attendance FROM table_name_31 WHERE record = "1-4" | ### Context: CREATE TABLE table_name_31 (location_attendance VARCHAR, record VARCHAR) ### Question: What is the Location Attendance with a Record that is 1-4? ### Answer: SELECT location_attendance FROM table_name_31 WHERE record = "1-4" |
How much is the GDP for a population density of 254.7? | CREATE TABLE table_name_7 (gdp__ppp__$m_usd VARCHAR, population_density__per_km²_ VARCHAR) | SELECT gdp__ppp__$m_usd FROM table_name_7 WHERE population_density__per_km²_ = "254.7" | ### Context: CREATE TABLE table_name_7 (gdp__ppp__$m_usd VARCHAR, population_density__per_km²_ VARCHAR) ### Question: How much is the GDP for a population density of 254.7? ### Answer: SELECT gdp__ppp__$m_usd FROM table_name_7 WHERE population_density__per_km²_ = "254.7" |
Which country has a population density of 50.3? | CREATE TABLE table_name_46 (country VARCHAR, population_density__per_km²_ VARCHAR) | SELECT country FROM table_name_46 WHERE population_density__per_km²_ = "50.3" | ### Context: CREATE TABLE table_name_46 (country VARCHAR, population_density__per_km²_ VARCHAR) ### Question: Which country has a population density of 50.3? ### Answer: SELECT country FROM table_name_46 WHERE population_density__per_km²_ = "50.3" |
How much is the GDP for an area of 61,395? | CREATE TABLE table_name_86 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR) | SELECT gdp__ppp__$m_usd FROM table_name_86 WHERE area__km²_ = "61,395" | ### Context: CREATE TABLE table_name_86 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR) ### Question: How much is the GDP for an area of 61,395? ### Answer: SELECT gdp__ppp__$m_usd FROM table_name_86 WHERE area__km²_ = "61,395" |
How much is the population density with a GDP at $188,112? | CREATE TABLE table_name_31 (population_density__per_km²_ VARCHAR, gdp__ppp__$m_usd VARCHAR) | SELECT population_density__per_km²_ FROM table_name_31 WHERE gdp__ppp__$m_usd = "$188,112" | ### Context: CREATE TABLE table_name_31 (population_density__per_km²_ VARCHAR, gdp__ppp__$m_usd VARCHAR) ### Question: How much is the population density with a GDP at $188,112? ### Answer: SELECT population_density__per_km²_ FROM table_name_31 WHERE gdp__ppp__$m_usd = "$188,112" |
How much is the GDP for an area of 116? | CREATE TABLE table_name_26 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR) | SELECT gdp__ppp__$m_usd FROM table_name_26 WHERE area__km²_ = "116" | ### Context: CREATE TABLE table_name_26 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR) ### Question: How much is the GDP for an area of 116? ### Answer: SELECT gdp__ppp__$m_usd FROM table_name_26 WHERE area__km²_ = "116" |
Which country has a population of 3,221,216? | CREATE TABLE table_name_79 (country VARCHAR, population__2011_est_ VARCHAR) | SELECT country FROM table_name_79 WHERE population__2011_est_ = "3,221,216" | ### Context: CREATE TABLE table_name_79 (country VARCHAR, population__2011_est_ VARCHAR) ### Question: Which country has a population of 3,221,216? ### Answer: SELECT country FROM table_name_79 WHERE population__2011_est_ = "3,221,216" |
What was Miller Barber wins with Top-5 less than 2 and 19 Events? | CREATE TABLE table_name_77 (wins VARCHAR, top_5 VARCHAR, events VARCHAR) | SELECT COUNT(wins) FROM table_name_77 WHERE top_5 < 2 AND events = 19 | ### Context: CREATE TABLE table_name_77 (wins VARCHAR, top_5 VARCHAR, events VARCHAR) ### Question: What was Miller Barber wins with Top-5 less than 2 and 19 Events? ### Answer: SELECT COUNT(wins) FROM table_name_77 WHERE top_5 < 2 AND events = 19 |
What is the average number of Wins in a PGA Championship with a Top-5 less than 2? | CREATE TABLE table_name_87 (wins INTEGER, tournament VARCHAR, top_5 VARCHAR) | SELECT AVG(wins) FROM table_name_87 WHERE tournament = "pga championship" AND top_5 < 2 | ### Context: CREATE TABLE table_name_87 (wins INTEGER, tournament VARCHAR, top_5 VARCHAR) ### Question: What is the average number of Wins in a PGA Championship with a Top-5 less than 2? ### Answer: SELECT AVG(wins) FROM table_name_87 WHERE tournament = "pga championship" AND top_5 < 2 |
What is the highest Top-5 ranking with Events less than 4? | CREATE TABLE table_name_63 (top_5 INTEGER, events INTEGER) | SELECT MAX(top_5) FROM table_name_63 WHERE events < 4 | ### Context: CREATE TABLE table_name_63 (top_5 INTEGER, events INTEGER) ### Question: What is the highest Top-5 ranking with Events less than 4? ### Answer: SELECT MAX(top_5) FROM table_name_63 WHERE events < 4 |
Which week's game was attended by 65,272 people? | CREATE TABLE table_name_18 (week VARCHAR, attendance VARCHAR) | SELECT week FROM table_name_18 WHERE attendance = "65,272" | ### Context: CREATE TABLE table_name_18 (week VARCHAR, attendance VARCHAR) ### Question: Which week's game was attended by 65,272 people? ### Answer: SELECT week FROM table_name_18 WHERE attendance = "65,272" |
How many people attended the game in week 13? | CREATE TABLE table_name_60 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_60 WHERE week = 13 | ### Context: CREATE TABLE table_name_60 (attendance VARCHAR, week VARCHAR) ### Question: How many people attended the game in week 13? ### Answer: SELECT attendance FROM table_name_60 WHERE week = 13 |
During which week was the earliest game with an attendance of 65,904 people? | CREATE TABLE table_name_58 (week INTEGER, attendance VARCHAR) | SELECT MIN(week) FROM table_name_58 WHERE attendance = "65,904" | ### Context: CREATE TABLE table_name_58 (week INTEGER, attendance VARCHAR) ### Question: During which week was the earliest game with an attendance of 65,904 people? ### Answer: SELECT MIN(week) FROM table_name_58 WHERE attendance = "65,904" |
What height is the tallest for an outside hitter? | CREATE TABLE table_name_94 (height INTEGER, position VARCHAR) | SELECT MAX(height) FROM table_name_94 WHERE position = "outside hitter" | ### Context: CREATE TABLE table_name_94 (height INTEGER, position VARCHAR) ### Question: What height is the tallest for an outside hitter? ### Answer: SELECT MAX(height) FROM table_name_94 WHERE position = "outside hitter" |
What is the highest silver rank with a total of 27? | CREATE TABLE table_name_65 (silver INTEGER, total VARCHAR) | SELECT MAX(silver) FROM table_name_65 WHERE total = 27 | ### Context: CREATE TABLE table_name_65 (silver INTEGER, total VARCHAR) ### Question: What is the highest silver rank with a total of 27? ### Answer: SELECT MAX(silver) FROM table_name_65 WHERE total = 27 |
What is the total number of Silver when Bronze was smaller than 1 with a total smaller than 2 in Bulgaria? | CREATE TABLE table_name_6 (silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR) | SELECT COUNT(silver) FROM table_name_6 WHERE bronze < 1 AND total < 2 AND nation = "bulgaria" | ### Context: CREATE TABLE table_name_6 (silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR) ### Question: What is the total number of Silver when Bronze was smaller than 1 with a total smaller than 2 in Bulgaria? ### Answer: SELECT COUNT(silver) FROM table_name_6 WHERE bronze < 1 AND total < 2 AND nation = "bulgaria" |
What is the temperature classification of a purple colored glass bulb? | CREATE TABLE table_name_22 (temperature_classification VARCHAR, glass_bulb_color VARCHAR) | SELECT temperature_classification FROM table_name_22 WHERE glass_bulb_color = "purple" | ### Context: CREATE TABLE table_name_22 (temperature_classification VARCHAR, glass_bulb_color VARCHAR) ### Question: What is the temperature classification of a purple colored glass bulb? ### Answer: SELECT temperature_classification FROM table_name_22 WHERE glass_bulb_color = "purple" |
What is the color code with a temperature classification of ordinary? | CREATE TABLE table_name_67 (color_code__with_fusible_link_ VARCHAR, temperature_classification VARCHAR) | SELECT color_code__with_fusible_link_ FROM table_name_67 WHERE temperature_classification = "ordinary" | ### Context: CREATE TABLE table_name_67 (color_code__with_fusible_link_ VARCHAR, temperature_classification VARCHAR) ### Question: What is the color code with a temperature classification of ordinary? ### Answer: SELECT color_code__with_fusible_link_ FROM table_name_67 WHERE temperature_classification = "ordinary" |
What is the temperature rating of the intermediate temperature classification? | CREATE TABLE table_name_1 (temperature_rating VARCHAR, temperature_classification VARCHAR) | SELECT temperature_rating FROM table_name_1 WHERE temperature_classification = "intermediate" | ### Context: CREATE TABLE table_name_1 (temperature_rating VARCHAR, temperature_classification VARCHAR) ### Question: What is the temperature rating of the intermediate temperature classification? ### Answer: SELECT temperature_rating FROM table_name_1 WHERE temperature_classification = "intermediate" |
What is the average Goals for team Kairat, in the 2002 season with more than 29 apps? | CREATE TABLE table_name_81 (goals INTEGER, apps VARCHAR, team VARCHAR, season VARCHAR) | SELECT AVG(goals) FROM table_name_81 WHERE team = "kairat" AND season = "2002" AND apps > 29 | ### Context: CREATE TABLE table_name_81 (goals INTEGER, apps VARCHAR, team VARCHAR, season VARCHAR) ### Question: What is the average Goals for team Kairat, in the 2002 season with more than 29 apps? ### Answer: SELECT AVG(goals) FROM table_name_81 WHERE team = "kairat" AND season = "2002" AND apps > 29 |
What is the Country for the 2006-07 season? | CREATE TABLE table_name_11 (country VARCHAR, season VARCHAR) | SELECT country FROM table_name_11 WHERE season = "2006-07" | ### Context: CREATE TABLE table_name_11 (country VARCHAR, season VARCHAR) ### Question: What is the Country for the 2006-07 season? ### Answer: SELECT country FROM table_name_11 WHERE season = "2006-07" |
What is the average Apps for the team Kairat with level larger than 1? | CREATE TABLE table_name_51 (apps INTEGER, team VARCHAR, level VARCHAR) | SELECT AVG(apps) FROM table_name_51 WHERE team = "kairat" AND level > 1 | ### Context: CREATE TABLE table_name_51 (apps INTEGER, team VARCHAR, level VARCHAR) ### Question: What is the average Apps for the team Kairat with level larger than 1? ### Answer: SELECT AVG(apps) FROM table_name_51 WHERE team = "kairat" AND level > 1 |
How many laps did the rider with a grid larger than 11, a Honda cbr1000rr bike, and a time of +42.633? | CREATE TABLE table_name_17 (laps VARCHAR, time VARCHAR, grid VARCHAR, bike VARCHAR) | SELECT laps FROM table_name_17 WHERE grid > 11 AND bike = "honda cbr1000rr" AND time = "+42.633" | ### Context: CREATE TABLE table_name_17 (laps VARCHAR, time VARCHAR, grid VARCHAR, bike VARCHAR) ### Question: How many laps did the rider with a grid larger than 11, a Honda cbr1000rr bike, and a time of +42.633? ### Answer: SELECT laps FROM table_name_17 WHERE grid > 11 AND bike = "honda cbr1000rr" AND time = "+42.633" |
Who was teh rider with 18 laps and a grid of 25? | CREATE TABLE table_name_43 (rider VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT rider FROM table_name_43 WHERE laps = 18 AND grid = 25 | ### Context: CREATE TABLE table_name_43 (rider VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: Who was teh rider with 18 laps and a grid of 25? ### Answer: SELECT rider FROM table_name_43 WHERE laps = 18 AND grid = 25 |
Who was the rider who had an accident time and a kawasaki zx-10r bike? | CREATE TABLE table_name_49 (rider VARCHAR, time VARCHAR, bike VARCHAR) | SELECT rider FROM table_name_49 WHERE time = "accident" AND bike = "kawasaki zx-10r" | ### Context: CREATE TABLE table_name_49 (rider VARCHAR, time VARCHAR, bike VARCHAR) ### Question: Who was the rider who had an accident time and a kawasaki zx-10r bike? ### Answer: SELECT rider FROM table_name_49 WHERE time = "accident" AND bike = "kawasaki zx-10r" |
What is the time of rider Loic Napoleone, who had less than 18 laps and a grid greater than 8? | CREATE TABLE table_name_7 (time VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT time FROM table_name_7 WHERE laps < 18 AND grid > 8 AND rider = "loic napoleone" | ### Context: CREATE TABLE table_name_7 (time VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: What is the time of rider Loic Napoleone, who had less than 18 laps and a grid greater than 8? ### Answer: SELECT time FROM table_name_7 WHERE laps < 18 AND grid > 8 AND rider = "loic napoleone" |
How many laps did the rider with a grid larger than 14 and a time of +33.150 have? | CREATE TABLE table_name_82 (laps VARCHAR, grid VARCHAR, time VARCHAR) | SELECT laps FROM table_name_82 WHERE grid > 14 AND time = "+33.150" | ### Context: CREATE TABLE table_name_82 (laps VARCHAR, grid VARCHAR, time VARCHAR) ### Question: How many laps did the rider with a grid larger than 14 and a time of +33.150 have? ### Answer: SELECT laps FROM table_name_82 WHERE grid > 14 AND time = "+33.150" |
What is Away, when Home is Guelph Gargoyles? | CREATE TABLE table_name_24 (away VARCHAR, home VARCHAR) | SELECT away FROM table_name_24 WHERE home = "guelph gargoyles" | ### Context: CREATE TABLE table_name_24 (away VARCHAR, home VARCHAR) ### Question: What is Away, when Home is Guelph Gargoyles? ### Answer: SELECT away FROM table_name_24 WHERE home = "guelph gargoyles" |
What is Home, when Ground is Humber College North, and when Time is 15:00? | CREATE TABLE table_name_58 (home VARCHAR, ground VARCHAR, time VARCHAR) | SELECT home FROM table_name_58 WHERE ground = "humber college north" AND time = "15:00" | ### Context: CREATE TABLE table_name_58 (home VARCHAR, ground VARCHAR, time VARCHAR) ### Question: What is Home, when Ground is Humber College North, and when Time is 15:00? ### Answer: SELECT home FROM table_name_58 WHERE ground = "humber college north" AND time = "15:00" |
What is Date, when Away is High Park Demons? | CREATE TABLE table_name_6 (date VARCHAR, away VARCHAR) | SELECT date FROM table_name_6 WHERE away = "high park demons" | ### Context: CREATE TABLE table_name_6 (date VARCHAR, away VARCHAR) ### Question: What is Date, when Away is High Park Demons? ### Answer: SELECT date FROM table_name_6 WHERE away = "high park demons" |
What is Date, when Away is High Park Demons? | CREATE TABLE table_name_43 (date VARCHAR, away VARCHAR) | SELECT date FROM table_name_43 WHERE away = "high park demons" | ### Context: CREATE TABLE table_name_43 (date VARCHAR, away VARCHAR) ### Question: What is Date, when Away is High Park Demons? ### Answer: SELECT date FROM table_name_43 WHERE away = "high park demons" |
What is Time, when Away is Central Blues? | CREATE TABLE table_name_95 (time VARCHAR, away VARCHAR) | SELECT time FROM table_name_95 WHERE away = "central blues" | ### Context: CREATE TABLE table_name_95 (time VARCHAR, away VARCHAR) ### Question: What is Time, when Away is Central Blues? ### Answer: SELECT time FROM table_name_95 WHERE away = "central blues" |
What cover has a published date of May 27, 2009 (hc) May 20, 2009 (tpb)? | CREATE TABLE table_name_12 (cover VARCHAR, published VARCHAR) | SELECT cover FROM table_name_12 WHERE published = "may 27, 2009 (hc) may 20, 2009 (tpb)" | ### Context: CREATE TABLE table_name_12 (cover VARCHAR, published VARCHAR) ### Question: What cover has a published date of May 27, 2009 (hc) May 20, 2009 (tpb)? ### Answer: SELECT cover FROM table_name_12 WHERE published = "may 27, 2009 (hc) may 20, 2009 (tpb)" |
What is the number of the volume that has an ISBN of 978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)? | CREATE TABLE table_name_49 (volume VARCHAR, isbn VARCHAR) | SELECT volume FROM table_name_49 WHERE isbn = "978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)" | ### Context: CREATE TABLE table_name_49 (volume VARCHAR, isbn VARCHAR) ### Question: What is the number of the volume that has an ISBN of 978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)? ### Answer: SELECT volume FROM table_name_49 WHERE isbn = "978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)" |
What is the name of the series with an ISBN of 978-1-59582-523-0 (tpb)? | CREATE TABLE table_name_22 (series VARCHAR, isbn VARCHAR) | SELECT series FROM table_name_22 WHERE isbn = "978-1-59582-523-0 (tpb)" | ### Context: CREATE TABLE table_name_22 (series VARCHAR, isbn VARCHAR) ### Question: What is the name of the series with an ISBN of 978-1-59582-523-0 (tpb)? ### Answer: SELECT series FROM table_name_22 WHERE isbn = "978-1-59582-523-0 (tpb)" |
What volume number has the ISBN of 978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)? | CREATE TABLE table_name_38 (volume VARCHAR, isbn VARCHAR) | SELECT volume FROM table_name_38 WHERE isbn = "978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)" | ### Context: CREATE TABLE table_name_38 (volume VARCHAR, isbn VARCHAR) ### Question: What volume number has the ISBN of 978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)? ### Answer: SELECT volume FROM table_name_38 WHERE isbn = "978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)" |
What is the ISBN of the Conan the Barbarian series that has the title of Queen of the Black Coast? | CREATE TABLE table_name_75 (isbn VARCHAR, series VARCHAR, title VARCHAR) | SELECT isbn FROM table_name_75 WHERE series = "conan the barbarian" AND title = "queen of the black coast" | ### Context: CREATE TABLE table_name_75 (isbn VARCHAR, series VARCHAR, title VARCHAR) ### Question: What is the ISBN of the Conan the Barbarian series that has the title of Queen of the Black Coast? ### Answer: SELECT isbn FROM table_name_75 WHERE series = "conan the barbarian" AND title = "queen of the black coast" |
What cover has Throne of Aquilonia as the title? | CREATE TABLE table_name_46 (cover VARCHAR, title VARCHAR) | SELECT cover FROM table_name_46 WHERE title = "throne of aquilonia" | ### Context: CREATE TABLE table_name_46 (cover VARCHAR, title VARCHAR) ### Question: What cover has Throne of Aquilonia as the title? ### Answer: SELECT cover FROM table_name_46 WHERE title = "throne of aquilonia" |
With a Rank of less than 4, what is Pablo Prigioni's total number of Games? | CREATE TABLE table_name_44 (games VARCHAR, name VARCHAR, rank VARCHAR) | SELECT COUNT(games) FROM table_name_44 WHERE name = "pablo prigioni" AND rank < 4 | ### Context: CREATE TABLE table_name_44 (games VARCHAR, name VARCHAR, rank VARCHAR) ### Question: With a Rank of less than 4, what is Pablo Prigioni's total number of Games? ### Answer: SELECT COUNT(games) FROM table_name_44 WHERE name = "pablo prigioni" AND rank < 4 |
How many Assists for the Player with more than 25 Games? | CREATE TABLE table_name_45 (assists INTEGER, games INTEGER) | SELECT SUM(assists) FROM table_name_45 WHERE games > 25 | ### Context: CREATE TABLE table_name_45 (assists INTEGER, games INTEGER) ### Question: How many Assists for the Player with more than 25 Games? ### Answer: SELECT SUM(assists) FROM table_name_45 WHERE games > 25 |
What is the Rank of the Maccabi Tel Aviv Player with 25 Games? | CREATE TABLE table_name_82 (rank VARCHAR, games VARCHAR, team VARCHAR) | SELECT COUNT(rank) FROM table_name_82 WHERE games = 25 AND team = "maccabi tel aviv" | ### Context: CREATE TABLE table_name_82 (rank VARCHAR, games VARCHAR, team VARCHAR) ### Question: What is the Rank of the Maccabi Tel Aviv Player with 25 Games? ### Answer: SELECT COUNT(rank) FROM table_name_82 WHERE games = 25 AND team = "maccabi tel aviv" |
How many Assists for the Player with a Rank greater than 3 in less than 25 Games? | CREATE TABLE table_name_66 (assists INTEGER, rank VARCHAR, games VARCHAR) | SELECT AVG(assists) FROM table_name_66 WHERE rank > 3 AND games < 25 | ### Context: CREATE TABLE table_name_66 (assists INTEGER, rank VARCHAR, games VARCHAR) ### Question: How many Assists for the Player with a Rank greater than 3 in less than 25 Games? ### Answer: SELECT AVG(assists) FROM table_name_66 WHERE rank > 3 AND games < 25 |
How many Games for Rank 2 Terrell McIntyre? | CREATE TABLE table_name_8 (games INTEGER, name VARCHAR, rank VARCHAR) | SELECT MIN(games) FROM table_name_8 WHERE name = "terrell mcintyre" AND rank > 2 | ### Context: CREATE TABLE table_name_8 (games INTEGER, name VARCHAR, rank VARCHAR) ### Question: How many Games for Rank 2 Terrell McIntyre? ### Answer: SELECT MIN(games) FROM table_name_8 WHERE name = "terrell mcintyre" AND rank > 2 |
What is the Venue of the Heptathlon after 2006 where Tatyana Chernova comes in Position 7th? | CREATE TABLE table_name_70 (venue VARCHAR, notes VARCHAR, year VARCHAR, position VARCHAR) | SELECT venue FROM table_name_70 WHERE year > 2006 AND position = "7th" AND notes = "heptathlon" | ### Context: CREATE TABLE table_name_70 (venue VARCHAR, notes VARCHAR, year VARCHAR, position VARCHAR) ### Question: What is the Venue of the Heptathlon after 2006 where Tatyana Chernova comes in Position 7th? ### Answer: SELECT venue FROM table_name_70 WHERE year > 2006 AND position = "7th" AND notes = "heptathlon" |
In what Year did Chernova come in 1st in Götzis, Austria? | CREATE TABLE table_name_37 (year INTEGER, venue VARCHAR, position VARCHAR) | SELECT SUM(year) FROM table_name_37 WHERE venue = "götzis, austria" AND position = "1st" | ### Context: CREATE TABLE table_name_37 (year INTEGER, venue VARCHAR, position VARCHAR) ### Question: In what Year did Chernova come in 1st in Götzis, Austria? ### Answer: SELECT SUM(year) FROM table_name_37 WHERE venue = "götzis, austria" AND position = "1st" |
Which Cover Model was featured on 8-03? | CREATE TABLE table_name_8 (cover_model VARCHAR, date VARCHAR) | SELECT cover_model FROM table_name_8 WHERE date = "8-03" | ### Context: CREATE TABLE table_name_8 (cover_model VARCHAR, date VARCHAR) ### Question: Which Cover Model was featured on 8-03? ### Answer: SELECT cover_model FROM table_name_8 WHERE date = "8-03" |
Who was the Centerfold model when O.J. Simpson was the Interview Subject? | CREATE TABLE table_name_72 (centerfold_model VARCHAR, interview_subject VARCHAR) | SELECT centerfold_model FROM table_name_72 WHERE interview_subject = "o.j. simpson" | ### Context: CREATE TABLE table_name_72 (centerfold_model VARCHAR, interview_subject VARCHAR) ### Question: Who was the Centerfold model when O.J. Simpson was the Interview Subject? ### Answer: SELECT centerfold_model FROM table_name_72 WHERE interview_subject = "o.j. simpson" |
Who was the Cover model when the Centerfold Model was Marketa Janska? | CREATE TABLE table_name_43 (cover_model VARCHAR, centerfold_model VARCHAR) | SELECT cover_model FROM table_name_43 WHERE centerfold_model = "marketa janska" | ### Context: CREATE TABLE table_name_43 (cover_model VARCHAR, centerfold_model VARCHAR) ### Question: Who was the Cover model when the Centerfold Model was Marketa Janska? ### Answer: SELECT cover_model FROM table_name_43 WHERE centerfold_model = "marketa janska" |
Who was the Cover model on 11-03? | CREATE TABLE table_name_96 (cover_model VARCHAR, date VARCHAR) | SELECT cover_model FROM table_name_96 WHERE date = "11-03" | ### Context: CREATE TABLE table_name_96 (cover_model VARCHAR, date VARCHAR) ### Question: Who was the Cover model on 11-03? ### Answer: SELECT cover_model FROM table_name_96 WHERE date = "11-03" |
Who was the Centerfold Model on 9-03? | CREATE TABLE table_name_79 (centerfold_model VARCHAR, date VARCHAR) | SELECT centerfold_model FROM table_name_79 WHERE date = "9-03" | ### Context: CREATE TABLE table_name_79 (centerfold_model VARCHAR, date VARCHAR) ### Question: Who was the Centerfold Model on 9-03? ### Answer: SELECT centerfold_model FROM table_name_79 WHERE date = "9-03" |
How many rounds had a selection of 165? | CREATE TABLE table_name_74 (round INTEGER, selection VARCHAR) | SELECT SUM(round) FROM table_name_74 WHERE selection = 165 | ### Context: CREATE TABLE table_name_74 (round INTEGER, selection VARCHAR) ### Question: How many rounds had a selection of 165? ### Answer: SELECT SUM(round) FROM table_name_74 WHERE selection = 165 |
What is the average Height for the Position of d, with a Birthplace of new hope, minnesota? | CREATE TABLE table_name_79 (height__cm_ INTEGER, position VARCHAR, birthplace VARCHAR) | SELECT AVG(height__cm_) FROM table_name_79 WHERE position = "d" AND birthplace = "new hope, minnesota" | ### Context: CREATE TABLE table_name_79 (height__cm_ INTEGER, position VARCHAR, birthplace VARCHAR) ### Question: What is the average Height for the Position of d, with a Birthplace of new hope, minnesota? ### Answer: SELECT AVG(height__cm_) FROM table_name_79 WHERE position = "d" AND birthplace = "new hope, minnesota" |
What is the 1990–1991 Team when the Birthplace shows as new york? | CREATE TABLE table_name_23 (birthplace VARCHAR) | SELECT 1990 AS _1991_team FROM table_name_23 WHERE birthplace = "new york" | ### Context: CREATE TABLE table_name_23 (birthplace VARCHAR) ### Question: What is the 1990–1991 Team when the Birthplace shows as new york? ### Answer: SELECT 1990 AS _1991_team FROM table_name_23 WHERE birthplace = "new york" |
What is the Position when the person's birthplace was toledo, ohio? | CREATE TABLE table_name_32 (position VARCHAR, birthplace VARCHAR) | SELECT position FROM table_name_32 WHERE birthplace = "toledo, ohio" | ### Context: CREATE TABLE table_name_32 (position VARCHAR, birthplace VARCHAR) ### Question: What is the Position when the person's birthplace was toledo, ohio? ### Answer: SELECT position FROM table_name_32 WHERE birthplace = "toledo, ohio" |
What is the 1990–1991 Team that had Joel Otto? | CREATE TABLE table_name_41 (name VARCHAR) | SELECT 1990 AS _1991_team FROM table_name_41 WHERE name = "joel otto" | ### Context: CREATE TABLE table_name_41 (name VARCHAR) ### Question: What is the 1990–1991 Team that had Joel Otto? ### Answer: SELECT 1990 AS _1991_team FROM table_name_41 WHERE name = "joel otto" |
Which T.C. has a Year larger than 2007, and a D.C. of 21st? | CREATE TABLE table_name_26 (tc VARCHAR, year VARCHAR, dc VARCHAR) | SELECT tc FROM table_name_26 WHERE year > 2007 AND dc = "21st" | ### Context: CREATE TABLE table_name_26 (tc VARCHAR, year VARCHAR, dc VARCHAR) ### Question: Which T.C. has a Year larger than 2007, and a D.C. of 21st? ### Answer: SELECT tc FROM table_name_26 WHERE year > 2007 AND dc = "21st" |
What kind of D.C. has Races smaller than 20, and Points larger than 0, and Drivers of christian vietoris, and Wins of 1? | CREATE TABLE table_name_65 (dc VARCHAR, wins VARCHAR, drivers VARCHAR, races VARCHAR, points VARCHAR) | SELECT dc FROM table_name_65 WHERE races < 20 AND points > 0 AND drivers = "christian vietoris" AND wins = 1 | ### Context: CREATE TABLE table_name_65 (dc VARCHAR, wins VARCHAR, drivers VARCHAR, races VARCHAR, points VARCHAR) ### Question: What kind of D.C. has Races smaller than 20, and Points larger than 0, and Drivers of christian vietoris, and Wins of 1? ### Answer: SELECT dc FROM table_name_65 WHERE races < 20 AND points > 0 AND drivers = "christian vietoris" AND wins = 1 |
Which Races has a T.C. of 3rd, and a D.C. of 7th? | CREATE TABLE table_name_14 (races INTEGER, tc VARCHAR, dc VARCHAR) | SELECT MIN(races) FROM table_name_14 WHERE tc = "3rd" AND dc = "7th" | ### Context: CREATE TABLE table_name_14 (races INTEGER, tc VARCHAR, dc VARCHAR) ### Question: Which Races has a T.C. of 3rd, and a D.C. of 7th? ### Answer: SELECT MIN(races) FROM table_name_14 WHERE tc = "3rd" AND dc = "7th" |
What is the 2007 of the Grand Slam Tournaments in 2008? | CREATE TABLE table_name_16 (Id VARCHAR) | SELECT 2007 FROM table_name_16 WHERE 2008 = "grand slam tournaments" | ### Context: CREATE TABLE table_name_16 (Id VARCHAR) ### Question: What is the 2007 of the Grand Slam Tournaments in 2008? ### Answer: SELECT 2007 FROM table_name_16 WHERE 2008 = "grand slam tournaments" |
What is the Tournament with a 3r 2011 and A 2010? | CREATE TABLE table_name_63 (tournament VARCHAR) | SELECT tournament FROM table_name_63 WHERE 2011 = "3r" AND 2010 = "a" | ### Context: CREATE TABLE table_name_63 (tournament VARCHAR) ### Question: What is the Tournament with a 3r 2011 and A 2010? ### Answer: SELECT tournament FROM table_name_63 WHERE 2011 = "3r" AND 2010 = "a" |
What is the 2008 of the 2r 2011 and A 2010? | CREATE TABLE table_name_38 (Id VARCHAR) | SELECT 2008 FROM table_name_38 WHERE 2011 = "2r" AND 2010 = "a" | ### Context: CREATE TABLE table_name_38 (Id VARCHAR) ### Question: What is the 2008 of the 2r 2011 and A 2010? ### Answer: SELECT 2008 FROM table_name_38 WHERE 2011 = "2r" AND 2010 = "a" |
What is the 2010 of the Grand Slam Tournaments in 2011? | CREATE TABLE table_name_66 (Id VARCHAR) | SELECT 2010 FROM table_name_66 WHERE 2011 = "grand slam tournaments" | ### Context: CREATE TABLE table_name_66 (Id VARCHAR) ### Question: What is the 2010 of the Grand Slam Tournaments in 2011? ### Answer: SELECT 2010 FROM table_name_66 WHERE 2011 = "grand slam tournaments" |
What is the total number of runners-up for a club with winning years of 2010? | CREATE TABLE table_name_92 (runners_up VARCHAR, winning_years VARCHAR) | SELECT COUNT(runners_up) FROM table_name_92 WHERE winning_years = "2010" | ### Context: CREATE TABLE table_name_92 (runners_up VARCHAR, winning_years VARCHAR) ### Question: What is the total number of runners-up for a club with winning years of 2010? ### Answer: SELECT COUNT(runners_up) FROM table_name_92 WHERE winning_years = "2010" |
Who were the runners-up for the FC Viktoria Plzeň club? | CREATE TABLE table_name_7 (runners_up VARCHAR, club VARCHAR) | SELECT runners_up FROM table_name_7 WHERE club = "fc viktoria plzeň" | ### Context: CREATE TABLE table_name_7 (runners_up VARCHAR, club VARCHAR) ### Question: Who were the runners-up for the FC Viktoria Plzeň club? ### Answer: SELECT runners_up FROM table_name_7 WHERE club = "fc viktoria plzeň" |
Which congress was held in 2010? | CREATE TABLE table_name_50 (con__gress VARCHAR, date VARCHAR) | SELECT con__gress FROM table_name_50 WHERE date = "2010" | ### Context: CREATE TABLE table_name_50 (con__gress VARCHAR, date VARCHAR) ### Question: Which congress was held in 2010? ### Answer: SELECT con__gress FROM table_name_50 WHERE date = "2010" |
What is the casting temperature for a hardness of 22? | CREATE TABLE table_name_88 (casting_at__°c_ VARCHAR, hardness VARCHAR) | SELECT casting_at__°c_ FROM table_name_88 WHERE hardness = "22" | ### Context: CREATE TABLE table_name_88 (casting_at__°c_ VARCHAR, hardness VARCHAR) ### Question: What is the casting temperature for a hardness of 22? ### Answer: SELECT casting_at__°c_ FROM table_name_88 WHERE hardness = "22" |
What is the hardness for the alloy that is liquid at 243 degrees C? | CREATE TABLE table_name_45 (hardness VARCHAR, liquid_at__°c_ VARCHAR) | SELECT hardness FROM table_name_45 WHERE liquid_at__°c_ = "243" | ### Context: CREATE TABLE table_name_45 (hardness VARCHAR, liquid_at__°c_ VARCHAR) ### Question: What is the hardness for the alloy that is liquid at 243 degrees C? ### Answer: SELECT hardness FROM table_name_45 WHERE liquid_at__°c_ = "243" |
What is the Sn/Sb percentage that is liquid at 258 degrees C? | CREATE TABLE table_name_4 (sn_sb___percentage_ VARCHAR, liquid_at__°c_ VARCHAR) | SELECT sn_sb___percentage_ FROM table_name_4 WHERE liquid_at__°c_ = "258" | ### Context: CREATE TABLE table_name_4 (sn_sb___percentage_ VARCHAR, liquid_at__°c_ VARCHAR) ### Question: What is the Sn/Sb percentage that is liquid at 258 degrees C? ### Answer: SELECT sn_sb___percentage_ FROM table_name_4 WHERE liquid_at__°c_ = "258" |
What is the remelting temperature for the alloy that has a Sn/Sb ratio of 9.5/15? | CREATE TABLE table_name_51 (remelting_at__°c_ VARCHAR, sn_sb___percentage_ VARCHAR) | SELECT remelting_at__°c_ FROM table_name_51 WHERE sn_sb___percentage_ = "9.5/15" | ### Context: CREATE TABLE table_name_51 (remelting_at__°c_ VARCHAR, sn_sb___percentage_ VARCHAR) ### Question: What is the remelting temperature for the alloy that has a Sn/Sb ratio of 9.5/15? ### Answer: SELECT remelting_at__°c_ FROM table_name_51 WHERE sn_sb___percentage_ = "9.5/15" |
What is the casting temperature for the alloy with hardness 21? | CREATE TABLE table_name_98 (casting_at__°c_ VARCHAR, hardness VARCHAR) | SELECT casting_at__°c_ FROM table_name_98 WHERE hardness = "21" | ### Context: CREATE TABLE table_name_98 (casting_at__°c_ VARCHAR, hardness VARCHAR) ### Question: What is the casting temperature for the alloy with hardness 21? ### Answer: SELECT casting_at__°c_ FROM table_name_98 WHERE hardness = "21" |
What's the most laps when grid is 16? | CREATE TABLE table_name_93 (laps INTEGER, grid VARCHAR) | SELECT MAX(laps) FROM table_name_93 WHERE grid = 16 | ### Context: CREATE TABLE table_name_93 (laps INTEGER, grid VARCHAR) ### Question: What's the most laps when grid is 16? ### Answer: SELECT MAX(laps) FROM table_name_93 WHERE grid = 16 |
How many laps were there for a grid of 13? | CREATE TABLE table_name_35 (laps VARCHAR, grid VARCHAR) | SELECT COUNT(laps) FROM table_name_35 WHERE grid = 13 | ### Context: CREATE TABLE table_name_35 (laps VARCHAR, grid VARCHAR) ### Question: How many laps were there for a grid of 13? ### Answer: SELECT COUNT(laps) FROM table_name_35 WHERE grid = 13 |
How many weeks had an attendance at 69,149? | CREATE TABLE table_name_12 (week VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_12 WHERE attendance = "69,149" | ### Context: CREATE TABLE table_name_12 (week VARCHAR, attendance VARCHAR) ### Question: How many weeks had an attendance at 69,149? ### Answer: SELECT COUNT(week) FROM table_name_12 WHERE attendance = "69,149" |
On what date did week 6 occur? | CREATE TABLE table_name_40 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_40 WHERE week = 6 | ### Context: CREATE TABLE table_name_40 (date VARCHAR, week VARCHAR) ### Question: On what date did week 6 occur? ### Answer: SELECT date FROM table_name_40 WHERE week = 6 |
Who was the opponent on December 18, 2005? | CREATE TABLE table_name_80 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_80 WHERE date = "december 18, 2005" | ### Context: CREATE TABLE table_name_80 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on December 18, 2005? ### Answer: SELECT opponent FROM table_name_80 WHERE date = "december 18, 2005" |
What is the result/score for the match report recap on week 14? | CREATE TABLE table_name_25 (result_score VARCHAR, match_report VARCHAR, week VARCHAR) | SELECT result_score FROM table_name_25 WHERE match_report = "recap" AND week = 14 | ### Context: CREATE TABLE table_name_25 (result_score VARCHAR, match_report VARCHAR, week VARCHAR) ### Question: What is the result/score for the match report recap on week 14? ### Answer: SELECT result_score FROM table_name_25 WHERE match_report = "recap" AND week = 14 |
How many weeks have w 51-29 as the result/score? | CREATE TABLE table_name_34 (week INTEGER, result_score VARCHAR) | SELECT SUM(week) FROM table_name_34 WHERE result_score = "w 51-29" | ### Context: CREATE TABLE table_name_34 (week INTEGER, result_score VARCHAR) ### Question: How many weeks have w 51-29 as the result/score? ### Answer: SELECT SUM(week) FROM table_name_34 WHERE result_score = "w 51-29" |
What is the result/score that has 6-5 as the record? | CREATE TABLE table_name_45 (result_score VARCHAR, record VARCHAR) | SELECT result_score FROM table_name_45 WHERE record = "6-5" | ### Context: CREATE TABLE table_name_45 (result_score VARCHAR, record VARCHAR) ### Question: What is the result/score that has 6-5 as the record? ### Answer: SELECT result_score FROM table_name_45 WHERE record = "6-5" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.