question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Name the # for youtube | CREATE TABLE table_15781170_2 (_number VARCHAR, poll_winner VARCHAR) | SELECT _number FROM table_15781170_2 WHERE poll_winner = "YouTube" | ### Context: CREATE TABLE table_15781170_2 (_number VARCHAR, poll_winner VARCHAR) ### Question: Name the # for youtube ### Answer: SELECT _number FROM table_15781170_2 WHERE poll_winner = "YouTube" |
What are the original air dates when scientology isthe poll winner? | CREATE TABLE table_15781170_3 (original_air_date VARCHAR, poll_winner VARCHAR) | SELECT original_air_date FROM table_15781170_3 WHERE poll_winner = "Scientology" | ### Context: CREATE TABLE table_15781170_3 (original_air_date VARCHAR, poll_winner VARCHAR) ### Question: What are the original air dates when scientology isthe poll winner? ### Answer: SELECT original_air_date FROM table_15781170_3 WHERE poll_winner = "Scientology" |
When bloggers was the poll winner, who was the root of all evil? | CREATE TABLE table_15781170_3 (root_of_all_evil VARCHAR, poll_winner VARCHAR) | SELECT root_of_all_evil FROM table_15781170_3 WHERE poll_winner = "Bloggers" | ### Context: CREATE TABLE table_15781170_3 (root_of_all_evil VARCHAR, poll_winner VARCHAR) ### Question: When bloggers was the poll winner, who was the root of all evil? ### Answer: SELECT root_of_all_evil FROM table_15781170_3 WHERE poll_winner = "Bloggers" |
How many times did drinking games win the poll? | CREATE TABLE table_15781170_3 (_number VARCHAR, poll_winner VARCHAR) | SELECT COUNT(_number) FROM table_15781170_3 WHERE poll_winner = "Drinking Games" | ### Context: CREATE TABLE table_15781170_3 (_number VARCHAR, poll_winner VARCHAR) ### Question: How many times did drinking games win the poll? ### Answer: SELECT COUNT(_number) FROM table_15781170_3 WHERE poll_winner = "Drinking Games" |
What date was an episode with a run time of 24:30 broadcasted? | CREATE TABLE table_1579922_1 (broadcast_date VARCHAR, run_time VARCHAR) | SELECT broadcast_date FROM table_1579922_1 WHERE run_time = "24:30" | ### Context: CREATE TABLE table_1579922_1 (broadcast_date VARCHAR, run_time VARCHAR) ### Question: What date was an episode with a run time of 24:30 broadcasted? ### Answer: SELECT broadcast_date FROM table_1579922_1 WHERE run_time = "24:30" |
What episode had a run time of 24:25? | CREATE TABLE table_1579922_1 (episode VARCHAR, run_time VARCHAR) | SELECT episode FROM table_1579922_1 WHERE run_time = "24:25" | ### Context: CREATE TABLE table_1579922_1 (episode VARCHAR, run_time VARCHAR) ### Question: What episode had a run time of 24:25? ### Answer: SELECT episode FROM table_1579922_1 WHERE run_time = "24:25" |
Who was the original artist for week number Top 16 (8 women)? | CREATE TABLE table_15796072_1 (original_artist VARCHAR, week__number VARCHAR) | SELECT original_artist FROM table_15796072_1 WHERE week__number = "Top 16 (8 Women)" | ### Context: CREATE TABLE table_15796072_1 (original_artist VARCHAR, week__number VARCHAR) ### Question: Who was the original artist for week number Top 16 (8 women)? ### Answer: SELECT original_artist FROM table_15796072_1 WHERE week__number = "Top 16 (8 Women)" |
What was the order number where the original artist is The Doors? | CREATE TABLE table_15796072_1 (order__number VARCHAR, original_artist VARCHAR) | SELECT order__number FROM table_15796072_1 WHERE original_artist = "The Doors" | ### Context: CREATE TABLE table_15796072_1 (order__number VARCHAR, original_artist VARCHAR) ### Question: What was the order number where the original artist is The Doors? ### Answer: SELECT order__number FROM table_15796072_1 WHERE original_artist = "The Doors" |
What was the theme when the original artist was The Beatles? | CREATE TABLE table_15796072_1 (theme VARCHAR, original_artist VARCHAR) | SELECT theme FROM table_15796072_1 WHERE original_artist = "The Beatles" | ### Context: CREATE TABLE table_15796072_1 (theme VARCHAR, original_artist VARCHAR) ### Question: What was the theme when the original artist was The Beatles? ### Answer: SELECT theme FROM table_15796072_1 WHERE original_artist = "The Beatles" |
Who was the original artist when the theme was 1980s? | CREATE TABLE table_15796072_1 (original_artist VARCHAR, theme VARCHAR) | SELECT original_artist FROM table_15796072_1 WHERE theme = "1980s" | ### Context: CREATE TABLE table_15796072_1 (original_artist VARCHAR, theme VARCHAR) ### Question: Who was the original artist when the theme was 1980s? ### Answer: SELECT original_artist FROM table_15796072_1 WHERE theme = "1980s" |
Who was the original artist when the order number is 9? | CREATE TABLE table_15796072_1 (original_artist VARCHAR, order__number VARCHAR) | SELECT original_artist FROM table_15796072_1 WHERE order__number = "9" | ### Context: CREATE TABLE table_15796072_1 (original_artist VARCHAR, order__number VARCHAR) ### Question: Who was the original artist when the order number is 9? ### Answer: SELECT original_artist FROM table_15796072_1 WHERE order__number = "9" |
Which episode was N/A in region 1 | CREATE TABLE table_15823956_1 (episodes VARCHAR, region_1 VARCHAR) | SELECT episodes FROM table_15823956_1 WHERE region_1 = "N/A" | ### Context: CREATE TABLE table_15823956_1 (episodes VARCHAR, region_1 VARCHAR) ### Question: Which episode was N/A in region 1 ### Answer: SELECT episodes FROM table_15823956_1 WHERE region_1 = "N/A" |
When was series premiere on the pilot episode | CREATE TABLE table_15823956_1 (series VARCHAR) | SELECT series AS premiere FROM table_15823956_1 WHERE series = "Pilot" | ### Context: CREATE TABLE table_15823956_1 (series VARCHAR) ### Question: When was series premiere on the pilot episode ### Answer: SELECT series AS premiere FROM table_15823956_1 WHERE series = "Pilot" |
What is the region 1 date for series 4 | CREATE TABLE table_15823956_1 (region_1 VARCHAR, series VARCHAR) | SELECT region_1 FROM table_15823956_1 WHERE series = "4" | ### Context: CREATE TABLE table_15823956_1 (region_1 VARCHAR, series VARCHAR) ### Question: What is the region 1 date for series 4 ### Answer: SELECT region_1 FROM table_15823956_1 WHERE series = "4" |
What season began on december 5, 1953? | CREATE TABLE table_15824796_3 (season__number INTEGER, original_air_date VARCHAR) | SELECT MAX(season__number) FROM table_15824796_3 WHERE original_air_date = "December 5, 1953" | ### Context: CREATE TABLE table_15824796_3 (season__number INTEGER, original_air_date VARCHAR) ### Question: What season began on december 5, 1953? ### Answer: SELECT MAX(season__number) FROM table_15824796_3 WHERE original_air_date = "December 5, 1953" |
What is the title of the first episode of the season that begin on february 27, 1954? | CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR) | SELECT title FROM table_15824796_3 WHERE original_air_date = "February 27, 1954" | ### Context: CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR) ### Question: What is the title of the first episode of the season that begin on february 27, 1954? ### Answer: SELECT title FROM table_15824796_3 WHERE original_air_date = "February 27, 1954" |
What is the title of the episode that aired on december 12, 1953? | CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR) | SELECT title FROM table_15824796_3 WHERE original_air_date = "December 12, 1953" | ### Context: CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR) ### Question: What is the title of the episode that aired on december 12, 1953? ### Answer: SELECT title FROM table_15824796_3 WHERE original_air_date = "December 12, 1953" |
How many episodes aired on february 13, 1954? | CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR) | SELECT COUNT(title) FROM table_15824796_3 WHERE original_air_date = "February 13, 1954" | ### Context: CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR) ### Question: How many episodes aired on february 13, 1954? ### Answer: SELECT COUNT(title) FROM table_15824796_3 WHERE original_air_date = "February 13, 1954" |
What are all the CFL teams where the pick number is 36? | CREATE TABLE table_15817998_5 (cfl_team VARCHAR, pick__number VARCHAR) | SELECT cfl_team FROM table_15817998_5 WHERE pick__number = 36 | ### Context: CREATE TABLE table_15817998_5 (cfl_team VARCHAR, pick__number VARCHAR) ### Question: What are all the CFL teams where the pick number is 36? ### Answer: SELECT cfl_team FROM table_15817998_5 WHERE pick__number = 36 |
What are the positions in the college of Alberta? | CREATE TABLE table_15817998_5 (position VARCHAR, college VARCHAR) | SELECT position FROM table_15817998_5 WHERE college = "Alberta" | ### Context: CREATE TABLE table_15817998_5 (position VARCHAR, college VARCHAR) ### Question: What are the positions in the college of Alberta? ### Answer: SELECT position FROM table_15817998_5 WHERE college = "Alberta" |
What is the total number of CFL teams in the college Wilfrid Laurier | CREATE TABLE table_15817998_5 (cfl_team VARCHAR, college VARCHAR) | SELECT COUNT(cfl_team) FROM table_15817998_5 WHERE college = "Wilfrid Laurier" | ### Context: CREATE TABLE table_15817998_5 (cfl_team VARCHAR, college VARCHAR) ### Question: What is the total number of CFL teams in the college Wilfrid Laurier ### Answer: SELECT COUNT(cfl_team) FROM table_15817998_5 WHERE college = "Wilfrid Laurier" |
What is the college that Jeffrey Simmer plays for? | CREATE TABLE table_15817998_5 (college VARCHAR, player VARCHAR) | SELECT college FROM table_15817998_5 WHERE player = "Jeffrey Simmer" | ### Context: CREATE TABLE table_15817998_5 (college VARCHAR, player VARCHAR) ### Question: What is the college that Jeffrey Simmer plays for? ### Answer: SELECT college FROM table_15817998_5 WHERE player = "Jeffrey Simmer" |
Name the least matches for year 2008 | CREATE TABLE table_15829930_5 (matches INTEGER, year VARCHAR) | SELECT MIN(matches) FROM table_15829930_5 WHERE year = 2008 | ### Context: CREATE TABLE table_15829930_5 (matches INTEGER, year VARCHAR) ### Question: Name the least matches for year 2008 ### Answer: SELECT MIN(matches) FROM table_15829930_5 WHERE year = 2008 |
Name the maximum wins for 68.75% | CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR) | SELECT MAX(wins) FROM table_15829930_5 WHERE success_rate = "68.75%" | ### Context: CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR) ### Question: Name the maximum wins for 68.75% ### Answer: SELECT MAX(wins) FROM table_15829930_5 WHERE success_rate = "68.75%" |
Name the summary for the success rate for 68.75% | CREATE TABLE table_15829930_5 (summary VARCHAR, success_rate VARCHAR) | SELECT summary FROM table_15829930_5 WHERE success_rate = "68.75%" | ### Context: CREATE TABLE table_15829930_5 (summary VARCHAR, success_rate VARCHAR) ### Question: Name the summary for the success rate for 68.75% ### Answer: SELECT summary FROM table_15829930_5 WHERE success_rate = "68.75%" |
Name the least tied | CREATE TABLE table_15829930_5 (tied INTEGER) | SELECT MIN(tied) FROM table_15829930_5 | ### Context: CREATE TABLE table_15829930_5 (tied INTEGER) ### Question: Name the least tied ### Answer: SELECT MIN(tied) FROM table_15829930_5 |
Name the least wins of 56.25% | CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR) | SELECT MIN(wins) FROM table_15829930_5 WHERE success_rate = "56.25%" | ### Context: CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR) ### Question: Name the least wins of 56.25% ### Answer: SELECT MIN(wins) FROM table_15829930_5 WHERE success_rate = "56.25%" |
How many locomotives have a name of City of Birmingham | CREATE TABLE table_15827397_1 (no VARCHAR, name VARCHAR) | SELECT COUNT(no) FROM table_15827397_1 WHERE name = "City of Birmingham" | ### Context: CREATE TABLE table_15827397_1 (no VARCHAR, name VARCHAR) ### Question: How many locomotives have a name of City of Birmingham ### Answer: SELECT COUNT(no) FROM table_15827397_1 WHERE name = "City of Birmingham" |
How many locomotives have a livery that is highland railway green | CREATE TABLE table_15827397_1 (name VARCHAR, livery VARCHAR) | SELECT COUNT(name) FROM table_15827397_1 WHERE livery = "Highland Railway green" | ### Context: CREATE TABLE table_15827397_1 (name VARCHAR, livery VARCHAR) ### Question: How many locomotives have a livery that is highland railway green ### Answer: SELECT COUNT(name) FROM table_15827397_1 WHERE livery = "Highland Railway green" |
Which locomotive type has a status in static display | CREATE TABLE table_15827397_1 (locomotive_type VARCHAR, status VARCHAR) | SELECT locomotive_type FROM table_15827397_1 WHERE status = "Static display" | ### Context: CREATE TABLE table_15827397_1 (locomotive_type VARCHAR, status VARCHAR) ### Question: Which locomotive type has a status in static display ### Answer: SELECT locomotive_type FROM table_15827397_1 WHERE status = "Static display" |
What is the maximum number of points against when the attendance was 47678? | CREATE TABLE table_15847691_2 (points_against INTEGER, attendance VARCHAR) | SELECT MAX(points_against) FROM table_15847691_2 WHERE attendance = 47678 | ### Context: CREATE TABLE table_15847691_2 (points_against INTEGER, attendance VARCHAR) ### Question: What is the maximum number of points against when the attendance was 47678? ### Answer: SELECT MAX(points_against) FROM table_15847691_2 WHERE attendance = 47678 |
What was the total number of first down on October 23? | CREATE TABLE table_15847691_2 (first_downs VARCHAR, date VARCHAR) | SELECT COUNT(first_downs) FROM table_15847691_2 WHERE date = "October 23" | ### Context: CREATE TABLE table_15847691_2 (first_downs VARCHAR, date VARCHAR) ### Question: What was the total number of first down on October 23? ### Answer: SELECT COUNT(first_downs) FROM table_15847691_2 WHERE date = "October 23" |
Name the most series number for giula sandler | CREATE TABLE table_15838081_3 (series__number INTEGER, writer_s_ VARCHAR) | SELECT MAX(series__number) FROM table_15838081_3 WHERE writer_s_ = "Giula Sandler" | ### Context: CREATE TABLE table_15838081_3 (series__number INTEGER, writer_s_ VARCHAR) ### Question: Name the most series number for giula sandler ### Answer: SELECT MAX(series__number) FROM table_15838081_3 WHERE writer_s_ = "Giula Sandler" |
Name the number of season number for jeff truman | CREATE TABLE table_15838081_3 (season__number VARCHAR, writer_s_ VARCHAR) | SELECT COUNT(season__number) FROM table_15838081_3 WHERE writer_s_ = "Jeff Truman" | ### Context: CREATE TABLE table_15838081_3 (season__number VARCHAR, writer_s_ VARCHAR) ### Question: Name the number of season number for jeff truman ### Answer: SELECT COUNT(season__number) FROM table_15838081_3 WHERE writer_s_ = "Jeff Truman" |
Name the minimum enrollment for montana tech of the university of montana | CREATE TABLE table_15851155_1 (enrollment INTEGER, school VARCHAR) | SELECT MIN(enrollment) FROM table_15851155_1 WHERE school = "Montana Tech of the University of Montana" | ### Context: CREATE TABLE table_15851155_1 (enrollment INTEGER, school VARCHAR) ### Question: Name the minimum enrollment for montana tech of the university of montana ### Answer: SELECT MIN(enrollment) FROM table_15851155_1 WHERE school = "Montana Tech of the University of Montana" |
Name the location when control is private and founded is 1870 | CREATE TABLE table_15851155_1 (location VARCHAR, control VARCHAR, founded VARCHAR) | SELECT location FROM table_15851155_1 WHERE control = "Private" AND founded = 1870 | ### Context: CREATE TABLE table_15851155_1 (location VARCHAR, control VARCHAR, founded VARCHAR) ### Question: Name the location when control is private and founded is 1870 ### Answer: SELECT location FROM table_15851155_1 WHERE control = "Private" AND founded = 1870 |
Who directed the TV broadcast s03e19? | CREATE TABLE table_15861776_1 (directed_by VARCHAR, tv_broadcast VARCHAR) | SELECT directed_by FROM table_15861776_1 WHERE tv_broadcast = "S03E19" | ### Context: CREATE TABLE table_15861776_1 (directed_by VARCHAR, tv_broadcast VARCHAR) ### Question: Who directed the TV broadcast s03e19? ### Answer: SELECT directed_by FROM table_15861776_1 WHERE tv_broadcast = "S03E19" |
What episode in the series is TV broadcast s03e20? | CREATE TABLE table_15861776_1 (no_in_series VARCHAR, tv_broadcast VARCHAR) | SELECT no_in_series FROM table_15861776_1 WHERE tv_broadcast = "S03E20" | ### Context: CREATE TABLE table_15861776_1 (no_in_series VARCHAR, tv_broadcast VARCHAR) ### Question: What episode in the series is TV broadcast s03e20? ### Answer: SELECT no_in_series FROM table_15861776_1 WHERE tv_broadcast = "S03E20" |
WHAT WAS THE SCORE FOR GAME 31? | CREATE TABLE table_15869204_6 (score VARCHAR, game VARCHAR) | SELECT score FROM table_15869204_6 WHERE game = 31 | ### Context: CREATE TABLE table_15869204_6 (score VARCHAR, game VARCHAR) ### Question: WHAT WAS THE SCORE FOR GAME 31? ### Answer: SELECT score FROM table_15869204_6 WHERE game = 31 |
WHO DID THE RAPTORS PLAY ON JANUARY 9? | CREATE TABLE table_15869204_6 (team VARCHAR, date VARCHAR) | SELECT team FROM table_15869204_6 WHERE date = "January 9" | ### Context: CREATE TABLE table_15869204_6 (team VARCHAR, date VARCHAR) ### Question: WHO DID THE RAPTORS PLAY ON JANUARY 9? ### Answer: SELECT team FROM table_15869204_6 WHERE date = "January 9" |
Name thenames for 2002-04-01 | CREATE TABLE table_1585609_2 (name VARCHAR, date_of_designation VARCHAR) | SELECT name FROM table_1585609_2 WHERE date_of_designation = "2002-04-01" | ### Context: CREATE TABLE table_1585609_2 (name VARCHAR, date_of_designation VARCHAR) ### Question: Name thenames for 2002-04-01 ### Answer: SELECT name FROM table_1585609_2 WHERE date_of_designation = "2002-04-01" |
Name all the date of designations for kurume | CREATE TABLE table_1585609_2 (date_of_designation VARCHAR, name VARCHAR) | SELECT date_of_designation FROM table_1585609_2 WHERE name = "Kurume" | ### Context: CREATE TABLE table_1585609_2 (date_of_designation VARCHAR, name VARCHAR) ### Question: Name all the date of designations for kurume ### Answer: SELECT date_of_designation FROM table_1585609_2 WHERE name = "Kurume" |
Name the total number of japanese for amagasaki | CREATE TABLE table_1585609_2 (japanese VARCHAR, name VARCHAR) | SELECT COUNT(japanese) FROM table_1585609_2 WHERE name = "Amagasaki" | ### Context: CREATE TABLE table_1585609_2 (japanese VARCHAR, name VARCHAR) ### Question: Name the total number of japanese for amagasaki ### Answer: SELECT COUNT(japanese) FROM table_1585609_2 WHERE name = "Amagasaki" |
Name the region for iwate | CREATE TABLE table_1585609_2 (region VARCHAR, prefecture VARCHAR) | SELECT region FROM table_1585609_2 WHERE prefecture = "Iwate" | ### Context: CREATE TABLE table_1585609_2 (region VARCHAR, prefecture VARCHAR) ### Question: Name the region for iwate ### Answer: SELECT region FROM table_1585609_2 WHERE prefecture = "Iwate" |
Who scored the most rebounds in the game against Chicago? | CREATE TABLE table_15869204_9 (high_rebounds VARCHAR, team VARCHAR) | SELECT high_rebounds FROM table_15869204_9 WHERE team = "Chicago" | ### Context: CREATE TABLE table_15869204_9 (high_rebounds VARCHAR, team VARCHAR) ### Question: Who scored the most rebounds in the game against Chicago? ### Answer: SELECT high_rebounds FROM table_15869204_9 WHERE team = "Chicago" |
What were the dates of the games where Jalen Rose (32) had the highest points? | CREATE TABLE table_15872814_5 (date VARCHAR, high_points VARCHAR) | SELECT date FROM table_15872814_5 WHERE high_points = "Jalen Rose (32)" | ### Context: CREATE TABLE table_15872814_5 (date VARCHAR, high_points VARCHAR) ### Question: What were the dates of the games where Jalen Rose (32) had the highest points? ### Answer: SELECT date FROM table_15872814_5 WHERE high_points = "Jalen Rose (32)" |
What is the location and total attendance for games played against New Orleans? | CREATE TABLE table_15872814_5 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_15872814_5 WHERE team = "New Orleans" | ### Context: CREATE TABLE table_15872814_5 (location_attendance VARCHAR, team VARCHAR) ### Question: What is the location and total attendance for games played against New Orleans? ### Answer: SELECT location_attendance FROM table_15872814_5 WHERE team = "New Orleans" |
How many teams are listed for February 18? | CREATE TABLE table_15869204_7 (team VARCHAR, date VARCHAR) | SELECT COUNT(team) FROM table_15869204_7 WHERE date = "February 18" | ### Context: CREATE TABLE table_15869204_7 (team VARCHAR, date VARCHAR) ### Question: How many teams are listed for February 18? ### Answer: SELECT COUNT(team) FROM table_15869204_7 WHERE date = "February 18" |
What were the high rebounds on February 24? | CREATE TABLE table_15869204_7 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_15869204_7 WHERE date = "February 24" | ### Context: CREATE TABLE table_15869204_7 (high_rebounds VARCHAR, date VARCHAR) ### Question: What were the high rebounds on February 24? ### Answer: SELECT high_rebounds FROM table_15869204_7 WHERE date = "February 24" |
What was the score in game 51? | CREATE TABLE table_15869204_7 (score VARCHAR, game VARCHAR) | SELECT score FROM table_15869204_7 WHERE game = 51 | ### Context: CREATE TABLE table_15869204_7 (score VARCHAR, game VARCHAR) ### Question: What was the score in game 51? ### Answer: SELECT score FROM table_15869204_7 WHERE game = 51 |
What was the score when they played against San Antonio? | CREATE TABLE table_15869204_7 (score VARCHAR, team VARCHAR) | SELECT score FROM table_15869204_7 WHERE team = "San Antonio" | ### Context: CREATE TABLE table_15869204_7 (score VARCHAR, team VARCHAR) ### Question: What was the score when they played against San Antonio? ### Answer: SELECT score FROM table_15869204_7 WHERE team = "San Antonio" |
Who was the high point scorer in game number 68? | CREATE TABLE table_15869204_8 (high_points VARCHAR, game VARCHAR) | SELECT high_points FROM table_15869204_8 WHERE game = 68 | ### Context: CREATE TABLE table_15869204_8 (high_points VARCHAR, game VARCHAR) ### Question: Who was the high point scorer in game number 68? ### Answer: SELECT high_points FROM table_15869204_8 WHERE game = 68 |
How many players had the most assists against New Jersey? | CREATE TABLE table_15873014_3 (high_assists VARCHAR, team VARCHAR) | SELECT COUNT(high_assists) FROM table_15873014_3 WHERE team = "New Jersey" | ### Context: CREATE TABLE table_15873014_3 (high_assists VARCHAR, team VARCHAR) ### Question: How many players had the most assists against New Jersey? ### Answer: SELECT COUNT(high_assists) FROM table_15873014_3 WHERE team = "New Jersey" |
How many games were played in the season? | CREATE TABLE table_15873014_3 (game INTEGER) | SELECT MAX(game) FROM table_15873014_3 | ### Context: CREATE TABLE table_15873014_3 (game INTEGER) ### Question: How many games were played in the season? ### Answer: SELECT MAX(game) FROM table_15873014_3 |
What team had high assists Rafer Alston (5)? | CREATE TABLE table_15872814_7 (team VARCHAR, high_assists VARCHAR) | SELECT team FROM table_15872814_7 WHERE high_assists = "Rafer Alston (5)" | ### Context: CREATE TABLE table_15872814_7 (team VARCHAR, high_assists VARCHAR) ### Question: What team had high assists Rafer Alston (5)? ### Answer: SELECT team FROM table_15872814_7 WHERE high_assists = "Rafer Alston (5)" |
Who has the most assists on January 3? | CREATE TABLE table_15873014_5 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_15873014_5 WHERE date = "January 3" | ### Context: CREATE TABLE table_15873014_5 (high_assists VARCHAR, date VARCHAR) ### Question: Who has the most assists on January 3? ### Answer: SELECT high_assists FROM table_15873014_5 WHERE date = "January 3" |
Who is the rector of the residence hall who's mascot is the phoxes? | CREATE TABLE table_15873547_1 (rector VARCHAR, mascot VARCHAR) | SELECT rector FROM table_15873547_1 WHERE mascot = "Phoxes" | ### Context: CREATE TABLE table_15873547_1 (rector VARCHAR, mascot VARCHAR) ### Question: Who is the rector of the residence hall who's mascot is the phoxes? ### Answer: SELECT rector FROM table_15873547_1 WHERE mascot = "Phoxes" |
What is the mascot with the colors green and navy? | CREATE TABLE table_15873547_1 (mascot VARCHAR, colors VARCHAR) | SELECT mascot FROM table_15873547_1 WHERE colors = "Green and Navy" | ### Context: CREATE TABLE table_15873547_1 (mascot VARCHAR, colors VARCHAR) ### Question: What is the mascot with the colors green and navy? ### Answer: SELECT mascot FROM table_15873547_1 WHERE colors = "Green and Navy" |
What residence hall has the vermin mascot? | CREATE TABLE table_15873547_1 (residence_hall VARCHAR, mascot VARCHAR) | SELECT residence_hall FROM table_15873547_1 WHERE mascot = "Vermin" | ### Context: CREATE TABLE table_15873547_1 (residence_hall VARCHAR, mascot VARCHAR) ### Question: What residence hall has the vermin mascot? ### Answer: SELECT residence_hall FROM table_15873547_1 WHERE mascot = "Vermin" |
What are the colors of Howard Hall? | CREATE TABLE table_15873547_1 (colors VARCHAR, residence_hall VARCHAR) | SELECT colors FROM table_15873547_1 WHERE residence_hall = "Howard Hall" | ### Context: CREATE TABLE table_15873547_1 (colors VARCHAR, residence_hall VARCHAR) ### Question: What are the colors of Howard Hall? ### Answer: SELECT colors FROM table_15873547_1 WHERE residence_hall = "Howard Hall" |
What is the content of la7 television service? | CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR) | SELECT content FROM table_15887683_1 WHERE television_service = "LA7" | ### Context: CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR) ### Question: What is the content of la7 television service? ### Answer: SELECT content FROM table_15887683_1 WHERE television_service = "LA7" |
What is the content of the rai 1 television service? | CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR) | SELECT content FROM table_15887683_1 WHERE television_service = "Rai 1" | ### Context: CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR) ### Question: What is the content of the rai 1 television service? ### Answer: SELECT content FROM table_15887683_1 WHERE television_service = "Rai 1" |
What are the package/options when the TV service is rai 3? | CREATE TABLE table_15887683_1 (package_option VARCHAR, television_service VARCHAR) | SELECT package_option FROM table_15887683_1 WHERE television_service = "Rai 3" | ### Context: CREATE TABLE table_15887683_1 (package_option VARCHAR, television_service VARCHAR) ### Question: What are the package/options when the TV service is rai 3? ### Answer: SELECT package_option FROM table_15887683_1 WHERE television_service = "Rai 3" |
What high definition television options are available for Italia 1? | CREATE TABLE table_15887683_1 (hdtv VARCHAR, television_service VARCHAR) | SELECT hdtv FROM table_15887683_1 WHERE television_service = "Italia 1" | ### Context: CREATE TABLE table_15887683_1 (hdtv VARCHAR, television_service VARCHAR) ### Question: What high definition television options are available for Italia 1? ### Answer: SELECT hdtv FROM table_15887683_1 WHERE television_service = "Italia 1" |
How many values of HDTV apply when television service is elite shopping tv? | CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR) | SELECT COUNT(hdtv) FROM table_15887683_16 WHERE television_service = "Elite Shopping TV" | ### Context: CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR) ### Question: How many values of HDTV apply when television service is elite shopping tv? ### Answer: SELECT COUNT(hdtv) FROM table_15887683_16 WHERE television_service = "Elite Shopping TV" |
How many countries have content of arte? | CREATE TABLE table_15887683_16 (country VARCHAR, content VARCHAR) | SELECT COUNT(country) FROM table_15887683_16 WHERE content = "arte" | ### Context: CREATE TABLE table_15887683_16 (country VARCHAR, content VARCHAR) ### Question: How many countries have content of arte? ### Answer: SELECT COUNT(country) FROM table_15887683_16 WHERE content = "arte" |
How many values of HDTV correspond to television service of la sorgente sat 1? | CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR) | SELECT COUNT(hdtv) FROM table_15887683_16 WHERE television_service = "La Sorgente Sat 1" | ### Context: CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR) ### Question: How many values of HDTV correspond to television service of la sorgente sat 1? ### Answer: SELECT COUNT(hdtv) FROM table_15887683_16 WHERE television_service = "La Sorgente Sat 1" |
What values of HDTV correspond to n° of 862? | CREATE TABLE table_15887683_16 (hdtv VARCHAR, n° VARCHAR) | SELECT hdtv FROM table_15887683_16 WHERE n° = 862 | ### Context: CREATE TABLE table_15887683_16 (hdtv VARCHAR, n° VARCHAR) ### Question: What values of HDTV correspond to n° of 862? ### Answer: SELECT hdtv FROM table_15887683_16 WHERE n° = 862 |
Name the content for sky famiglia for italian and dar 16:9 for mtv hits | CREATE TABLE table_15887683_10 (content VARCHAR, television_service VARCHAR, dar VARCHAR, package_option VARCHAR, language VARCHAR) | SELECT content FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND language = "Italian" AND dar = "16:9" AND television_service = "MTV Hits" | ### Context: CREATE TABLE table_15887683_10 (content VARCHAR, television_service VARCHAR, dar VARCHAR, package_option VARCHAR, language VARCHAR) ### Question: Name the content for sky famiglia for italian and dar 16:9 for mtv hits ### Answer: SELECT content FROM table_15887683_10 WHERE package_option = "Sky Famiglia" A... |
Name the least number for mydeejay | CREATE TABLE table_15887683_10 (n INTEGER, television_service VARCHAR) | SELECT MIN(n) AS ° FROM table_15887683_10 WHERE television_service = "myDeejay" | ### Context: CREATE TABLE table_15887683_10 (n INTEGER, television_service VARCHAR) ### Question: Name the least number for mydeejay ### Answer: SELECT MIN(n) AS ° FROM table_15887683_10 WHERE television_service = "myDeejay" |
Name the number of package options for music box italia | CREATE TABLE table_15887683_10 (package_option VARCHAR, television_service VARCHAR) | SELECT COUNT(package_option) FROM table_15887683_10 WHERE television_service = "Music Box Italia" | ### Context: CREATE TABLE table_15887683_10 (package_option VARCHAR, television_service VARCHAR) ### Question: Name the number of package options for music box italia ### Answer: SELECT COUNT(package_option) FROM table_15887683_10 WHERE television_service = "Music Box Italia" |
Name the hdtv for sky famiglia and dar 16:9 for mydeejay | CREATE TABLE table_15887683_10 (hdtv VARCHAR, television_service VARCHAR, package_option VARCHAR, dar VARCHAR) | SELECT hdtv FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND dar = "16:9" AND television_service = "myDeejay" | ### Context: CREATE TABLE table_15887683_10 (hdtv VARCHAR, television_service VARCHAR, package_option VARCHAR, dar VARCHAR) ### Question: Name the hdtv for sky famiglia and dar 16:9 for mydeejay ### Answer: SELECT hdtv FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND dar = "16:9" AND television_service ... |
Name the dar for mtv rocks | CREATE TABLE table_15887683_10 (dar VARCHAR, television_service VARCHAR) | SELECT dar FROM table_15887683_10 WHERE television_service = "MTV Rocks" | ### Context: CREATE TABLE table_15887683_10 (dar VARCHAR, television_service VARCHAR) ### Question: Name the dar for mtv rocks ### Answer: SELECT dar FROM table_15887683_10 WHERE television_service = "MTV Rocks" |
Name the ppv for sky famiglia and dar 16:9 for mtv dance | CREATE TABLE table_15887683_10 (ppv VARCHAR, television_service VARCHAR, package_option VARCHAR, dar VARCHAR) | SELECT ppv FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND dar = "16:9" AND television_service = "MTV Dance" | ### Context: CREATE TABLE table_15887683_10 (ppv VARCHAR, television_service VARCHAR, package_option VARCHAR, dar VARCHAR) ### Question: Name the ppv for sky famiglia and dar 16:9 for mtv dance ### Answer: SELECT ppv FROM table_15887683_10 WHERE package_option = "Sky Famiglia" AND dar = "16:9" AND television_service = ... |
Name the dar for telenord | CREATE TABLE table_15887683_17 (dar VARCHAR, television_service VARCHAR) | SELECT dar FROM table_15887683_17 WHERE television_service = "Telenord" | ### Context: CREATE TABLE table_15887683_17 (dar VARCHAR, television_service VARCHAR) ### Question: Name the dar for telenord ### Answer: SELECT dar FROM table_15887683_17 WHERE television_service = "Telenord" |
Name the total number of hdtv for eurotic tv | CREATE TABLE table_15887683_17 (hdtv VARCHAR, television_service VARCHAR) | SELECT COUNT(hdtv) FROM table_15887683_17 WHERE television_service = "Eurotic TV" | ### Context: CREATE TABLE table_15887683_17 (hdtv VARCHAR, television_service VARCHAR) ### Question: Name the total number of hdtv for eurotic tv ### Answer: SELECT COUNT(hdtv) FROM table_15887683_17 WHERE television_service = "Eurotic TV" |
Name the dar for 912 | CREATE TABLE table_15887683_17 (dar VARCHAR, n° VARCHAR) | SELECT dar FROM table_15887683_17 WHERE n° = 912 | ### Context: CREATE TABLE table_15887683_17 (dar VARCHAR, n° VARCHAR) ### Question: Name the dar for 912 ### Answer: SELECT dar FROM table_15887683_17 WHERE n° = 912 |
How many times was something listed under content when the television was R-light? | CREATE TABLE table_15887683_19 (content VARCHAR, television_service VARCHAR) | SELECT COUNT(content) FROM table_15887683_19 WHERE television_service = "R-LIGHT" | ### Context: CREATE TABLE table_15887683_19 (content VARCHAR, television_service VARCHAR) ### Question: How many times was something listed under content when the television was R-light? ### Answer: SELECT COUNT(content) FROM table_15887683_19 WHERE television_service = "R-LIGHT" |
Was there PPV when the service was SCT? | CREATE TABLE table_15887683_19 (ppv VARCHAR, television_service VARCHAR) | SELECT ppv FROM table_15887683_19 WHERE television_service = "SCT" | ### Context: CREATE TABLE table_15887683_19 (ppv VARCHAR, television_service VARCHAR) ### Question: Was there PPV when the service was SCT? ### Answer: SELECT ppv FROM table_15887683_19 WHERE television_service = "SCT" |
Was there HDTV when the service was Privè? | CREATE TABLE table_15887683_19 (hdtv VARCHAR, television_service VARCHAR) | SELECT hdtv FROM table_15887683_19 WHERE television_service = "PRIVÈ" | ### Context: CREATE TABLE table_15887683_19 (hdtv VARCHAR, television_service VARCHAR) ### Question: Was there HDTV when the service was Privè? ### Answer: SELECT hdtv FROM table_15887683_19 WHERE television_service = "PRIVÈ" |
In what laguage was Contotv 5? | CREATE TABLE table_15887683_19 (language VARCHAR, television_service VARCHAR) | SELECT language FROM table_15887683_19 WHERE television_service = "ContoTV 5" | ### Context: CREATE TABLE table_15887683_19 (language VARCHAR, television_service VARCHAR) ### Question: In what laguage was Contotv 5? ### Answer: SELECT language FROM table_15887683_19 WHERE television_service = "ContoTV 5" |
What's the content of the Tutti i Pacchetti + Sky HD package? | CREATE TABLE table_15887683_3 (content VARCHAR, package_option VARCHAR) | SELECT content FROM table_15887683_3 WHERE package_option = "Tutti i pacchetti + Sky HD" | ### Context: CREATE TABLE table_15887683_3 (content VARCHAR, package_option VARCHAR) ### Question: What's the content of the Tutti i Pacchetti + Sky HD package? ### Answer: SELECT content FROM table_15887683_3 WHERE package_option = "Tutti i pacchetti + Sky HD" |
What package offers Fox Sports HD? | CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR) | SELECT package_option FROM table_15887683_3 WHERE television_service = "FOX Sports HD" | ### Context: CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR) ### Question: What package offers Fox Sports HD? ### Answer: SELECT package_option FROM table_15887683_3 WHERE television_service = "FOX Sports HD" |
What packages offer the Cartello Promozionale Sky HD service? | CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR) | SELECT package_option FROM table_15887683_3 WHERE television_service = "Cartello promozionale Sky HD" | ### Context: CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR) ### Question: What packages offer the Cartello Promozionale Sky HD service? ### Answer: SELECT package_option FROM table_15887683_3 WHERE television_service = "Cartello promozionale Sky HD" |
How many different contents are offered by the Qualsiasi Tranne Sky HD package? | CREATE TABLE table_15887683_3 (content VARCHAR, package_option VARCHAR) | SELECT COUNT(content) FROM table_15887683_3 WHERE package_option = "qualsiasi tranne Sky HD" | ### Context: CREATE TABLE table_15887683_3 (content VARCHAR, package_option VARCHAR) ### Question: How many different contents are offered by the Qualsiasi Tranne Sky HD package? ### Answer: SELECT COUNT(content) FROM table_15887683_3 WHERE package_option = "qualsiasi tranne Sky HD" |
What's the content offered by the package number 204? | CREATE TABLE table_15887683_3 (content VARCHAR, n° VARCHAR) | SELECT content FROM table_15887683_3 WHERE n° = 204 | ### Context: CREATE TABLE table_15887683_3 (content VARCHAR, n° VARCHAR) ### Question: What's the content offered by the package number 204? ### Answer: SELECT content FROM table_15887683_3 WHERE n° = 204 |
How many PPV values are listed for when television service Sky Cinema 1? | CREATE TABLE table_15887683_5 (ppv VARCHAR, television_service VARCHAR) | SELECT COUNT(ppv) FROM table_15887683_5 WHERE television_service = "Sky Cinema 1" | ### Context: CREATE TABLE table_15887683_5 (ppv VARCHAR, television_service VARCHAR) ### Question: How many PPV values are listed for when television service Sky Cinema 1? ### Answer: SELECT COUNT(ppv) FROM table_15887683_5 WHERE television_service = "Sky Cinema 1" |
What DAR is available for n. 336 in Italian? | CREATE TABLE table_15887683_5 (dar VARCHAR, n° VARCHAR, language VARCHAR) | SELECT dar FROM table_15887683_5 WHERE n° = "336" AND language = "Italian" | ### Context: CREATE TABLE table_15887683_5 (dar VARCHAR, n° VARCHAR, language VARCHAR) ### Question: What DAR is available for n. 336 in Italian? ### Answer: SELECT dar FROM table_15887683_5 WHERE n° = "336" AND language = "Italian" |
What are the values of n for cinema content provided by Sky Cinema +24 on its Sky Cinema package? | CREATE TABLE table_15887683_5 (n° VARCHAR, television_service VARCHAR, package_option VARCHAR, content VARCHAR) | SELECT n° FROM table_15887683_5 WHERE package_option = "Sky Cinema" AND content = "cinema" AND television_service = "Sky Cinema" + 24 | ### Context: CREATE TABLE table_15887683_5 (n° VARCHAR, television_service VARCHAR, package_option VARCHAR, content VARCHAR) ### Question: What are the values of n for cinema content provided by Sky Cinema +24 on its Sky Cinema package? ### Answer: SELECT n° FROM table_15887683_5 WHERE package_option = "Sky Cinema" AND... |
What language is Sky Cinema Passion television service n. 308? | CREATE TABLE table_15887683_5 (language VARCHAR, television_service VARCHAR, n° VARCHAR) | SELECT language FROM table_15887683_5 WHERE television_service = "Sky Cinema Passion" AND n° = "308" | ### Context: CREATE TABLE table_15887683_5 (language VARCHAR, television_service VARCHAR, n° VARCHAR) ### Question: What language is Sky Cinema Passion television service n. 308? ### Answer: SELECT language FROM table_15887683_5 WHERE television_service = "Sky Cinema Passion" AND n° = "308" |
What package offers cinema content and is n. 333? | CREATE TABLE table_15887683_5 (package_option VARCHAR, content VARCHAR, n° VARCHAR) | SELECT package_option FROM table_15887683_5 WHERE content = "cinema" AND n° = "333" | ### Context: CREATE TABLE table_15887683_5 (package_option VARCHAR, content VARCHAR, n° VARCHAR) ### Question: What package offers cinema content and is n. 333? ### Answer: SELECT package_option FROM table_15887683_5 WHERE content = "cinema" AND n° = "333" |
Name the total number of dar for disney channel and number is 613 | CREATE TABLE table_15887683_9 (dar VARCHAR, television_service VARCHAR, n° VARCHAR) | SELECT COUNT(dar) FROM table_15887683_9 WHERE television_service = "Disney Channel" AND n° = 613 | ### Context: CREATE TABLE table_15887683_9 (dar VARCHAR, television_service VARCHAR, n° VARCHAR) ### Question: Name the total number of dar for disney channel and number is 613 ### Answer: SELECT COUNT(dar) FROM table_15887683_9 WHERE television_service = "Disney Channel" AND n° = 613 |
Name the country when dar is 16:9 for italian english for disney xd +2 | CREATE TABLE table_15887683_9 (country VARCHAR, television_service VARCHAR, dar VARCHAR, language VARCHAR) | SELECT country FROM table_15887683_9 WHERE dar = "16:9" AND language = "Italian English" AND television_service = "Disney XD +2" | ### Context: CREATE TABLE table_15887683_9 (country VARCHAR, television_service VARCHAR, dar VARCHAR, language VARCHAR) ### Question: Name the country when dar is 16:9 for italian english for disney xd +2 ### Answer: SELECT country FROM table_15887683_9 WHERE dar = "16:9" AND language = "Italian English" AND television... |
Who was the player with a bowling best of 2/43? | CREATE TABLE table_15893020_2 (player VARCHAR, best_bowling VARCHAR) | SELECT player FROM table_15893020_2 WHERE best_bowling = "2/43" | ### Context: CREATE TABLE table_15893020_2 (player VARCHAR, best_bowling VARCHAR) ### Question: Who was the player with a bowling best of 2/43? ### Answer: SELECT player FROM table_15893020_2 WHERE best_bowling = "2/43" |
What is the highest number of maidens when the bowling best was 1/13? | CREATE TABLE table_15893020_2 (maidens INTEGER, best_bowling VARCHAR) | SELECT MAX(maidens) FROM table_15893020_2 WHERE best_bowling = "1/13" | ### Context: CREATE TABLE table_15893020_2 (maidens INTEGER, best_bowling VARCHAR) ### Question: What is the highest number of maidens when the bowling best was 1/13? ### Answer: SELECT MAX(maidens) FROM table_15893020_2 WHERE best_bowling = "1/13" |
How many overs did Oliver Hannon-Dalby have? | CREATE TABLE table_15893020_2 (overs VARCHAR, player VARCHAR) | SELECT overs FROM table_15893020_2 WHERE player = "Oliver Hannon-Dalby" | ### Context: CREATE TABLE table_15893020_2 (overs VARCHAR, player VARCHAR) ### Question: How many overs did Oliver Hannon-Dalby have? ### Answer: SELECT overs FROM table_15893020_2 WHERE player = "Oliver Hannon-Dalby" |
What is the highest number of 5w when there was a 21.33 average? | CREATE TABLE table_15893020_2 (average VARCHAR) | SELECT MAX(5 AS w) FROM table_15893020_2 WHERE average = "21.33" | ### Context: CREATE TABLE table_15893020_2 (average VARCHAR) ### Question: What is the highest number of 5w when there was a 21.33 average? ### Answer: SELECT MAX(5 AS w) FROM table_15893020_2 WHERE average = "21.33" |
What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)? | CREATE TABLE table_15909409_2 (country VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR) | SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "2040(93%)" | ### Context: CREATE TABLE table_15909409_2 (country VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR) ### Question: What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)? ### Answer: SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "20... |
How many countries had a per capita withdrawal (m 3 /p/yr) of 372? | CREATE TABLE table_15909409_2 (country VARCHAR, per_capita_withdrawal__m_3__p_yr_ VARCHAR) | SELECT COUNT(country) FROM table_15909409_2 WHERE per_capita_withdrawal__m_3__p_yr_ = 372 | ### Context: CREATE TABLE table_15909409_2 (country VARCHAR, per_capita_withdrawal__m_3__p_yr_ VARCHAR) ### Question: How many countries had a per capita withdrawal (m 3 /p/yr) of 372? ### Answer: SELECT COUNT(country) FROM table_15909409_2 WHERE per_capita_withdrawal__m_3__p_yr_ = 372 |
How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)? | CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR) | SELECT COUNT(total_freshwater_withdrawal__km_3__yr_) FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "428(62%)" | ### Context: CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR) ### Question: How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)? ### Answer: SELECT COUNT(total_freshw... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.