question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which opponents are on the date July 22? | CREATE TABLE table_23612439_2 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_23612439_2 WHERE date = "July 22" | ### Context: CREATE TABLE table_23612439_2 (opponent VARCHAR, date VARCHAR) ### Question: Which opponents are on the date July 22? ### Answer: SELECT opponent FROM table_23612439_2 WHERE date = "July 22" |
Which opponents are on the date September 5? | CREATE TABLE table_23612439_2 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_23612439_2 WHERE date = "September 5" | ### Context: CREATE TABLE table_23612439_2 (opponent VARCHAR, date VARCHAR) ### Question: Which opponents are on the date September 5? ### Answer: SELECT opponent FROM table_23612439_2 WHERE date = "September 5" |
What is the final score when July 16 is the date? | CREATE TABLE table_23612439_2 (final_score VARCHAR, date VARCHAR) | SELECT final_score FROM table_23612439_2 WHERE date = "July 16" | ### Context: CREATE TABLE table_23612439_2 (final_score VARCHAR, date VARCHAR) ### Question: What is the final score when July 16 is the date? ### Answer: SELECT final_score FROM table_23612439_2 WHERE date = "July 16" |
On which date is Taylor Field the location? | CREATE TABLE table_23612439_2 (date VARCHAR, location VARCHAR) | SELECT date FROM table_23612439_2 WHERE location = "Taylor Field" | ### Context: CREATE TABLE table_23612439_2 (date VARCHAR, location VARCHAR) ### Question: On which date is Taylor Field the location? ### Answer: SELECT date FROM table_23612439_2 WHERE location = "Taylor Field" |
Name the number of regular season for 2007 | CREATE TABLE table_2361788_1 (regular_season VARCHAR, year VARCHAR) | SELECT COUNT(regular_season) FROM table_2361788_1 WHERE year = 2007 | ### Context: CREATE TABLE table_2361788_1 (regular_season VARCHAR, year VARCHAR) ### Question: Name the number of regular season for 2007 ### Answer: SELECT COUNT(regular_season) FROM table_2361788_1 WHERE year = 2007 |
Name the most year for conference finals | CREATE TABLE table_2361788_1 (year INTEGER, playoffs VARCHAR) | SELECT MAX(year) FROM table_2361788_1 WHERE playoffs = "Conference Finals" | ### Context: CREATE TABLE table_2361788_1 (year INTEGER, playoffs VARCHAR) ### Question: Name the most year for conference finals ### Answer: SELECT MAX(year) FROM table_2361788_1 WHERE playoffs = "Conference Finals" |
Name the regular season for final playoffs | CREATE TABLE table_2361911_2 (regular_season VARCHAR, playoffs VARCHAR) | SELECT regular_season FROM table_2361911_2 WHERE playoffs = "Final" | ### Context: CREATE TABLE table_2361911_2 (regular_season VARCHAR, playoffs VARCHAR) ### Question: Name the regular season for final playoffs ### Answer: SELECT regular_season FROM table_2361911_2 WHERE playoffs = "Final" |
Name the least division | CREATE TABLE table_2361911_2 (division INTEGER) | SELECT MIN(division) FROM table_2361911_2 | ### Context: CREATE TABLE table_2361911_2 (division INTEGER) ### Question: Name the least division ### Answer: SELECT MIN(division) FROM table_2361911_2 |
Name the regular season for usisl d-3 pro league did not qualify | CREATE TABLE table_2361911_2 (regular_season VARCHAR, league VARCHAR, playoffs VARCHAR) | SELECT regular_season FROM table_2361911_2 WHERE league = "USISL D-3 Pro league" AND playoffs = "Did not qualify" | ### Context: CREATE TABLE table_2361911_2 (regular_season VARCHAR, league VARCHAR, playoffs VARCHAR) ### Question: Name the regular season for usisl d-3 pro league did not qualify ### Answer: SELECT regular_season FROM table_2361911_2 WHERE league = "USISL D-3 Pro league" AND playoffs = "Did not qualify" |
What was the position of the player from Saskatchewan Roughriders? | CREATE TABLE table_23619005_3 (position VARCHAR, cfl_team VARCHAR) | SELECT position FROM table_23619005_3 WHERE cfl_team = "Saskatchewan Roughriders" | ### Context: CREATE TABLE table_23619005_3 (position VARCHAR, cfl_team VARCHAR) ### Question: What was the position of the player from Saskatchewan Roughriders? ### Answer: SELECT position FROM table_23619005_3 WHERE cfl_team = "Saskatchewan Roughriders" |
What CFL team was the player playing on SB position drafted for? | CREATE TABLE table_23619005_3 (cfl_team VARCHAR, position VARCHAR) | SELECT cfl_team FROM table_23619005_3 WHERE position = "SB" | ### Context: CREATE TABLE table_23619005_3 (cfl_team VARCHAR, position VARCHAR) ### Question: What CFL team was the player playing on SB position drafted for? ### Answer: SELECT cfl_team FROM table_23619005_3 WHERE position = "SB" |
What was Michael Shaver's position? | CREATE TABLE table_23619005_3 (position VARCHAR, player VARCHAR) | SELECT position FROM table_23619005_3 WHERE player = "Michael Shaver" | ### Context: CREATE TABLE table_23619005_3 (position VARCHAR, player VARCHAR) ### Question: What was Michael Shaver's position? ### Answer: SELECT position FROM table_23619005_3 WHERE player = "Michael Shaver" |
How many different players got drafted for the Ottawa Renegades? | CREATE TABLE table_23619005_3 (player VARCHAR, cfl_team VARCHAR) | SELECT COUNT(player) FROM table_23619005_3 WHERE cfl_team = "Ottawa Renegades" | ### Context: CREATE TABLE table_23619005_3 (player VARCHAR, cfl_team VARCHAR) ### Question: How many different players got drafted for the Ottawa Renegades? ### Answer: SELECT COUNT(player) FROM table_23619005_3 WHERE cfl_team = "Ottawa Renegades" |
What's Doug Borden's position? | CREATE TABLE table_23619005_3 (position VARCHAR, player VARCHAR) | SELECT position FROM table_23619005_3 WHERE player = "Doug Borden" | ### Context: CREATE TABLE table_23619005_3 (position VARCHAR, player VARCHAR) ### Question: What's Doug Borden's position? ### Answer: SELECT position FROM table_23619005_3 WHERE player = "Doug Borden" |
What's the percentage of all immigrants in 2007 in the country with 1.7% of all immigrants in 2008? | CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2008 VARCHAR) | SELECT _percentage_of_all_immigrants_2007 FROM table_23619212_1 WHERE _percentage_of_all_immigrants_2008 = "1.7%" | ### Context: CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2008 VARCHAR) ### Question: What's the percentage of all immigrants in 2007 in the country with 1.7% of all immigrants in 2008? ### Answer: SELECT _percentage_of_all_immigrants_2007 FROM table_23619212_... |
How many different percentages of immigrants in 2006 can there be for Morocco? | CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2006 VARCHAR, country VARCHAR) | SELECT COUNT(_percentage_of_all_immigrants_2006) FROM table_23619212_1 WHERE country = "Morocco" | ### Context: CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2006 VARCHAR, country VARCHAR) ### Question: How many different percentages of immigrants in 2006 can there be for Morocco? ### Answer: SELECT COUNT(_percentage_of_all_immigrants_2006) FROM table_23619212_1 WHERE country = "Morocco" |
What's the percentage of immigrants in 2004 in the country with 2.1% of the immigrants in 2006? | CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2004 VARCHAR, _percentage_of_all_immigrants_2006 VARCHAR) | SELECT _percentage_of_all_immigrants_2004 FROM table_23619212_1 WHERE _percentage_of_all_immigrants_2006 = "2.1%" | ### Context: CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2004 VARCHAR, _percentage_of_all_immigrants_2006 VARCHAR) ### Question: What's the percentage of immigrants in 2004 in the country with 2.1% of the immigrants in 2006? ### Answer: SELECT _percentage_of_all_immigrants_2004 FROM table_23619212_1 WH... |
What's the percentage of the immigrants in 2007 in the country with 14.1% of the immigrants in 2006? | CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2006 VARCHAR) | SELECT _percentage_of_all_immigrants_2007 FROM table_23619212_1 WHERE _percentage_of_all_immigrants_2006 = "14.1%" | ### Context: CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2006 VARCHAR) ### Question: What's the percentage of the immigrants in 2007 in the country with 14.1% of the immigrants in 2006? ### Answer: SELECT _percentage_of_all_immigrants_2007 FROM table_23619212... |
How many different percentages of immigrants are there for the year of 2007 in the countries with 1.2% of the immigrants in the year of 2005? | CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2005 VARCHAR) | SELECT COUNT(_percentage_of_all_immigrants_2007) FROM table_23619212_1 WHERE _percentage_of_all_immigrants_2005 = "1.2%" | ### Context: CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2005 VARCHAR) ### Question: How many different percentages of immigrants are there for the year of 2007 in the countries with 1.2% of the immigrants in the year of 2005? ### Answer: SELECT COUNT(_percen... |
What was the outcome in the championship where the final score was 6–7(1), 2–6, 6–4, 7–5, 6–7(2)? | CREATE TABLE table_2362486_1 (outcome VARCHAR, score_in_the_final VARCHAR) | SELECT outcome FROM table_2362486_1 WHERE score_in_the_final = "6–7(1), 2–6, 6–4, 7–5, 6–7(2)" | ### Context: CREATE TABLE table_2362486_1 (outcome VARCHAR, score_in_the_final VARCHAR) ### Question: What was the outcome in the championship where the final score was 6–7(1), 2–6, 6–4, 7–5, 6–7(2)? ### Answer: SELECT outcome FROM table_2362486_1 WHERE score_in_the_final = "6–7(1), 2–6, 6–4, 7–5, 6–7(2)" |
Who were the opponents in the final where the score was 6–4, 2–6, 6–4, 7–6(3)? | CREATE TABLE table_2362486_1 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR) | SELECT opponents_in_the_final FROM table_2362486_1 WHERE score_in_the_final = "6–4, 2–6, 6–4, 7–6(3)" | ### Context: CREATE TABLE table_2362486_1 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR) ### Question: Who were the opponents in the final where the score was 6–4, 2–6, 6–4, 7–6(3)? ### Answer: SELECT opponents_in_the_final FROM table_2362486_1 WHERE score_in_the_final = "6–4, 2–6, 6–4, 7–6(3)" |
Which championship had a final score of 6–4, 2–6, 6–4, 7–6(3)? | CREATE TABLE table_2362486_1 (championship VARCHAR, score_in_the_final VARCHAR) | SELECT championship FROM table_2362486_1 WHERE score_in_the_final = "6–4, 2–6, 6–4, 7–6(3)" | ### Context: CREATE TABLE table_2362486_1 (championship VARCHAR, score_in_the_final VARCHAR) ### Question: Which championship had a final score of 6–4, 2–6, 6–4, 7–6(3)? ### Answer: SELECT championship FROM table_2362486_1 WHERE score_in_the_final = "6–4, 2–6, 6–4, 7–6(3)" |
What was the score in the final in 1988? | CREATE TABLE table_2362606_1 (score_in_final VARCHAR, year VARCHAR) | SELECT score_in_final FROM table_2362606_1 WHERE year = 1988 | ### Context: CREATE TABLE table_2362606_1 (score_in_final VARCHAR, year VARCHAR) ### Question: What was the score in the final in 1988? ### Answer: SELECT score_in_final FROM table_2362606_1 WHERE year = 1988 |
Name the london great britain for championship record | CREATE TABLE table_23619492_3 (london_ VARCHAR, _great_britain VARCHAR, world_record VARCHAR) | SELECT london_, _great_britain FROM table_23619492_3 WHERE world_record = "Championship record" | ### Context: CREATE TABLE table_23619492_3 (london_ VARCHAR, _great_britain VARCHAR, world_record VARCHAR) ### Question: Name the london great britain for championship record ### Answer: SELECT london_, _great_britain FROM table_23619492_3 WHERE world_record = "Championship record" |
Name the total number of african record | CREATE TABLE table_23619492_3 (paula_radcliffe___gbr__ VARCHAR, world_record VARCHAR) | SELECT COUNT(paula_radcliffe___gbr__) FROM table_23619492_3 WHERE world_record = "African record" | ### Context: CREATE TABLE table_23619492_3 (paula_radcliffe___gbr__ VARCHAR, world_record VARCHAR) ### Question: Name the total number of african record ### Answer: SELECT COUNT(paula_radcliffe___gbr__) FROM table_23619492_3 WHERE world_record = "African record" |
Who are thebmix artists when tears for fears is artist 1 and eric prydz is artist 2? | CREATE TABLE table_23649244_1 (mix_artist VARCHAR, artist_1 VARCHAR, artist_2 VARCHAR) | SELECT mix_artist FROM table_23649244_1 WHERE artist_1 = "Tears for Fears" AND artist_2 = "Eric Prydz" | ### Context: CREATE TABLE table_23649244_1 (mix_artist VARCHAR, artist_1 VARCHAR, artist_2 VARCHAR) ### Question: Who are thebmix artists when tears for fears is artist 1 and eric prydz is artist 2? ### Answer: SELECT mix_artist FROM table_23649244_1 WHERE artist_1 = "Tears for Fears" AND artist_2 = "Eric Prydz" |
Which level has marvin gaye as artist 1 and david bowie as artist 2? | CREATE TABLE table_23649244_1 (level VARCHAR, artist_1 VARCHAR, artist_2 VARCHAR) | SELECT level FROM table_23649244_1 WHERE artist_1 = "Marvin Gaye" AND artist_2 = "David Bowie" | ### Context: CREATE TABLE table_23649244_1 (level VARCHAR, artist_1 VARCHAR, artist_2 VARCHAR) ### Question: Which level has marvin gaye as artist 1 and david bowie as artist 2? ### Answer: SELECT level FROM table_23649244_1 WHERE artist_1 = "Marvin Gaye" AND artist_2 = "David Bowie" |
Which level has grandmaster flash as artist 1? | CREATE TABLE table_23649244_1 (level VARCHAR, artist_1 VARCHAR) | SELECT level FROM table_23649244_1 WHERE artist_1 = "Grandmaster Flash" | ### Context: CREATE TABLE table_23649244_1 (level VARCHAR, artist_1 VARCHAR) ### Question: Which level has grandmaster flash as artist 1? ### Answer: SELECT level FROM table_23649244_1 WHERE artist_1 = "Grandmaster Flash" |
Which level has wale as artist 1? | CREATE TABLE table_23649244_1 (level VARCHAR, artist_1 VARCHAR) | SELECT level FROM table_23649244_1 WHERE artist_1 = "Wale" | ### Context: CREATE TABLE table_23649244_1 (level VARCHAR, artist_1 VARCHAR) ### Question: Which level has wale as artist 1? ### Answer: SELECT level FROM table_23649244_1 WHERE artist_1 = "Wale" |
Which mix artists have shlomo as artist 1? | CREATE TABLE table_23649244_1 (mix_artist VARCHAR, artist_1 VARCHAR) | SELECT mix_artist FROM table_23649244_1 WHERE artist_1 = "Shlomo" | ### Context: CREATE TABLE table_23649244_1 (mix_artist VARCHAR, artist_1 VARCHAR) ### Question: Which mix artists have shlomo as artist 1? ### Answer: SELECT mix_artist FROM table_23649244_1 WHERE artist_1 = "Shlomo" |
How many season had Melgar as a champion? | CREATE TABLE table_23647668_2 (season VARCHAR, champion VARCHAR) | SELECT COUNT(season) FROM table_23647668_2 WHERE champion = "Melgar" | ### Context: CREATE TABLE table_23647668_2 (season VARCHAR, champion VARCHAR) ### Question: How many season had Melgar as a champion? ### Answer: SELECT COUNT(season) FROM table_23647668_2 WHERE champion = "Melgar" |
Who was in third place in the 1980 season? | CREATE TABLE table_23647668_2 (third_place VARCHAR, season VARCHAR) | SELECT third_place FROM table_23647668_2 WHERE season = 1980 | ### Context: CREATE TABLE table_23647668_2 (third_place VARCHAR, season VARCHAR) ### Question: Who was in third place in the 1980 season? ### Answer: SELECT third_place FROM table_23647668_2 WHERE season = 1980 |
Name the open cup for usl pdl for did not qualify | CREATE TABLE table_2365150_1 (open_cup VARCHAR, league VARCHAR, playoffs VARCHAR) | SELECT open_cup FROM table_2365150_1 WHERE league = "USL PDL" AND playoffs = "Did not qualify" | ### Context: CREATE TABLE table_2365150_1 (open_cup VARCHAR, league VARCHAR, playoffs VARCHAR) ### Question: Name the open cup for usl pdl for did not qualify ### Answer: SELECT open_cup FROM table_2365150_1 WHERE league = "USL PDL" AND playoffs = "Did not qualify" |
Name the total number of open cup for 1996 | CREATE TABLE table_2365150_1 (open_cup VARCHAR, year VARCHAR) | SELECT COUNT(open_cup) FROM table_2365150_1 WHERE year = 1996 | ### Context: CREATE TABLE table_2365150_1 (open_cup VARCHAR, year VARCHAR) ### Question: Name the total number of open cup for 1996 ### Answer: SELECT COUNT(open_cup) FROM table_2365150_1 WHERE year = 1996 |
Name the open cup for division finals | CREATE TABLE table_2365150_1 (open_cup VARCHAR, playoffs VARCHAR) | SELECT open_cup FROM table_2365150_1 WHERE playoffs = "division Finals" | ### Context: CREATE TABLE table_2365150_1 (open_cup VARCHAR, playoffs VARCHAR) ### Question: Name the open cup for division finals ### Answer: SELECT open_cup FROM table_2365150_1 WHERE playoffs = "division Finals" |
Name the position for 2.16 | CREATE TABLE table_23670057_1 (position VARCHAR, height__m_ VARCHAR) | SELECT position FROM table_23670057_1 WHERE height__m_ = "2.16" | ### Context: CREATE TABLE table_23670057_1 (position VARCHAR, height__m_ VARCHAR) ### Question: Name the position for 2.16 ### Answer: SELECT position FROM table_23670057_1 WHERE height__m_ = "2.16" |
Name the number for 1.96 height | CREATE TABLE table_23670057_1 (no VARCHAR, height__m_ VARCHAR) | SELECT no FROM table_23670057_1 WHERE height__m_ = "1.96" | ### Context: CREATE TABLE table_23670057_1 (no VARCHAR, height__m_ VARCHAR) ### Question: Name the number for 1.96 height ### Answer: SELECT no FROM table_23670057_1 WHERE height__m_ = "1.96" |
Name the height for number 7 | CREATE TABLE table_23670057_1 (height__m_ VARCHAR, no VARCHAR) | SELECT height__m_ FROM table_23670057_1 WHERE no = 7 | ### Context: CREATE TABLE table_23670057_1 (height__m_ VARCHAR, no VARCHAR) ### Question: Name the height for number 7 ### Answer: SELECT height__m_ FROM table_23670057_1 WHERE no = 7 |
name the player for number 5 | CREATE TABLE table_23670057_1 (player VARCHAR, no VARCHAR) | SELECT player FROM table_23670057_1 WHERE no = 5 | ### Context: CREATE TABLE table_23670057_1 (player VARCHAR, no VARCHAR) ### Question: name the player for number 5 ### Answer: SELECT player FROM table_23670057_1 WHERE no = 5 |
For all players playing at the center, list the height in feet. | CREATE TABLE table_23670057_4 (height__f_ VARCHAR, position VARCHAR) | SELECT height__f_ FROM table_23670057_4 WHERE position = "Center" | ### Context: CREATE TABLE table_23670057_4 (height__f_ VARCHAR, position VARCHAR) ### Question: For all players playing at the center, list the height in feet. ### Answer: SELECT height__f_ FROM table_23670057_4 WHERE position = "Center" |
Display the serial numbers for the players who play at the center. | CREATE TABLE table_23670057_4 (no VARCHAR, position VARCHAR) | SELECT no FROM table_23670057_4 WHERE position = "Center" | ### Context: CREATE TABLE table_23670057_4 (no VARCHAR, position VARCHAR) ### Question: Display the serial numbers for the players who play at the center. ### Answer: SELECT no FROM table_23670057_4 WHERE position = "Center" |
What is the date of birth for basket baller called ido kozikaro | CREATE TABLE table_23670057_4 (year_born INTEGER, player VARCHAR) | SELECT MAX(year_born) FROM table_23670057_4 WHERE player = "Ido Kozikaro" | ### Context: CREATE TABLE table_23670057_4 (year_born INTEGER, player VARCHAR) ### Question: What is the date of birth for basket baller called ido kozikaro ### Answer: SELECT MAX(year_born) FROM table_23670057_4 WHERE player = "Ido Kozikaro" |
How tall is the basket ball player lior eliyahu in meters? | CREATE TABLE table_23670057_4 (height__m_ VARCHAR, player VARCHAR) | SELECT height__m_ FROM table_23670057_4 WHERE player = "Lior Eliyahu" | ### Context: CREATE TABLE table_23670057_4 (height__m_ VARCHAR, player VARCHAR) ### Question: How tall is the basket ball player lior eliyahu in meters? ### Answer: SELECT height__m_ FROM table_23670057_4 WHERE player = "Lior Eliyahu" |
What was the average score for the couple that had 4 dances? | CREATE TABLE table_23662356_3 (average VARCHAR, number_of_dances VARCHAR) | SELECT average FROM table_23662356_3 WHERE number_of_dances = 4 | ### Context: CREATE TABLE table_23662356_3 (average VARCHAR, number_of_dances VARCHAR) ### Question: What was the average score for the couple that had 4 dances? ### Answer: SELECT average FROM table_23662356_3 WHERE number_of_dances = 4 |
How many averages were listed for the couple who had 12 dances? | CREATE TABLE table_23662356_3 (average VARCHAR, number_of_dances VARCHAR) | SELECT COUNT(average) FROM table_23662356_3 WHERE number_of_dances = 12 | ### Context: CREATE TABLE table_23662356_3 (average VARCHAR, number_of_dances VARCHAR) ### Question: How many averages were listed for the couple who had 12 dances? ### Answer: SELECT COUNT(average) FROM table_23662356_3 WHERE number_of_dances = 12 |
How many total points were earned from the couple that averaged 29.0 points? | CREATE TABLE table_23662356_3 (total_points_earned INTEGER, average VARCHAR) | SELECT MAX(total_points_earned) FROM table_23662356_3 WHERE average = "29.0" | ### Context: CREATE TABLE table_23662356_3 (total_points_earned INTEGER, average VARCHAR) ### Question: How many total points were earned from the couple that averaged 29.0 points? ### Answer: SELECT MAX(total_points_earned) FROM table_23662356_3 WHERE average = "29.0" |
What album was the song It's going so badly on? | CREATE TABLE table_23667534_1 (album_s_ VARCHAR, song_s__title VARCHAR) | SELECT album_s_ FROM table_23667534_1 WHERE song_s__title = "It's Going So Badly" | ### Context: CREATE TABLE table_23667534_1 (album_s_ VARCHAR, song_s__title VARCHAR) ### Question: What album was the song It's going so badly on? ### Answer: SELECT album_s_ FROM table_23667534_1 WHERE song_s__title = "It's Going So Badly" |
What album was the song My Chariot on? | CREATE TABLE table_23667534_1 (album_s_ VARCHAR, song_s__title VARCHAR) | SELECT album_s_ FROM table_23667534_1 WHERE song_s__title = "My Chariot" | ### Context: CREATE TABLE table_23667534_1 (album_s_ VARCHAR, song_s__title VARCHAR) ### Question: What album was the song My Chariot on? ### Answer: SELECT album_s_ FROM table_23667534_1 WHERE song_s__title = "My Chariot" |
Who sand He's Bigfoot? | CREATE TABLE table_23667534_1 (singer_s_ VARCHAR, song_s__title VARCHAR) | SELECT singer_s_ FROM table_23667534_1 WHERE song_s__title = "He's Bigfoot" | ### Context: CREATE TABLE table_23667534_1 (singer_s_ VARCHAR, song_s__title VARCHAR) ### Question: Who sand He's Bigfoot? ### Answer: SELECT singer_s_ FROM table_23667534_1 WHERE song_s__title = "He's Bigfoot" |
What album was the song Shimmy Jimmy from the episode titled Toy to the world on? | CREATE TABLE table_23667534_1 (album_s_ VARCHAR, episode_title VARCHAR, song_s__title VARCHAR) | SELECT album_s_ FROM table_23667534_1 WHERE episode_title = "Toy to the World" AND song_s__title = "Shimmy Jimmy" | ### Context: CREATE TABLE table_23667534_1 (album_s_ VARCHAR, episode_title VARCHAR, song_s__title VARCHAR) ### Question: What album was the song Shimmy Jimmy from the episode titled Toy to the world on? ### Answer: SELECT album_s_ FROM table_23667534_1 WHERE episode_title = "Toy to the World" AND song_s__title = "Shim... |
which players have a height of 2.07m? | CREATE TABLE table_23670057_5 (player VARCHAR, height__m_ VARCHAR) | SELECT player FROM table_23670057_5 WHERE height__m_ = "2.07" | ### Context: CREATE TABLE table_23670057_5 (player VARCHAR, height__m_ VARCHAR) ### Question: which players have a height of 2.07m? ### Answer: SELECT player FROM table_23670057_5 WHERE height__m_ = "2.07" |
Which clubs have players with height 2.14m? | CREATE TABLE table_23670057_5 (current_club VARCHAR, height__m_ VARCHAR) | SELECT current_club FROM table_23670057_5 WHERE height__m_ = "2.14" | ### Context: CREATE TABLE table_23670057_5 (current_club VARCHAR, height__m_ VARCHAR) ### Question: Which clubs have players with height 2.14m? ### Answer: SELECT current_club FROM table_23670057_5 WHERE height__m_ = "2.14" |
Which players were born in 1983 and play as forward position? | CREATE TABLE table_23670057_5 (player VARCHAR, year_born VARCHAR, position VARCHAR) | SELECT player FROM table_23670057_5 WHERE year_born = 1983 AND position = "Forward" | ### Context: CREATE TABLE table_23670057_5 (player VARCHAR, year_born VARCHAR, position VARCHAR) ### Question: Which players were born in 1983 and play as forward position? ### Answer: SELECT player FROM table_23670057_5 WHERE year_born = 1983 AND position = "Forward" |
What is every current club for the player Artūrs Štālbergs? | CREATE TABLE table_23670057_7 (current_club VARCHAR, player VARCHAR) | SELECT current_club FROM table_23670057_7 WHERE player = "Artūrs Štālbergs" | ### Context: CREATE TABLE table_23670057_7 (current_club VARCHAR, player VARCHAR) ### Question: What is every current club for the player Artūrs Štālbergs? ### Answer: SELECT current_club FROM table_23670057_7 WHERE player = "Artūrs Štālbergs" |
How many players have a height of 2.07? | CREATE TABLE table_23670057_7 (player VARCHAR, height__m_ VARCHAR) | SELECT COUNT(player) FROM table_23670057_7 WHERE height__m_ = "2.07" | ### Context: CREATE TABLE table_23670057_7 (player VARCHAR, height__m_ VARCHAR) ### Question: How many players have a height of 2.07? ### Answer: SELECT COUNT(player) FROM table_23670057_7 WHERE height__m_ = "2.07" |
What is the latest year born when the current club is Barons LMT? | CREATE TABLE table_23670057_7 (year_born INTEGER, current_club VARCHAR) | SELECT MAX(year_born) FROM table_23670057_7 WHERE current_club = "Barons LMT" | ### Context: CREATE TABLE table_23670057_7 (year_born INTEGER, current_club VARCHAR) ### Question: What is the latest year born when the current club is Barons LMT? ### Answer: SELECT MAX(year_born) FROM table_23670057_7 WHERE current_club = "Barons LMT" |
How many current clubs have the player Aigars Vitols? | CREATE TABLE table_23670057_7 (current_club VARCHAR, player VARCHAR) | SELECT COUNT(current_club) FROM table_23670057_7 WHERE player = "Aigars Vitols" | ### Context: CREATE TABLE table_23670057_7 (current_club VARCHAR, player VARCHAR) ### Question: How many current clubs have the player Aigars Vitols? ### Answer: SELECT COUNT(current_club) FROM table_23670057_7 WHERE player = "Aigars Vitols" |
What is every year born for height of 1.88? | CREATE TABLE table_23670057_7 (year_born VARCHAR, height__m_ VARCHAR) | SELECT year_born FROM table_23670057_7 WHERE height__m_ = "1.88" | ### Context: CREATE TABLE table_23670057_7 (year_born VARCHAR, height__m_ VARCHAR) ### Question: What is every year born for height of 1.88? ### Answer: SELECT year_born FROM table_23670057_7 WHERE height__m_ = "1.88" |
What is every number when the player is Aigars Vitols? | CREATE TABLE table_23670057_7 (no VARCHAR, player VARCHAR) | SELECT no FROM table_23670057_7 WHERE player = "Aigars Vitols" | ### Context: CREATE TABLE table_23670057_7 (no VARCHAR, player VARCHAR) ### Question: What is every number when the player is Aigars Vitols? ### Answer: SELECT no FROM table_23670057_7 WHERE player = "Aigars Vitols" |
Name the most high schools for 31851 | CREATE TABLE table_2367847_2 (high_schools INTEGER, district_wide VARCHAR) | SELECT MAX(high_schools) FROM table_2367847_2 WHERE district_wide = 31851 | ### Context: CREATE TABLE table_2367847_2 (high_schools INTEGER, district_wide VARCHAR) ### Question: Name the most high schools for 31851 ### Answer: SELECT MAX(high_schools) FROM table_2367847_2 WHERE district_wide = 31851 |
Name the most district wide for 1639 other programs | CREATE TABLE table_2367847_2 (district_wide INTEGER, other_programs_ VARCHAR, _adjustments VARCHAR) | SELECT MAX(district_wide) FROM table_2367847_2 WHERE other_programs_ & _adjustments = 1639 | ### Context: CREATE TABLE table_2367847_2 (district_wide INTEGER, other_programs_ VARCHAR, _adjustments VARCHAR) ### Question: Name the most district wide for 1639 other programs ### Answer: SELECT MAX(district_wide) FROM table_2367847_2 WHERE other_programs_ & _adjustments = 1639 |
Name the total number of elementary schools for 31851 | CREATE TABLE table_2367847_2 (elementary_schools VARCHAR, district_wide VARCHAR) | SELECT COUNT(elementary_schools) FROM table_2367847_2 WHERE district_wide = 31851 | ### Context: CREATE TABLE table_2367847_2 (elementary_schools VARCHAR, district_wide VARCHAR) ### Question: Name the total number of elementary schools for 31851 ### Answer: SELECT COUNT(elementary_schools) FROM table_2367847_2 WHERE district_wide = 31851 |
Name the most middle schools for 2005-2006 | CREATE TABLE table_2367847_2 (middle_schools INTEGER, year VARCHAR) | SELECT MAX(middle_schools) FROM table_2367847_2 WHERE year = "2005-2006" | ### Context: CREATE TABLE table_2367847_2 (middle_schools INTEGER, year VARCHAR) ### Question: Name the most middle schools for 2005-2006 ### Answer: SELECT MAX(middle_schools) FROM table_2367847_2 WHERE year = "2005-2006" |
If the polling average in July 2009 was 7.2%, what was it in May 2009? | CREATE TABLE table_23680576_2 (may_2009 VARCHAR, jul_2009 VARCHAR) | SELECT may_2009 FROM table_23680576_2 WHERE jul_2009 = "7.2%" | ### Context: CREATE TABLE table_23680576_2 (may_2009 VARCHAR, jul_2009 VARCHAR) ### Question: If the polling average in July 2009 was 7.2%, what was it in May 2009? ### Answer: SELECT may_2009 FROM table_23680576_2 WHERE jul_2009 = "7.2%" |
What was the polling average in Aug 2009 when is was 5.0% in Sep 2009? | CREATE TABLE table_23680576_2 (aug_2008 VARCHAR, sep_2008 VARCHAR) | SELECT aug_2008 FROM table_23680576_2 WHERE sep_2008 = "5.0%" | ### Context: CREATE TABLE table_23680576_2 (aug_2008 VARCHAR, sep_2008 VARCHAR) ### Question: What was the polling average in Aug 2009 when is was 5.0% in Sep 2009? ### Answer: SELECT aug_2008 FROM table_23680576_2 WHERE sep_2008 = "5.0%" |
How many polling percentages were there in October 2008 when is was 30.8% in Aug 2008? | CREATE TABLE table_23680576_2 (oct_2008 VARCHAR, aug_2008 VARCHAR) | SELECT COUNT(oct_2008) FROM table_23680576_2 WHERE aug_2008 = "30.8%" | ### Context: CREATE TABLE table_23680576_2 (oct_2008 VARCHAR, aug_2008 VARCHAR) ### Question: How many polling percentages were there in October 2008 when is was 30.8% in Aug 2008? ### Answer: SELECT COUNT(oct_2008) FROM table_23680576_2 WHERE aug_2008 = "30.8%" |
Name the party/s when the polling percentage was 6.3% in Dec 2008. | CREATE TABLE table_23680576_2 (party VARCHAR, dec_2008 VARCHAR) | SELECT party FROM table_23680576_2 WHERE dec_2008 = "6.3%" | ### Context: CREATE TABLE table_23680576_2 (party VARCHAR, dec_2008 VARCHAR) ### Question: Name the party/s when the polling percentage was 6.3% in Dec 2008. ### Answer: SELECT party FROM table_23680576_2 WHERE dec_2008 = "6.3%" |
What was the polling percentage in Nov 2008 when it was 1.7% in Aug 2008? | CREATE TABLE table_23680576_2 (nov_2008 VARCHAR, aug_2008 VARCHAR) | SELECT nov_2008 FROM table_23680576_2 WHERE aug_2008 = "1.7%" | ### Context: CREATE TABLE table_23680576_2 (nov_2008 VARCHAR, aug_2008 VARCHAR) ### Question: What was the polling percentage in Nov 2008 when it was 1.7% in Aug 2008? ### Answer: SELECT nov_2008 FROM table_23680576_2 WHERE aug_2008 = "1.7%" |
What is the week 32 result when week 33 is 31.9%? | CREATE TABLE table_23680576_3 (week_32 VARCHAR, week_33 VARCHAR) | SELECT week_32 FROM table_23680576_3 WHERE week_33 = "31.9%" | ### Context: CREATE TABLE table_23680576_3 (week_32 VARCHAR, week_33 VARCHAR) ### Question: What is the week 32 result when week 33 is 31.9%? ### Answer: SELECT week_32 FROM table_23680576_3 WHERE week_33 = "31.9%" |
List all week 37 results when week 33 is 14.3%. | CREATE TABLE table_23680576_3 (week_37 VARCHAR, week_33 VARCHAR) | SELECT week_37 FROM table_23680576_3 WHERE week_33 = "14.3%" | ### Context: CREATE TABLE table_23680576_3 (week_37 VARCHAR, week_33 VARCHAR) ### Question: List all week 37 results when week 33 is 14.3%. ### Answer: SELECT week_37 FROM table_23680576_3 WHERE week_33 = "14.3%" |
List the full amount of week 36 results when week 32 is 13.2%. | CREATE TABLE table_23680576_3 (week_36 VARCHAR, week_32 VARCHAR) | SELECT COUNT(week_36) FROM table_23680576_3 WHERE week_32 = "13.2%" | ### Context: CREATE TABLE table_23680576_3 (week_36 VARCHAR, week_32 VARCHAR) ### Question: List the full amount of week 36 results when week 32 is 13.2%. ### Answer: SELECT COUNT(week_36) FROM table_23680576_3 WHERE week_32 = "13.2%" |
On what year was the local government area with a surface of 4563 square kilometers established? | CREATE TABLE table_23685890_2 (est VARCHAR, land_area__km²_ VARCHAR) | SELECT est FROM table_23685890_2 WHERE land_area__km²_ = "4563" | ### Context: CREATE TABLE table_23685890_2 (est VARCHAR, land_area__km²_ VARCHAR) ### Question: On what year was the local government area with a surface of 4563 square kilometers established? ### Answer: SELECT est FROM table_23685890_2 WHERE land_area__km²_ = "4563" |
Which major town is located within the Outback Areas Community Development Trust? | CREATE TABLE table_23685890_2 (major_town VARCHAR, local_government_area VARCHAR) | SELECT major_town FROM table_23685890_2 WHERE local_government_area = "Outback Areas Community Development Trust" | ### Context: CREATE TABLE table_23685890_2 (major_town VARCHAR, local_government_area VARCHAR) ### Question: Which major town is located within the Outback Areas Community Development Trust? ### Answer: SELECT major_town FROM table_23685890_2 WHERE local_government_area = "Outback Areas Community Development Trust" |
How many towns exist on the government area with a surface of 110 square kilometers? | CREATE TABLE table_23685890_2 (towns INTEGER, land_area__km²_ VARCHAR) | SELECT MIN(towns) FROM table_23685890_2 WHERE land_area__km²_ = "110" | ### Context: CREATE TABLE table_23685890_2 (towns INTEGER, land_area__km²_ VARCHAR) ### Question: How many towns exist on the government area with a surface of 110 square kilometers? ### Answer: SELECT MIN(towns) FROM table_23685890_2 WHERE land_area__km²_ = "110" |
What type of local government area is Yalata? | CREATE TABLE table_23685890_2 (type VARCHAR, local_government_area VARCHAR) | SELECT type FROM table_23685890_2 WHERE local_government_area = "Yalata" | ### Context: CREATE TABLE table_23685890_2 (type VARCHAR, local_government_area VARCHAR) ### Question: What type of local government area is Yalata? ### Answer: SELECT type FROM table_23685890_2 WHERE local_government_area = "Yalata" |
What was the 2006 population count of the local government area where Coober Pedy is located? | CREATE TABLE table_23685890_2 (pop_2006 VARCHAR, major_town VARCHAR) | SELECT pop_2006 FROM table_23685890_2 WHERE major_town = "Coober Pedy" | ### Context: CREATE TABLE table_23685890_2 (pop_2006 VARCHAR, major_town VARCHAR) ### Question: What was the 2006 population count of the local government area where Coober Pedy is located? ### Answer: SELECT pop_2006 FROM table_23685890_2 WHERE major_town = "Coober Pedy" |
During what week was the game attended by 20114 people? | CREATE TABLE table_23685152_2 (week INTEGER, attendance VARCHAR) | SELECT MAX(week) FROM table_23685152_2 WHERE attendance = 20114 | ### Context: CREATE TABLE table_23685152_2 (week INTEGER, attendance VARCHAR) ### Question: During what week was the game attended by 20114 people? ### Answer: SELECT MAX(week) FROM table_23685152_2 WHERE attendance = 20114 |
What was the record in game played on July 28? | CREATE TABLE table_23685152_2 (record VARCHAR, date VARCHAR) | SELECT record FROM table_23685152_2 WHERE date = "July 28" | ### Context: CREATE TABLE table_23685152_2 (record VARCHAR, date VARCHAR) ### Question: What was the record in game played on July 28? ### Answer: SELECT record FROM table_23685152_2 WHERE date = "July 28" |
What was the record in the game against Eskimos? | CREATE TABLE table_23685152_2 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_23685152_2 WHERE opponent = "Eskimos" | ### Context: CREATE TABLE table_23685152_2 (record VARCHAR, opponent VARCHAR) ### Question: What was the record in the game against Eskimos? ### Answer: SELECT record FROM table_23685152_2 WHERE opponent = "Eskimos" |
Whose WSOP earnings were $36,372? | CREATE TABLE table_23696862_6 (name VARCHAR, wsop_earnings VARCHAR) | SELECT name FROM table_23696862_6 WHERE wsop_earnings = "$36,372" | ### Context: CREATE TABLE table_23696862_6 (name VARCHAR, wsop_earnings VARCHAR) ### Question: Whose WSOP earnings were $36,372? ### Answer: SELECT name FROM table_23696862_6 WHERE wsop_earnings = "$36,372" |
The person who had 0 WSOP earnings had how man WSOP cashes? | CREATE TABLE table_23696862_6 (wsop_cashes VARCHAR, wsop_earnings VARCHAR) | SELECT wsop_cashes FROM table_23696862_6 WHERE wsop_earnings = "0" | ### Context: CREATE TABLE table_23696862_6 (wsop_cashes VARCHAR, wsop_earnings VARCHAR) ### Question: The person who had 0 WSOP earnings had how man WSOP cashes? ### Answer: SELECT wsop_cashes FROM table_23696862_6 WHERE wsop_earnings = "0" |
Who had 2 WSOP cashes and was 6th in final place? | CREATE TABLE table_23696862_6 (name VARCHAR, wsop_cashes VARCHAR, final_place VARCHAR) | SELECT name FROM table_23696862_6 WHERE wsop_cashes = 2 AND final_place = "6th" | ### Context: CREATE TABLE table_23696862_6 (name VARCHAR, wsop_cashes VARCHAR, final_place VARCHAR) ### Question: Who had 2 WSOP cashes and was 6th in final place? ### Answer: SELECT name FROM table_23696862_6 WHERE wsop_cashes = 2 AND final_place = "6th" |
What is the smallest amount of WSOP bracelets anyone had? | CREATE TABLE table_23696862_6 (wsop_bracelets INTEGER) | SELECT MIN(wsop_bracelets) FROM table_23696862_6 | ### Context: CREATE TABLE table_23696862_6 (wsop_bracelets INTEGER) ### Question: What is the smallest amount of WSOP bracelets anyone had? ### Answer: SELECT MIN(wsop_bracelets) FROM table_23696862_6 |
The person who had $126,796 WSOP earnings had how many WSOP cashes? | CREATE TABLE table_23696862_6 (wsop_cashes VARCHAR, wsop_earnings VARCHAR) | SELECT wsop_cashes FROM table_23696862_6 WHERE wsop_earnings = "$126,796" | ### Context: CREATE TABLE table_23696862_6 (wsop_cashes VARCHAR, wsop_earnings VARCHAR) ### Question: The person who had $126,796 WSOP earnings had how many WSOP cashes? ### Answer: SELECT wsop_cashes FROM table_23696862_6 WHERE wsop_earnings = "$126,796" |
What is the high 10 profile number when the high profile is 80? | CREATE TABLE table_237036_2 (high_10_profile INTEGER, high_profile VARCHAR) | SELECT MAX(high_10_profile) FROM table_237036_2 WHERE high_profile = 80 | ### Context: CREATE TABLE table_237036_2 (high_10_profile INTEGER, high_profile VARCHAR) ### Question: What is the high 10 profile number when the high profile is 80? ### Answer: SELECT MAX(high_10_profile) FROM table_237036_2 WHERE high_profile = 80 |
What is the baseline extended and main profiles when level is 1.3? | CREATE TABLE table_237036_2 (_extended_and_main_profiles VARCHAR, baseline INTEGER, level VARCHAR) | SELECT MIN(baseline), _extended_and_main_profiles FROM table_237036_2 WHERE level = "1.3" | ### Context: CREATE TABLE table_237036_2 (_extended_and_main_profiles VARCHAR, baseline INTEGER, level VARCHAR) ### Question: What is the baseline extended and main profiles when level is 1.3? ### Answer: SELECT MIN(baseline), _extended_and_main_profiles FROM table_237036_2 WHERE level = "1.3" |
What level has 11880 macroblocks and high 10 profile is 6000? | CREATE TABLE table_237036_2 (level VARCHAR, macroblocks_s VARCHAR, high_10_profile VARCHAR) | SELECT level FROM table_237036_2 WHERE macroblocks_s = 11880 AND high_10_profile = 6000 | ### Context: CREATE TABLE table_237036_2 (level VARCHAR, macroblocks_s VARCHAR, high_10_profile VARCHAR) ### Question: What level has 11880 macroblocks and high 10 profile is 6000? ### Answer: SELECT level FROM table_237036_2 WHERE macroblocks_s = 11880 AND high_10_profile = 6000 |
What are the luma samples at level 1.3? | CREATE TABLE table_237036_2 (luma_samples_s VARCHAR, level VARCHAR) | SELECT luma_samples_s FROM table_237036_2 WHERE level = "1.3" | ### Context: CREATE TABLE table_237036_2 (luma_samples_s VARCHAR, level VARCHAR) ### Question: What are the luma samples at level 1.3? ### Answer: SELECT luma_samples_s FROM table_237036_2 WHERE level = "1.3" |
What is the high 10 profile when high profile is 160? | CREATE TABLE table_237036_2 (high_10_profile VARCHAR, high_profile VARCHAR) | SELECT high_10_profile FROM table_237036_2 WHERE high_profile = 160 | ### Context: CREATE TABLE table_237036_2 (high_10_profile VARCHAR, high_profile VARCHAR) ### Question: What is the high 10 profile when high profile is 160? ### Answer: SELECT high_10_profile FROM table_237036_2 WHERE high_profile = 160 |
What is the original air date if the ratings is 1.92 million? | CREATE TABLE table_23705843_1 (original_air_date VARCHAR, ratings__millions_ VARCHAR) | SELECT original_air_date FROM table_23705843_1 WHERE ratings__millions_ = "1.92" | ### Context: CREATE TABLE table_23705843_1 (original_air_date VARCHAR, ratings__millions_ VARCHAR) ### Question: What is the original air date if the ratings is 1.92 million? ### Answer: SELECT original_air_date FROM table_23705843_1 WHERE ratings__millions_ = "1.92" |
What is the name of the writer when the ratings was 2.61 million? | CREATE TABLE table_23705843_1 (writer VARCHAR, ratings__millions_ VARCHAR) | SELECT writer FROM table_23705843_1 WHERE ratings__millions_ = "2.61" | ### Context: CREATE TABLE table_23705843_1 (writer VARCHAR, ratings__millions_ VARCHAR) ### Question: What is the name of the writer when the ratings was 2.61 million? ### Answer: SELECT writer FROM table_23705843_1 WHERE ratings__millions_ = "2.61" |
Who directed the episode written by Tony O'Grady (pseudonym of brian clemens)? | CREATE TABLE table_2370579_1 (directed_by VARCHAR, written_by VARCHAR) | SELECT directed_by FROM table_2370579_1 WHERE written_by = "Tony O'Grady (pseudonym of Brian Clemens)" | ### Context: CREATE TABLE table_2370579_1 (directed_by VARCHAR, written_by VARCHAR) ### Question: Who directed the episode written by Tony O'Grady (pseudonym of brian clemens)? ### Answer: SELECT directed_by FROM table_2370579_1 WHERE written_by = "Tony O'Grady (pseudonym of Brian Clemens)" |
What is the production number for episode 23? | CREATE TABLE table_2370579_1 (prod__number INTEGER, episode__number VARCHAR) | SELECT MIN(prod__number) FROM table_2370579_1 WHERE episode__number = 23 | ### Context: CREATE TABLE table_2370579_1 (prod__number INTEGER, episode__number VARCHAR) ### Question: What is the production number for episode 23? ### Answer: SELECT MIN(prod__number) FROM table_2370579_1 WHERE episode__number = 23 |
What is the colloquial translation of (s)he will sing? | CREATE TABLE table_23710609_2 (romanian__colloquial_ VARCHAR, english VARCHAR) | SELECT romanian__colloquial_ FROM table_23710609_2 WHERE english = "(s)he will sing" | ### Context: CREATE TABLE table_23710609_2 (romanian__colloquial_ VARCHAR, english VARCHAR) ### Question: What is the colloquial translation of (s)he will sing? ### Answer: SELECT romanian__colloquial_ FROM table_23710609_2 WHERE english = "(s)he will sing" |
What was the date of the game played in El Paso, Texas? | CREATE TABLE table_23718905_6 (date VARCHAR, city VARCHAR) | SELECT date FROM table_23718905_6 WHERE city = "El Paso, Texas" | ### Context: CREATE TABLE table_23718905_6 (date VARCHAR, city VARCHAR) ### Question: What was the date of the game played in El Paso, Texas? ### Answer: SELECT date FROM table_23718905_6 WHERE city = "El Paso, Texas" |
How many different matchup/results appear in San Diego, California? | CREATE TABLE table_23718905_6 (matchup_results VARCHAR, city VARCHAR) | SELECT COUNT(matchup_results) FROM table_23718905_6 WHERE city = "San Diego, California" | ### Context: CREATE TABLE table_23718905_6 (matchup_results VARCHAR, city VARCHAR) ### Question: How many different matchup/results appear in San Diego, California? ### Answer: SELECT COUNT(matchup_results) FROM table_23718905_6 WHERE city = "San Diego, California" |
How many different items appear in the television column when the results where Iowa State 14, Minnesota 13? | CREATE TABLE table_23718905_6 (television VARCHAR, matchup_results VARCHAR) | SELECT COUNT(television) FROM table_23718905_6 WHERE matchup_results = "Iowa State 14, Minnesota 13" | ### Context: CREATE TABLE table_23718905_6 (television VARCHAR, matchup_results VARCHAR) ### Question: How many different items appear in the television column when the results where Iowa State 14, Minnesota 13? ### Answer: SELECT COUNT(television) FROM table_23718905_6 WHERE matchup_results = "Iowa State 14, Minnesota... |
How many different items appear in he attendance column at Sun Devil Stadium? | CREATE TABLE table_23718905_6 (attendance VARCHAR, stadium VARCHAR) | SELECT COUNT(attendance) FROM table_23718905_6 WHERE stadium = "Sun Devil stadium" | ### Context: CREATE TABLE table_23718905_6 (attendance VARCHAR, stadium VARCHAR) ### Question: How many different items appear in he attendance column at Sun Devil Stadium? ### Answer: SELECT COUNT(attendance) FROM table_23718905_6 WHERE stadium = "Sun Devil stadium" |
In what bowl game was the result Oklahoma 31, Stanford 27? | CREATE TABLE table_23718905_6 (bowl_game VARCHAR, matchup_results VARCHAR) | SELECT bowl_game FROM table_23718905_6 WHERE matchup_results = "Oklahoma 31, Stanford 27" | ### Context: CREATE TABLE table_23718905_6 (bowl_game VARCHAR, matchup_results VARCHAR) ### Question: In what bowl game was the result Oklahoma 31, Stanford 27? ### Answer: SELECT bowl_game FROM table_23718905_6 WHERE matchup_results = "Oklahoma 31, Stanford 27" |
What was the television that was dated December 28, 2009? | CREATE TABLE table_23718905_6 (television VARCHAR, date VARCHAR) | SELECT television FROM table_23718905_6 WHERE date = "December 28, 2009" | ### Context: CREATE TABLE table_23718905_6 (television VARCHAR, date VARCHAR) ### Question: What was the television that was dated December 28, 2009? ### Answer: SELECT television FROM table_23718905_6 WHERE date = "December 28, 2009" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.