question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which opponent had round 1? | CREATE TABLE table_name_85 (opponent VARCHAR, round VARCHAR) | SELECT opponent FROM table_name_85 WHERE round = "1" | ### Context: CREATE TABLE table_name_85 (opponent VARCHAR, round VARCHAR) ### Question: Which opponent had round 1? ### Answer: SELECT opponent FROM table_name_85 WHERE round = "1" |
Which date's opponent was Dender when the tournament was in the Jupiler League and the ground was a? | CREATE TABLE table_name_52 (date VARCHAR, ground VARCHAR, opponent VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_52 WHERE opponent = "dender" AND tournament = "jupiler league" AND ground = "a" | ### Context: CREATE TABLE table_name_52 (date VARCHAR, ground VARCHAR, opponent VARCHAR, tournament VARCHAR) ### Question: Which date's opponent was Dender when the tournament was in the Jupiler League and the ground was a? ### Answer: SELECT date FROM table_name_52 WHERE opponent = "dender" AND tournament = "jupiler league" AND ground = "a" |
Which ground's round was 33? | CREATE TABLE table_name_17 (ground VARCHAR, round VARCHAR) | SELECT ground FROM table_name_17 WHERE round = "33" | ### Context: CREATE TABLE table_name_17 (ground VARCHAR, round VARCHAR) ### Question: Which ground's round was 33? ### Answer: SELECT ground FROM table_name_17 WHERE round = "33" |
Which competition had a final position/round of 2? | CREATE TABLE table_name_68 (competition VARCHAR, final_position___round VARCHAR) | SELECT competition FROM table_name_68 WHERE final_position___round = "2" | ### Context: CREATE TABLE table_name_68 (competition VARCHAR, final_position___round VARCHAR) ### Question: Which competition had a final position/round of 2? ### Answer: SELECT competition FROM table_name_68 WHERE final_position___round = "2" |
Which first match had a final position/round in the third qualifying round? | CREATE TABLE table_name_72 (first_match VARCHAR, final_position___round VARCHAR) | SELECT first_match FROM table_name_72 WHERE final_position___round = "third qualifying round" | ### Context: CREATE TABLE table_name_72 (first_match VARCHAR, final_position___round VARCHAR) ### Question: Which first match had a final position/round in the third qualifying round? ### Answer: SELECT first_match FROM table_name_72 WHERE final_position___round = "third qualifying round" |
What is the lowest number of bronze medals for nations with over 6 total and 2 golds? | CREATE TABLE table_name_71 (bronze INTEGER, gold VARCHAR, total VARCHAR) | SELECT MIN(bronze) FROM table_name_71 WHERE gold = 2 AND total > 6 | ### Context: CREATE TABLE table_name_71 (bronze INTEGER, gold VARCHAR, total VARCHAR) ### Question: What is the lowest number of bronze medals for nations with over 6 total and 2 golds? ### Answer: SELECT MIN(bronze) FROM table_name_71 WHERE gold = 2 AND total > 6 |
What is the total number of silver medals for karate athletes with over 2 golds? | CREATE TABLE table_name_33 (silver VARCHAR, sport VARCHAR, gold VARCHAR) | SELECT COUNT(silver) FROM table_name_33 WHERE sport = "karate" AND gold > 2 | ### Context: CREATE TABLE table_name_33 (silver VARCHAR, sport VARCHAR, gold VARCHAR) ### Question: What is the total number of silver medals for karate athletes with over 2 golds? ### Answer: SELECT COUNT(silver) FROM table_name_33 WHERE sport = "karate" AND gold > 2 |
What is the 2009 value with a 1r in 2010 and A in 2011? | CREATE TABLE table_name_20 (Id VARCHAR) | SELECT 2009 FROM table_name_20 WHERE 2010 = "1r" AND 2011 = "a" | ### Context: CREATE TABLE table_name_20 (Id VARCHAR) ### Question: What is the 2009 value with a 1r in 2010 and A in 2011? ### Answer: SELECT 2009 FROM table_name_20 WHERE 2010 = "1r" AND 2011 = "a" |
What is the 2009 value with a 2010 A value? | CREATE TABLE table_name_79 (Id VARCHAR) | SELECT 2009 FROM table_name_79 WHERE 2010 = "a" | ### Context: CREATE TABLE table_name_79 (Id VARCHAR) ### Question: What is the 2009 value with a 2010 A value? ### Answer: SELECT 2009 FROM table_name_79 WHERE 2010 = "a" |
What is the 2010 value with A in 2008, A in 2011, and 2r in 2012? | CREATE TABLE table_name_50 (Id VARCHAR) | SELECT 2010 FROM table_name_50 WHERE 2008 = "a" AND 2011 = "a" AND 2012 = "2r" | ### Context: CREATE TABLE table_name_50 (Id VARCHAR) ### Question: What is the 2010 value with A in 2008, A in 2011, and 2r in 2012? ### Answer: SELECT 2010 FROM table_name_50 WHERE 2008 = "a" AND 2011 = "a" AND 2012 = "2r" |
What is the average attendance on april 24? | CREATE TABLE table_name_86 (attendance INTEGER, date VARCHAR) | SELECT AVG(attendance) FROM table_name_86 WHERE date = "april 24" | ### Context: CREATE TABLE table_name_86 (attendance INTEGER, date VARCHAR) ### Question: What is the average attendance on april 24? ### Answer: SELECT AVG(attendance) FROM table_name_86 WHERE date = "april 24" |
What was the score of the away team when Richmond played? | CREATE TABLE table_name_85 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_85 WHERE away_team = "richmond" | ### Context: CREATE TABLE table_name_85 (away_team VARCHAR) ### Question: What was the score of the away team when Richmond played? ### Answer: SELECT away_team AS score FROM table_name_85 WHERE away_team = "richmond" |
What company was Constructor when there were 16 laps and grid was 9? | CREATE TABLE table_name_47 (constructor VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT constructor FROM table_name_47 WHERE laps = 16 AND grid = 9 | ### Context: CREATE TABLE table_name_47 (constructor VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: What company was Constructor when there were 16 laps and grid was 9? ### Answer: SELECT constructor FROM table_name_47 WHERE laps = 16 AND grid = 9 |
What is the Time/Retired when lotus - ford was constructor and the laps were less than 17? | CREATE TABLE table_name_99 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR) | SELECT time_retired FROM table_name_99 WHERE constructor = "lotus - ford" AND laps < 17 | ### Context: CREATE TABLE table_name_99 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR) ### Question: What is the Time/Retired when lotus - ford was constructor and the laps were less than 17? ### Answer: SELECT time_retired FROM table_name_99 WHERE constructor = "lotus - ford" AND laps < 17 |
What is the number of the grid when there was a Time/Retired of engine and less than 9 laps? | CREATE TABLE table_name_25 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) | SELECT SUM(grid) FROM table_name_25 WHERE time_retired = "engine" AND laps < 9 | ### Context: CREATE TABLE table_name_25 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) ### Question: What is the number of the grid when there was a Time/Retired of engine and less than 9 laps? ### Answer: SELECT SUM(grid) FROM table_name_25 WHERE time_retired = "engine" AND laps < 9 |
what was the attendance for a home venue and a w 3-0 result? | CREATE TABLE table_name_34 (attendance INTEGER, venue VARCHAR, result VARCHAR) | SELECT AVG(attendance) FROM table_name_34 WHERE venue = "home" AND result = "w 3-0" | ### Context: CREATE TABLE table_name_34 (attendance INTEGER, venue VARCHAR, result VARCHAR) ### Question: what was the attendance for a home venue and a w 3-0 result? ### Answer: SELECT AVG(attendance) FROM table_name_34 WHERE venue = "home" AND result = "w 3-0" |
what was the attendance at the home venue with result w 3-1? | CREATE TABLE table_name_99 (attendance INTEGER, venue VARCHAR, result VARCHAR) | SELECT MAX(attendance) FROM table_name_99 WHERE venue = "home" AND result = "w 3-1" | ### Context: CREATE TABLE table_name_99 (attendance INTEGER, venue VARCHAR, result VARCHAR) ### Question: what was the attendance at the home venue with result w 3-1? ### Answer: SELECT MAX(attendance) FROM table_name_99 WHERE venue = "home" AND result = "w 3-1" |
where did rochdale play as opponent? | CREATE TABLE table_name_77 (venue VARCHAR, opponent VARCHAR) | SELECT venue FROM table_name_77 WHERE opponent = "rochdale" | ### Context: CREATE TABLE table_name_77 (venue VARCHAR, opponent VARCHAR) ### Question: where did rochdale play as opponent? ### Answer: SELECT venue FROM table_name_77 WHERE opponent = "rochdale" |
Which team was hosted at Adelaide Oval? | CREATE TABLE table_name_14 (away_team VARCHAR, stadium VARCHAR) | SELECT away_team FROM table_name_14 WHERE stadium = "adelaide oval" | ### Context: CREATE TABLE table_name_14 (away_team VARCHAR, stadium VARCHAR) ### Question: Which team was hosted at Adelaide Oval? ### Answer: SELECT away_team FROM table_name_14 WHERE stadium = "adelaide oval" |
When was a report not held? | CREATE TABLE table_name_29 (year VARCHAR, report VARCHAR) | SELECT year FROM table_name_29 WHERE report = "not held" | ### Context: CREATE TABLE table_name_29 (year VARCHAR, report VARCHAR) ### Question: When was a report not held? ### Answer: SELECT year FROM table_name_29 WHERE report = "not held" |
Who was the visitor when vancouver was at home? | CREATE TABLE table_name_77 (visitor VARCHAR, home VARCHAR) | SELECT visitor FROM table_name_77 WHERE home = "vancouver" | ### Context: CREATE TABLE table_name_77 (visitor VARCHAR, home VARCHAR) ### Question: Who was the visitor when vancouver was at home? ### Answer: SELECT visitor FROM table_name_77 WHERE home = "vancouver" |
What is the decision when new jersey was away? | CREATE TABLE table_name_96 (decision VARCHAR, visitor VARCHAR) | SELECT decision FROM table_name_96 WHERE visitor = "new jersey" | ### Context: CREATE TABLE table_name_96 (decision VARCHAR, visitor VARCHAR) ### Question: What is the decision when new jersey was away? ### Answer: SELECT decision FROM table_name_96 WHERE visitor = "new jersey" |
What is URA Index scale? | CREATE TABLE table_name_90 (scale VARCHAR, name VARCHAR) | SELECT scale FROM table_name_90 WHERE name = "ura index" | ### Context: CREATE TABLE table_name_90 (scale VARCHAR, name VARCHAR) ### Question: What is URA Index scale? ### Answer: SELECT scale FROM table_name_90 WHERE name = "ura index" |
What is the scale of sv_health with a word number smaller than 4? | CREATE TABLE table_name_8 (scale VARCHAR, word__number VARCHAR, name VARCHAR) | SELECT scale FROM table_name_8 WHERE word__number < 4 AND name = "sv_health" | ### Context: CREATE TABLE table_name_8 (scale VARCHAR, word__number VARCHAR, name VARCHAR) ### Question: What is the scale of sv_health with a word number smaller than 4? ### Answer: SELECT scale FROM table_name_8 WHERE word__number < 4 AND name = "sv_health" |
Which tennis team is from the United States? | CREATE TABLE table_name_55 (team VARCHAR, sport VARCHAR, nation_of_citizenship VARCHAR) | SELECT team FROM table_name_55 WHERE sport = "tennis" AND nation_of_citizenship = "united states" | ### Context: CREATE TABLE table_name_55 (team VARCHAR, sport VARCHAR, nation_of_citizenship VARCHAR) ### Question: Which tennis team is from the United States? ### Answer: SELECT team FROM table_name_55 WHERE sport = "tennis" AND nation_of_citizenship = "united states" |
What is the nation of citizenship for athletes later than 2011 year of award? | CREATE TABLE table_name_12 (nation_of_citizenship VARCHAR, year_of_award INTEGER) | SELECT nation_of_citizenship FROM table_name_12 WHERE year_of_award > 2011 | ### Context: CREATE TABLE table_name_12 (nation_of_citizenship VARCHAR, year_of_award INTEGER) ### Question: What is the nation of citizenship for athletes later than 2011 year of award? ### Answer: SELECT nation_of_citizenship FROM table_name_12 WHERE year_of_award > 2011 |
What Constructor did Michael Schumacher have with a Grid smaller than 5? | CREATE TABLE table_name_62 (constructor VARCHAR, grid VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_62 WHERE grid < 5 AND driver = "michael schumacher" | ### Context: CREATE TABLE table_name_62 (constructor VARCHAR, grid VARCHAR, driver VARCHAR) ### Question: What Constructor did Michael Schumacher have with a Grid smaller than 5? ### Answer: SELECT constructor FROM table_name_62 WHERE grid < 5 AND driver = "michael schumacher" |
Which driver has a Time/Retired of +1 lap? | CREATE TABLE table_name_66 (driver VARCHAR, time_retired VARCHAR) | SELECT driver FROM table_name_66 WHERE time_retired = "+1 lap" | ### Context: CREATE TABLE table_name_66 (driver VARCHAR, time_retired VARCHAR) ### Question: Which driver has a Time/Retired of +1 lap? ### Answer: SELECT driver FROM table_name_66 WHERE time_retired = "+1 lap" |
Which apparatus had a final score that was more than 17.75? | CREATE TABLE table_name_38 (apparatus VARCHAR, score_final INTEGER) | SELECT apparatus FROM table_name_38 WHERE score_final > 17.75 | ### Context: CREATE TABLE table_name_38 (apparatus VARCHAR, score_final INTEGER) ### Question: Which apparatus had a final score that was more than 17.75? ### Answer: SELECT apparatus FROM table_name_38 WHERE score_final > 17.75 |
Which competition description's apparatus was ribbon? | CREATE TABLE table_name_46 (competition_description VARCHAR, apparatus VARCHAR) | SELECT competition_description FROM table_name_46 WHERE apparatus = "ribbon" | ### Context: CREATE TABLE table_name_46 (competition_description VARCHAR, apparatus VARCHAR) ### Question: Which competition description's apparatus was ribbon? ### Answer: SELECT competition_description FROM table_name_46 WHERE apparatus = "ribbon" |
Which Qualifying score had hoop as an apparatus? | CREATE TABLE table_name_94 (score_qualifying VARCHAR, apparatus VARCHAR) | SELECT score_qualifying FROM table_name_94 WHERE apparatus = "hoop" | ### Context: CREATE TABLE table_name_94 (score_qualifying VARCHAR, apparatus VARCHAR) ### Question: Which Qualifying score had hoop as an apparatus? ### Answer: SELECT score_qualifying FROM table_name_94 WHERE apparatus = "hoop" |
What is the sum of qualifying scores when the final score is 16.625? | CREATE TABLE table_name_7 (score_qualifying VARCHAR, score_final VARCHAR) | SELECT COUNT(score_qualifying) FROM table_name_7 WHERE score_final = 16.625 | ### Context: CREATE TABLE table_name_7 (score_qualifying VARCHAR, score_final VARCHAR) ### Question: What is the sum of qualifying scores when the final score is 16.625? ### Answer: SELECT COUNT(score_qualifying) FROM table_name_7 WHERE score_final = 16.625 |
When was the game played at Princes Park? | CREATE TABLE table_name_20 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_20 WHERE venue = "princes park" | ### Context: CREATE TABLE table_name_20 (date VARCHAR, venue VARCHAR) ### Question: When was the game played at Princes Park? ### Answer: SELECT date FROM table_name_20 WHERE venue = "princes park" |
What did Melbourne score as the home team? | CREATE TABLE table_name_88 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_88 WHERE home_team = "melbourne" | ### Context: CREATE TABLE table_name_88 (home_team VARCHAR) ### Question: What did Melbourne score as the home team? ### Answer: SELECT home_team AS score FROM table_name_88 WHERE home_team = "melbourne" |
What position does the player from malvern prep play? | CREATE TABLE table_name_40 (position VARCHAR, high_school VARCHAR) | SELECT position FROM table_name_40 WHERE high_school = "malvern prep" | ### Context: CREATE TABLE table_name_40 (position VARCHAR, high_school VARCHAR) ### Question: What position does the player from malvern prep play? ### Answer: SELECT position FROM table_name_40 WHERE high_school = "malvern prep" |
What team scored more than 572 points and had more than 29 games? | CREATE TABLE table_name_44 (team VARCHAR, points VARCHAR, games VARCHAR) | SELECT team FROM table_name_44 WHERE points > 572 AND games > 29 | ### Context: CREATE TABLE table_name_44 (team VARCHAR, points VARCHAR, games VARCHAR) ### Question: What team scored more than 572 points and had more than 29 games? ### Answer: SELECT team FROM table_name_44 WHERE points > 572 AND games > 29 |
What is the least amount of games for Luis scola with a rank greater than 1? | CREATE TABLE table_name_88 (games INTEGER, rank VARCHAR, name VARCHAR) | SELECT MIN(games) FROM table_name_88 WHERE rank > 1 AND name = "luis scola" | ### Context: CREATE TABLE table_name_88 (games INTEGER, rank VARCHAR, name VARCHAR) ### Question: What is the least amount of games for Luis scola with a rank greater than 1? ### Answer: SELECT MIN(games) FROM table_name_88 WHERE rank > 1 AND name = "luis scola" |
What is the identity of the brighton works built train? | CREATE TABLE table_name_48 (identity VARCHAR, builder VARCHAR) | SELECT identity FROM table_name_48 WHERE builder = "brighton works" | ### Context: CREATE TABLE table_name_48 (identity VARCHAR, builder VARCHAR) ### Question: What is the identity of the brighton works built train? ### Answer: SELECT identity FROM table_name_48 WHERE builder = "brighton works" |
What was the attendance on May 13? | CREATE TABLE table_name_76 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_76 WHERE date = "may 13" | ### Context: CREATE TABLE table_name_76 (attendance VARCHAR, date VARCHAR) ### Question: What was the attendance on May 13? ### Answer: SELECT attendance FROM table_name_76 WHERE date = "may 13" |
What is the highest Quantity for PTRD Nos. 3, 15? | CREATE TABLE table_name_84 (quantity INTEGER, ptrd_nos VARCHAR) | SELECT MAX(quantity) FROM table_name_84 WHERE ptrd_nos = "3, 15" | ### Context: CREATE TABLE table_name_84 (quantity INTEGER, ptrd_nos VARCHAR) ### Question: What is the highest Quantity for PTRD Nos. 3, 15? ### Answer: SELECT MAX(quantity) FROM table_name_84 WHERE ptrd_nos = "3, 15" |
How many were hosted whene the average attendance was 27,638? | CREATE TABLE table_name_85 (hosted VARCHAR, average VARCHAR) | SELECT COUNT(hosted) FROM table_name_85 WHERE average = 27 OFFSET 638 | ### Context: CREATE TABLE table_name_85 (hosted VARCHAR, average VARCHAR) ### Question: How many were hosted whene the average attendance was 27,638? ### Answer: SELECT COUNT(hosted) FROM table_name_85 WHERE average = 27 OFFSET 638 |
What is the lowest attendance last year when more than 176 were hosted? | CREATE TABLE table_name_87 (last_year INTEGER, hosted INTEGER) | SELECT MIN(last_year) FROM table_name_87 WHERE hosted > 176 | ### Context: CREATE TABLE table_name_87 (last_year INTEGER, hosted INTEGER) ### Question: What is the lowest attendance last year when more than 176 were hosted? ### Answer: SELECT MIN(last_year) FROM table_name_87 WHERE hosted > 176 |
How many 1990 growth numbers had less than 10,522 in 1970? | CREATE TABLE table_name_49 (Id VARCHAR) | SELECT COUNT(1990) FROM table_name_49 WHERE 1970 < 10 OFFSET 522 | ### Context: CREATE TABLE table_name_49 (Id VARCHAR) ### Question: How many 1990 growth numbers had less than 10,522 in 1970? ### Answer: SELECT COUNT(1990) FROM table_name_49 WHERE 1970 < 10 OFFSET 522 |
Which is the lowest 1980 growth that had 2,610 in 1970? | CREATE TABLE table_name_61 (Id VARCHAR) | SELECT MIN(1980) FROM table_name_61 WHERE 1970 = 2 OFFSET 610 | ### Context: CREATE TABLE table_name_61 (Id VARCHAR) ### Question: Which is the lowest 1980 growth that had 2,610 in 1970? ### Answer: SELECT MIN(1980) FROM table_name_61 WHERE 1970 = 2 OFFSET 610 |
What is the high lap total that has a grid of less than 4 and a Time/Retired of + 1 lap? | CREATE TABLE table_name_3 (laps INTEGER, grid VARCHAR, time_retired VARCHAR) | SELECT MAX(laps) FROM table_name_3 WHERE grid < 4 AND time_retired = "+ 1 lap" | ### Context: CREATE TABLE table_name_3 (laps INTEGER, grid VARCHAR, time_retired VARCHAR) ### Question: What is the high lap total that has a grid of less than 4 and a Time/Retired of + 1 lap? ### Answer: SELECT MAX(laps) FROM table_name_3 WHERE grid < 4 AND time_retired = "+ 1 lap" |
How many laps associated with a Time/Retired of + 1:25.475? | CREATE TABLE table_name_62 (laps VARCHAR, time_retired VARCHAR) | SELECT COUNT(laps) FROM table_name_62 WHERE time_retired = "+ 1:25.475" | ### Context: CREATE TABLE table_name_62 (laps VARCHAR, time_retired VARCHAR) ### Question: How many laps associated with a Time/Retired of + 1:25.475? ### Answer: SELECT COUNT(laps) FROM table_name_62 WHERE time_retired = "+ 1:25.475" |
What was the home teams score when the VFL played Princes Park? | CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_76 WHERE venue = "princes park" | ### Context: CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR) ### Question: What was the home teams score when the VFL played Princes Park? ### Answer: SELECT home_team AS score FROM table_name_76 WHERE venue = "princes park" |
What was the opponents score when Geelong played as home team? | CREATE TABLE table_name_99 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_99 WHERE home_team = "geelong" | ### Context: CREATE TABLE table_name_99 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the opponents score when Geelong played as home team? ### Answer: SELECT away_team AS score FROM table_name_99 WHERE home_team = "geelong" |
What was the home teams score when the VFL played at Kardinia Park? | CREATE TABLE table_name_80 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_80 WHERE venue = "kardinia park" | ### Context: CREATE TABLE table_name_80 (home_team VARCHAR, venue VARCHAR) ### Question: What was the home teams score when the VFL played at Kardinia Park? ### Answer: SELECT home_team AS score FROM table_name_80 WHERE venue = "kardinia park" |
When did Fitzroy play as the away team? | CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_70 WHERE away_team = "fitzroy" | ### Context: CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR) ### Question: When did Fitzroy play as the away team? ### Answer: SELECT date FROM table_name_70 WHERE away_team = "fitzroy" |
What is the average number of goals of the player with 234 apps and a rank above 8? | CREATE TABLE table_name_13 (goals INTEGER, apps VARCHAR, rank VARCHAR) | SELECT AVG(goals) FROM table_name_13 WHERE apps = 234 AND rank < 8 | ### Context: CREATE TABLE table_name_13 (goals INTEGER, apps VARCHAR, rank VARCHAR) ### Question: What is the average number of goals of the player with 234 apps and a rank above 8? ### Answer: SELECT AVG(goals) FROM table_name_13 WHERE apps = 234 AND rank < 8 |
What is the average avg/game of the player with 97 goals and a rank above 7? | CREATE TABLE table_name_51 (avg_game INTEGER, goals VARCHAR, rank VARCHAR) | SELECT AVG(avg_game) FROM table_name_51 WHERE goals = 97 AND rank < 7 | ### Context: CREATE TABLE table_name_51 (avg_game INTEGER, goals VARCHAR, rank VARCHAR) ### Question: What is the average avg/game of the player with 97 goals and a rank above 7? ### Answer: SELECT AVG(avg_game) FROM table_name_51 WHERE goals = 97 AND rank < 7 |
What is the highest number of games won where less than 21 games were conceded and less than 18 games were actually played? | CREATE TABLE table_name_85 (won__pg_ INTEGER, goals_conceded__gc_ VARCHAR, played__pj_ VARCHAR) | SELECT MAX(won__pg_) FROM table_name_85 WHERE goals_conceded__gc_ < 21 AND played__pj_ < 18 | ### Context: CREATE TABLE table_name_85 (won__pg_ INTEGER, goals_conceded__gc_ VARCHAR, played__pj_ VARCHAR) ### Question: What is the highest number of games won where less than 21 games were conceded and less than 18 games were actually played? ### Answer: SELECT MAX(won__pg_) FROM table_name_85 WHERE goals_conceded__gc_ < 21 AND played__pj_ < 18 |
What is the average number of goals conceded where more than 19 goals were scored, the team had 31 points, and more than 7 draws? | CREATE TABLE table_name_80 (goals_conceded__gc_ INTEGER, draw__pe_ VARCHAR, goals_scored__gf_ VARCHAR, points__pts_ VARCHAR) | SELECT AVG(goals_conceded__gc_) FROM table_name_80 WHERE goals_scored__gf_ > 19 AND points__pts_ = 31 AND draw__pe_ > 7 | ### Context: CREATE TABLE table_name_80 (goals_conceded__gc_ INTEGER, draw__pe_ VARCHAR, goals_scored__gf_ VARCHAR, points__pts_ VARCHAR) ### Question: What is the average number of goals conceded where more than 19 goals were scored, the team had 31 points, and more than 7 draws? ### Answer: SELECT AVG(goals_conceded__gc_) FROM table_name_80 WHERE goals_scored__gf_ > 19 AND points__pts_ = 31 AND draw__pe_ > 7 |
How many goals were conceded against the Chepo F.C. team where they lost 7 games? | CREATE TABLE table_name_32 (goals_conceded__gc_ VARCHAR, lost__pp_ VARCHAR, team__equipo_ VARCHAR) | SELECT goals_conceded__gc_ FROM table_name_32 WHERE lost__pp_ = 7 AND team__equipo_ = "chepo f.c." | ### Context: CREATE TABLE table_name_32 (goals_conceded__gc_ VARCHAR, lost__pp_ VARCHAR, team__equipo_ VARCHAR) ### Question: How many goals were conceded against the Chepo F.C. team where they lost 7 games? ### Answer: SELECT goals_conceded__gc_ FROM table_name_32 WHERE lost__pp_ = 7 AND team__equipo_ = "chepo f.c." |
What was the smallest crowd at junction oval? | CREATE TABLE table_name_61 (crowd INTEGER, venue VARCHAR) | SELECT MIN(crowd) FROM table_name_61 WHERE venue = "junction oval" | ### Context: CREATE TABLE table_name_61 (crowd INTEGER, venue VARCHAR) ### Question: What was the smallest crowd at junction oval? ### Answer: SELECT MIN(crowd) FROM table_name_61 WHERE venue = "junction oval" |
What state has Richard Foster as a member? | CREATE TABLE table_name_49 (state VARCHAR, member VARCHAR) | SELECT state FROM table_name_49 WHERE member = "richard foster" | ### Context: CREATE TABLE table_name_49 (state VARCHAR, member VARCHAR) ### Question: What state has Richard Foster as a member? ### Answer: SELECT state FROM table_name_49 WHERE member = "richard foster" |
Which member has Cook as the electorate? | CREATE TABLE table_name_16 (member VARCHAR, electorate VARCHAR) | SELECT member FROM table_name_16 WHERE electorate = "cook" | ### Context: CREATE TABLE table_name_16 (member VARCHAR, electorate VARCHAR) ### Question: Which member has Cook as the electorate? ### Answer: SELECT member FROM table_name_16 WHERE electorate = "cook" |
Who was the driver with chassis 625 553 500? | CREATE TABLE table_name_72 (driver VARCHAR, chassis VARCHAR) | SELECT driver FROM table_name_72 WHERE chassis = "625 553 500" | ### Context: CREATE TABLE table_name_72 (driver VARCHAR, chassis VARCHAR) ### Question: Who was the driver with chassis 625 553 500? ### Answer: SELECT driver FROM table_name_72 WHERE chassis = "625 553 500" |
What was tyre that was made by cooper - bristol that was driven by bob gerard? | CREATE TABLE table_name_77 (tyre VARCHAR, constructor VARCHAR, driver VARCHAR) | SELECT tyre FROM table_name_77 WHERE constructor = "cooper - bristol" AND driver = "bob gerard" | ### Context: CREATE TABLE table_name_77 (tyre VARCHAR, constructor VARCHAR, driver VARCHAR) ### Question: What was tyre that was made by cooper - bristol that was driven by bob gerard? ### Answer: SELECT tyre FROM table_name_77 WHERE constructor = "cooper - bristol" AND driver = "bob gerard" |
Who was the constructor of the officine alfieri maserati that was driven by Sergio Mantovani? | CREATE TABLE table_name_77 (constructor VARCHAR, entrant VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_77 WHERE entrant = "officine alfieri maserati" AND driver = "sergio mantovani" | ### Context: CREATE TABLE table_name_77 (constructor VARCHAR, entrant VARCHAR, driver VARCHAR) ### Question: Who was the constructor of the officine alfieri maserati that was driven by Sergio Mantovani? ### Answer: SELECT constructor FROM table_name_77 WHERE entrant = "officine alfieri maserati" AND driver = "sergio mantovani" |
What tyre had Sergio Mantovani as a driver? | CREATE TABLE table_name_91 (tyre VARCHAR, driver VARCHAR) | SELECT tyre FROM table_name_91 WHERE driver = "sergio mantovani" | ### Context: CREATE TABLE table_name_91 (tyre VARCHAR, driver VARCHAR) ### Question: What tyre had Sergio Mantovani as a driver? ### Answer: SELECT tyre FROM table_name_91 WHERE driver = "sergio mantovani" |
Can you say what was the entrant of maserati built item with a Tyre of p with a chassis of 250f a6gcm that was driven by Luigi Villoresi? | CREATE TABLE table_name_86 (entrant VARCHAR, driver VARCHAR, chassis VARCHAR, constructor VARCHAR, tyre VARCHAR) | SELECT entrant FROM table_name_86 WHERE constructor = "maserati" AND tyre = "p" AND chassis = "250f a6gcm" AND driver = "luigi villoresi" | ### Context: CREATE TABLE table_name_86 (entrant VARCHAR, driver VARCHAR, chassis VARCHAR, constructor VARCHAR, tyre VARCHAR) ### Question: Can you say what was the entrant of maserati built item with a Tyre of p with a chassis of 250f a6gcm that was driven by Luigi Villoresi? ### Answer: SELECT entrant FROM table_name_86 WHERE constructor = "maserati" AND tyre = "p" AND chassis = "250f a6gcm" AND driver = "luigi villoresi" |
What is the dutch word for one? | CREATE TABLE table_name_18 (dutch VARCHAR, english VARCHAR) | SELECT dutch FROM table_name_18 WHERE english = "one" | ### Context: CREATE TABLE table_name_18 (dutch VARCHAR, english VARCHAR) ### Question: What is the dutch word for one? ### Answer: SELECT dutch FROM table_name_18 WHERE english = "one" |
What is the Middle German (Luxemburgish) word for ein? | CREATE TABLE table_name_20 (middle_german___luxemburgish__ VARCHAR, ein VARCHAR, Limburgish VARCHAR) | SELECT middle_german___luxemburgish__ FROM table_name_20 WHERE DUTCH(Limburgish) = ein | ### Context: CREATE TABLE table_name_20 (middle_german___luxemburgish__ VARCHAR, ein VARCHAR, Limburgish VARCHAR) ### Question: What is the Middle German (Luxemburgish) word for ein? ### Answer: SELECT middle_german___luxemburgish__ FROM table_name_20 WHERE DUTCH(Limburgish) = ein |
What is the Middle German (Luxemburgish) word for stone? | CREATE TABLE table_name_58 (middle_german___luxemburgish__ VARCHAR, english VARCHAR) | SELECT middle_german___luxemburgish__ FROM table_name_58 WHERE english = "stone" | ### Context: CREATE TABLE table_name_58 (middle_german___luxemburgish__ VARCHAR, english VARCHAR) ### Question: What is the Middle German (Luxemburgish) word for stone? ### Answer: SELECT middle_german___luxemburgish__ FROM table_name_58 WHERE english = "stone" |
What is the Dutch waord for høvd / høvur? | CREATE TABLE table_name_68 (dutch VARCHAR, Groningen VARCHAR, høvd VARCHAR, høvur VARCHAR) | SELECT dutch FROM table_name_68 WHERE LOW_GERMAN(Groningen) = høvd / høvur | ### Context: CREATE TABLE table_name_68 (dutch VARCHAR, Groningen VARCHAR, høvd VARCHAR, høvur VARCHAR) ### Question: What is the Dutch waord for høvd / høvur? ### Answer: SELECT dutch FROM table_name_68 WHERE LOW_GERMAN(Groningen) = høvd / høvur |
What is the English word for twie? | CREATE TABLE table_name_43 (english VARCHAR, twie VARCHAR, Limburgish VARCHAR) | SELECT english FROM table_name_43 WHERE DUTCH(Limburgish) = twie | ### Context: CREATE TABLE table_name_43 (english VARCHAR, twie VARCHAR, Limburgish VARCHAR) ### Question: What is the English word for twie? ### Answer: SELECT english FROM table_name_43 WHERE DUTCH(Limburgish) = twie |
What is the constructor on the team with 8 rounds and a chassis of 156 158 1512? | CREATE TABLE table_name_54 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR) | SELECT constructor FROM table_name_54 WHERE rounds = "8" AND chassis = "156 158 1512" | ### Context: CREATE TABLE table_name_54 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR) ### Question: What is the constructor on the team with 8 rounds and a chassis of 156 158 1512? ### Answer: SELECT constructor FROM table_name_54 WHERE rounds = "8" AND chassis = "156 158 1512" |
Who is the driver of the team with tyre d, bt11 chassis, and 8 rounds? | CREATE TABLE table_name_92 (driver VARCHAR, rounds VARCHAR, tyre VARCHAR, chassis VARCHAR) | SELECT driver FROM table_name_92 WHERE tyre = "d" AND chassis = "bt11" AND rounds = "8" | ### Context: CREATE TABLE table_name_92 (driver VARCHAR, rounds VARCHAR, tyre VARCHAR, chassis VARCHAR) ### Question: Who is the driver of the team with tyre d, bt11 chassis, and 8 rounds? ### Answer: SELECT driver FROM table_name_92 WHERE tyre = "d" AND chassis = "bt11" AND rounds = "8" |
What is the number of bronze that silver is smaller than 1 and gold bigger than 0? | CREATE TABLE table_name_51 (bronze INTEGER, silver VARCHAR, gold VARCHAR) | SELECT AVG(bronze) FROM table_name_51 WHERE silver < 1 AND gold > 0 | ### Context: CREATE TABLE table_name_51 (bronze INTEGER, silver VARCHAR, gold VARCHAR) ### Question: What is the number of bronze that silver is smaller than 1 and gold bigger than 0? ### Answer: SELECT AVG(bronze) FROM table_name_51 WHERE silver < 1 AND gold > 0 |
what is the name when the nation is France, the pts/game is more than 3 and points is less than 33? | CREATE TABLE table_name_55 (name VARCHAR, points VARCHAR, nation VARCHAR, pts_game VARCHAR) | SELECT name FROM table_name_55 WHERE nation = "france" AND pts_game > 3 AND points < 33 | ### Context: CREATE TABLE table_name_55 (name VARCHAR, points VARCHAR, nation VARCHAR, pts_game VARCHAR) ### Question: what is the name when the nation is France, the pts/game is more than 3 and points is less than 33? ### Answer: SELECT name FROM table_name_55 WHERE nation = "france" AND pts_game > 3 AND points < 33 |
what is the pts/game for Charlotte barras and the games is 5? | CREATE TABLE table_name_78 (pts_game VARCHAR, games VARCHAR, name VARCHAR) | SELECT pts_game FROM table_name_78 WHERE games = 5 AND name = "charlotte barras" | ### Context: CREATE TABLE table_name_78 (pts_game VARCHAR, games VARCHAR, name VARCHAR) ### Question: what is the pts/game for Charlotte barras and the games is 5? ### Answer: SELECT pts_game FROM table_name_78 WHERE games = 5 AND name = "charlotte barras" |
what is the average points when the nation is wales and the pts/game is more than 5? | CREATE TABLE table_name_97 (points INTEGER, nation VARCHAR, pts_game VARCHAR) | SELECT AVG(points) FROM table_name_97 WHERE nation = "wales" AND pts_game > 5 | ### Context: CREATE TABLE table_name_97 (points INTEGER, nation VARCHAR, pts_game VARCHAR) ### Question: what is the average points when the nation is wales and the pts/game is more than 5? ### Answer: SELECT AVG(points) FROM table_name_97 WHERE nation = "wales" AND pts_game > 5 |
When is the earliest year for it is in barcelona, spain? | CREATE TABLE table_name_35 (year INTEGER, venue VARCHAR) | SELECT MIN(year) FROM table_name_35 WHERE venue = "barcelona, spain" | ### Context: CREATE TABLE table_name_35 (year INTEGER, venue VARCHAR) ### Question: When is the earliest year for it is in barcelona, spain? ### Answer: SELECT MIN(year) FROM table_name_35 WHERE venue = "barcelona, spain" |
What is the average year they finished 5th in santiago, chile? | CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, venue VARCHAR) | SELECT AVG(year) FROM table_name_57 WHERE position = "5th" AND venue = "santiago, chile" | ### Context: CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, venue VARCHAR) ### Question: What is the average year they finished 5th in santiago, chile? ### Answer: SELECT AVG(year) FROM table_name_57 WHERE position = "5th" AND venue = "santiago, chile" |
Which pick was MIchael Holper? | CREATE TABLE table_name_42 (pick INTEGER, player VARCHAR) | SELECT MIN(pick) FROM table_name_42 WHERE player = "michael holper" | ### Context: CREATE TABLE table_name_42 (pick INTEGER, player VARCHAR) ### Question: Which pick was MIchael Holper? ### Answer: SELECT MIN(pick) FROM table_name_42 WHERE player = "michael holper" |
What is the average Gold where the Nation is Russia (rus) and the number of silver is less than 2? | CREATE TABLE table_name_99 (gold INTEGER, nation VARCHAR, silver VARCHAR) | SELECT AVG(gold) FROM table_name_99 WHERE nation = "russia (rus)" AND silver < 2 | ### Context: CREATE TABLE table_name_99 (gold INTEGER, nation VARCHAR, silver VARCHAR) ### Question: What is the average Gold where the Nation is Russia (rus) and the number of silver is less than 2? ### Answer: SELECT AVG(gold) FROM table_name_99 WHERE nation = "russia (rus)" AND silver < 2 |
What is the total where the nation is South Africa (rsa) and bronze is less than 1? | CREATE TABLE table_name_45 (total INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT SUM(total) FROM table_name_45 WHERE nation = "south africa (rsa)" AND bronze < 1 | ### Context: CREATE TABLE table_name_45 (total INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: What is the total where the nation is South Africa (rsa) and bronze is less than 1? ### Answer: SELECT SUM(total) FROM table_name_45 WHERE nation = "south africa (rsa)" AND bronze < 1 |
Which nation has 0 gold, a rank greater than 14, a total of 1, and silver less than 1? | CREATE TABLE table_name_10 (nation VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR) | SELECT nation FROM table_name_10 WHERE gold = 0 AND rank > 14 AND total = 1 AND silver < 1 | ### Context: CREATE TABLE table_name_10 (nation VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR) ### Question: Which nation has 0 gold, a rank greater than 14, a total of 1, and silver less than 1? ### Answer: SELECT nation FROM table_name_10 WHERE gold = 0 AND rank > 14 AND total = 1 AND silver < 1 |
Tell me the home team for vfl park venue | CREATE TABLE table_name_21 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_21 WHERE venue = "vfl park" | ### Context: CREATE TABLE table_name_21 (home_team VARCHAR, venue VARCHAR) ### Question: Tell me the home team for vfl park venue ### Answer: SELECT home_team FROM table_name_21 WHERE venue = "vfl park" |
Tell me the home team for venue of mcg | CREATE TABLE table_name_70 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_70 WHERE venue = "mcg" | ### Context: CREATE TABLE table_name_70 (home_team VARCHAR, venue VARCHAR) ### Question: Tell me the home team for venue of mcg ### Answer: SELECT home_team FROM table_name_70 WHERE venue = "mcg" |
Tell me the most crowd for arden street oval venue | CREATE TABLE table_name_39 (crowd INTEGER, venue VARCHAR) | SELECT MAX(crowd) FROM table_name_39 WHERE venue = "arden street oval" | ### Context: CREATE TABLE table_name_39 (crowd INTEGER, venue VARCHAR) ### Question: Tell me the most crowd for arden street oval venue ### Answer: SELECT MAX(crowd) FROM table_name_39 WHERE venue = "arden street oval" |
What was the away team's score when South Melbourne was the home team? | CREATE TABLE table_name_51 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_51 WHERE home_team = "south melbourne" | ### Context: CREATE TABLE table_name_51 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the away team's score when South Melbourne was the home team? ### Answer: SELECT away_team AS score FROM table_name_51 WHERE home_team = "south melbourne" |
What was the placing of the nation of East Germany? | CREATE TABLE table_name_92 (placings VARCHAR, nation VARCHAR) | SELECT COUNT(placings) FROM table_name_92 WHERE nation = "east germany" | ### Context: CREATE TABLE table_name_92 (placings VARCHAR, nation VARCHAR) ### Question: What was the placing of the nation of East Germany? ### Answer: SELECT COUNT(placings) FROM table_name_92 WHERE nation = "east germany" |
What's the highest level of team Astana since 2007? | CREATE TABLE table_name_96 (level INTEGER, team VARCHAR, season VARCHAR) | SELECT MAX(level) FROM table_name_96 WHERE team = "astana" AND season > 2007 | ### Context: CREATE TABLE table_name_96 (level INTEGER, team VARCHAR, season VARCHAR) ### Question: What's the highest level of team Astana since 2007? ### Answer: SELECT MAX(level) FROM table_name_96 WHERE team = "astana" AND season > 2007 |
Who was the away team at Western Oval? | CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_52 WHERE venue = "western oval" | ### Context: CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR) ### Question: Who was the away team at Western Oval? ### Answer: SELECT away_team FROM table_name_52 WHERE venue = "western oval" |
Who was the home team that played against Collingwood? | CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_90 WHERE away_team = "collingwood" | ### Context: CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR) ### Question: Who was the home team that played against Collingwood? ### Answer: SELECT home_team FROM table_name_90 WHERE away_team = "collingwood" |
What is the average crowd size for Richmond home games? | CREATE TABLE table_name_2 (crowd INTEGER, home_team VARCHAR) | SELECT AVG(crowd) FROM table_name_2 WHERE home_team = "richmond" | ### Context: CREATE TABLE table_name_2 (crowd INTEGER, home_team VARCHAR) ### Question: What is the average crowd size for Richmond home games? ### Answer: SELECT AVG(crowd) FROM table_name_2 WHERE home_team = "richmond" |
What is the largest crowd for North Melbourne home games? | CREATE TABLE table_name_48 (crowd INTEGER, home_team VARCHAR) | SELECT MAX(crowd) FROM table_name_48 WHERE home_team = "north melbourne" | ### Context: CREATE TABLE table_name_48 (crowd INTEGER, home_team VARCHAR) ### Question: What is the largest crowd for North Melbourne home games? ### Answer: SELECT MAX(crowd) FROM table_name_48 WHERE home_team = "north melbourne" |
In which venue does Melbourne play as the home team? | CREATE TABLE table_name_62 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_62 WHERE home_team = "melbourne" | ### Context: CREATE TABLE table_name_62 (venue VARCHAR, home_team VARCHAR) ### Question: In which venue does Melbourne play as the home team? ### Answer: SELECT venue FROM table_name_62 WHERE home_team = "melbourne" |
Which Grid has a Driver of johnny dumfries? | CREATE TABLE table_name_85 (grid VARCHAR, driver VARCHAR) | SELECT grid FROM table_name_85 WHERE driver = "johnny dumfries" | ### Context: CREATE TABLE table_name_85 (grid VARCHAR, driver VARCHAR) ### Question: Which Grid has a Driver of johnny dumfries? ### Answer: SELECT grid FROM table_name_85 WHERE driver = "johnny dumfries" |
What is the score on 22 September 1972? | CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_24 WHERE date = "22 september 1972" | ### Context: CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR) ### Question: What is the score on 22 September 1972? ### Answer: SELECT score FROM table_name_24 WHERE date = "22 september 1972" |
What is the venue on 3 September 1972? | CREATE TABLE table_name_57 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_57 WHERE date = "3 september 1972" | ### Context: CREATE TABLE table_name_57 (venue VARCHAR, date VARCHAR) ### Question: What is the venue on 3 September 1972? ### Answer: SELECT venue FROM table_name_57 WHERE date = "3 september 1972" |
Name the series for april 30 | CREATE TABLE table_name_2 (series VARCHAR, date VARCHAR) | SELECT series FROM table_name_2 WHERE date = "april 30" | ### Context: CREATE TABLE table_name_2 (series VARCHAR, date VARCHAR) ### Question: Name the series for april 30 ### Answer: SELECT series FROM table_name_2 WHERE date = "april 30" |
Name the highest game for west (8) high assists | CREATE TABLE table_name_35 (game INTEGER, high_assists VARCHAR) | SELECT MAX(game) FROM table_name_35 WHERE high_assists = "west (8)" | ### Context: CREATE TABLE table_name_35 (game INTEGER, high_assists VARCHAR) ### Question: Name the highest game for west (8) high assists ### Answer: SELECT MAX(game) FROM table_name_35 WHERE high_assists = "west (8)" |
Which Year has a Date of 14 February? | CREATE TABLE table_name_11 (year INTEGER, date VARCHAR) | SELECT MIN(year) FROM table_name_11 WHERE date = "14 february" | ### Context: CREATE TABLE table_name_11 (year INTEGER, date VARCHAR) ### Question: Which Year has a Date of 14 February? ### Answer: SELECT MIN(year) FROM table_name_11 WHERE date = "14 february" |
Which Label has a Date of 20 July? | CREATE TABLE table_name_48 (label VARCHAR, date VARCHAR) | SELECT label FROM table_name_48 WHERE date = "20 july" | ### Context: CREATE TABLE table_name_48 (label VARCHAR, date VARCHAR) ### Question: Which Label has a Date of 20 July? ### Answer: SELECT label FROM table_name_48 WHERE date = "20 july" |
Which Label has a Date of 14 February? | CREATE TABLE table_name_56 (label VARCHAR, date VARCHAR) | SELECT label FROM table_name_56 WHERE date = "14 february" | ### Context: CREATE TABLE table_name_56 (label VARCHAR, date VARCHAR) ### Question: Which Label has a Date of 14 February? ### Answer: SELECT label FROM table_name_56 WHERE date = "14 february" |
Who choreographed the smooth waltz with lacey schwimmer? | CREATE TABLE table_name_94 (choreographer_s_ VARCHAR, style VARCHAR, partner VARCHAR) | SELECT choreographer_s_ FROM table_name_94 WHERE style = "smooth waltz" AND partner = "lacey schwimmer" | ### Context: CREATE TABLE table_name_94 (choreographer_s_ VARCHAR, style VARCHAR, partner VARCHAR) ### Question: Who choreographed the smooth waltz with lacey schwimmer? ### Answer: SELECT choreographer_s_ FROM table_name_94 WHERE style = "smooth waltz" AND partner = "lacey schwimmer" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.