Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
31,000
<question>: Name the # for youtube <context>: CREATE TABLE table_15781170_2 (_number VARCHAR, poll_winner VARCHAR)
SELECT _number FROM table_15781170_2 WHERE poll_winner = "YouTube"
31,001
<question>: What are the original air dates when scientology isthe poll winner? <context>: CREATE TABLE table_15781170_3 (original_air_date VARCHAR, poll_winner VARCHAR)
SELECT original_air_date FROM table_15781170_3 WHERE poll_winner = "Scientology"
31,002
<question>: When bloggers was the poll winner, who was the root of all evil? <context>: 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"
31,003
<question>: How many times did drinking games win the poll? <context>: CREATE TABLE table_15781170_3 (_number VARCHAR, poll_winner VARCHAR)
SELECT COUNT(_number) FROM table_15781170_3 WHERE poll_winner = "Drinking Games"
31,004
<question>: What date was an episode with a run time of 24:30 broadcasted? <context>: CREATE TABLE table_1579922_1 (broadcast_date VARCHAR, run_time VARCHAR)
SELECT broadcast_date FROM table_1579922_1 WHERE run_time = "24:30"
31,005
<question>: What episode had a run time of 24:25? <context>: CREATE TABLE table_1579922_1 (episode VARCHAR, run_time VARCHAR)
SELECT episode FROM table_1579922_1 WHERE run_time = "24:25"
31,006
<question>: Who was the original artist for week number Top 16 (8 women)? <context>: 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)"
31,007
<question>: What was the order number where the original artist is The Doors? <context>: CREATE TABLE table_15796072_1 (order__number VARCHAR, original_artist VARCHAR)
SELECT order__number FROM table_15796072_1 WHERE original_artist = "The Doors"
31,008
<question>: What was the theme when the original artist was The Beatles? <context>: CREATE TABLE table_15796072_1 (theme VARCHAR, original_artist VARCHAR)
SELECT theme FROM table_15796072_1 WHERE original_artist = "The Beatles"
31,009
<question>: Who was the original artist when the theme was 1980s? <context>: CREATE TABLE table_15796072_1 (original_artist VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_15796072_1 WHERE theme = "1980s"
31,010
<question>: Who was the original artist when the order number is 9? <context>: CREATE TABLE table_15796072_1 (original_artist VARCHAR, order__number VARCHAR)
SELECT original_artist FROM table_15796072_1 WHERE order__number = "9"
31,011
<question>: Which episode was N/A in region 1 <context>: CREATE TABLE table_15823956_1 (episodes VARCHAR, region_1 VARCHAR)
SELECT episodes FROM table_15823956_1 WHERE region_1 = "N/A"
31,012
<question>: When was series premiere on the pilot episode <context>: CREATE TABLE table_15823956_1 (series VARCHAR)
SELECT series AS premiere FROM table_15823956_1 WHERE series = "Pilot"
31,013
<question>: What is the region 1 date for series 4 <context>: CREATE TABLE table_15823956_1 (region_1 VARCHAR, series VARCHAR)
SELECT region_1 FROM table_15823956_1 WHERE series = "4"
31,014
<question>: What season began on december 5, 1953? <context>: 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"
31,015
<question>: What is the title of the first episode of the season that begin on february 27, 1954? <context>: CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR)
SELECT title FROM table_15824796_3 WHERE original_air_date = "February 27, 1954"
31,016
<question>: What is the title of the episode that aired on december 12, 1953? <context>: CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR)
SELECT title FROM table_15824796_3 WHERE original_air_date = "December 12, 1953"
31,017
<question>: How many episodes aired on february 13, 1954? <context>: 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"
31,018
<question>: What are all the CFL teams where the pick number is 36? <context>: CREATE TABLE table_15817998_5 (cfl_team VARCHAR, pick__number VARCHAR)
SELECT cfl_team FROM table_15817998_5 WHERE pick__number = 36
31,019
<question>: What are the positions in the college of Alberta? <context>: CREATE TABLE table_15817998_5 (position VARCHAR, college VARCHAR)
SELECT position FROM table_15817998_5 WHERE college = "Alberta"
31,020
<question>: What is the total number of CFL teams in the college Wilfrid Laurier <context>: CREATE TABLE table_15817998_5 (cfl_team VARCHAR, college VARCHAR)
SELECT COUNT(cfl_team) FROM table_15817998_5 WHERE college = "Wilfrid Laurier"
31,021
<question>: What is the college that Jeffrey Simmer plays for? <context>: CREATE TABLE table_15817998_5 (college VARCHAR, player VARCHAR)
SELECT college FROM table_15817998_5 WHERE player = "Jeffrey Simmer"
31,022
<question>: Name the least matches for year 2008 <context>: CREATE TABLE table_15829930_5 (matches INTEGER, year VARCHAR)
SELECT MIN(matches) FROM table_15829930_5 WHERE year = 2008
31,023
<question>: Name the maximum wins for 68.75% <context>: CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR)
SELECT MAX(wins) FROM table_15829930_5 WHERE success_rate = "68.75%"
31,024
<question>: Name the summary for the success rate for 68.75% <context>: CREATE TABLE table_15829930_5 (summary VARCHAR, success_rate VARCHAR)
SELECT summary FROM table_15829930_5 WHERE success_rate = "68.75%"
31,025
<question>: Name the least tied <context>: CREATE TABLE table_15829930_5 (tied INTEGER)
SELECT MIN(tied) FROM table_15829930_5
31,026
<question>: Name the least wins of 56.25% <context>: CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR)
SELECT MIN(wins) FROM table_15829930_5 WHERE success_rate = "56.25%"
31,027
<question>: How many locomotives have a name of City of Birmingham <context>: CREATE TABLE table_15827397_1 (no VARCHAR, name VARCHAR)
SELECT COUNT(no) FROM table_15827397_1 WHERE name = "City of Birmingham"
31,028
<question>: How many locomotives have a livery that is highland railway green <context>: CREATE TABLE table_15827397_1 (name VARCHAR, livery VARCHAR)
SELECT COUNT(name) FROM table_15827397_1 WHERE livery = "Highland Railway green"
31,029
<question>: Which locomotive type has a status in static display <context>: CREATE TABLE table_15827397_1 (locomotive_type VARCHAR, status VARCHAR)
SELECT locomotive_type FROM table_15827397_1 WHERE status = "Static display"
31,030
<question>: What is the maximum number of points against when the attendance was 47678? <context>: CREATE TABLE table_15847691_2 (points_against INTEGER, attendance VARCHAR)
SELECT MAX(points_against) FROM table_15847691_2 WHERE attendance = 47678
31,031
<question>: What was the total number of first down on October 23? <context>: CREATE TABLE table_15847691_2 (first_downs VARCHAR, date VARCHAR)
SELECT COUNT(first_downs) FROM table_15847691_2 WHERE date = "October 23"
31,032
<question>: Name the most series number for giula sandler <context>: CREATE TABLE table_15838081_3 (series__number INTEGER, writer_s_ VARCHAR)
SELECT MAX(series__number) FROM table_15838081_3 WHERE writer_s_ = "Giula Sandler"
31,033
<question>: Name the number of season number for jeff truman <context>: CREATE TABLE table_15838081_3 (season__number VARCHAR, writer_s_ VARCHAR)
SELECT COUNT(season__number) FROM table_15838081_3 WHERE writer_s_ = "Jeff Truman"
31,034
<question>: Name the minimum enrollment for montana tech of the university of montana <context>: 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"
31,035
<question>: Name the location when control is private and founded is 1870 <context>: CREATE TABLE table_15851155_1 (location VARCHAR, control VARCHAR, founded VARCHAR)
SELECT location FROM table_15851155_1 WHERE control = "Private" AND founded = 1870
31,036
<question>: Who directed the TV broadcast s03e19? <context>: CREATE TABLE table_15861776_1 (directed_by VARCHAR, tv_broadcast VARCHAR)
SELECT directed_by FROM table_15861776_1 WHERE tv_broadcast = "S03E19"
31,037
<question>: What episode in the series is TV broadcast s03e20? <context>: CREATE TABLE table_15861776_1 (no_in_series VARCHAR, tv_broadcast VARCHAR)
SELECT no_in_series FROM table_15861776_1 WHERE tv_broadcast = "S03E20"
31,038
<question>: WHAT WAS THE SCORE FOR GAME 31? <context>: CREATE TABLE table_15869204_6 (score VARCHAR, game VARCHAR)
SELECT score FROM table_15869204_6 WHERE game = 31
31,039
<question>: WHO DID THE RAPTORS PLAY ON JANUARY 9? <context>: CREATE TABLE table_15869204_6 (team VARCHAR, date VARCHAR)
SELECT team FROM table_15869204_6 WHERE date = "January 9"
31,040
<question>: Name thenames for 2002-04-01 <context>: CREATE TABLE table_1585609_2 (name VARCHAR, date_of_designation VARCHAR)
SELECT name FROM table_1585609_2 WHERE date_of_designation = "2002-04-01"
31,041
<question>: Name all the date of designations for kurume <context>: CREATE TABLE table_1585609_2 (date_of_designation VARCHAR, name VARCHAR)
SELECT date_of_designation FROM table_1585609_2 WHERE name = "Kurume"
31,042
<question>: Name the total number of japanese for amagasaki <context>: CREATE TABLE table_1585609_2 (japanese VARCHAR, name VARCHAR)
SELECT COUNT(japanese) FROM table_1585609_2 WHERE name = "Amagasaki"
31,043
<question>: Name the region for iwate <context>: CREATE TABLE table_1585609_2 (region VARCHAR, prefecture VARCHAR)
SELECT region FROM table_1585609_2 WHERE prefecture = "Iwate"
31,044
<question>: Who scored the most rebounds in the game against Chicago? <context>: CREATE TABLE table_15869204_9 (high_rebounds VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_15869204_9 WHERE team = "Chicago"
31,045
<question>: What were the dates of the games where Jalen Rose (32) had the highest points? <context>: CREATE TABLE table_15872814_5 (date VARCHAR, high_points VARCHAR)
SELECT date FROM table_15872814_5 WHERE high_points = "Jalen Rose (32)"
31,046
<question>: What is the location and total attendance for games played against New Orleans? <context>: CREATE TABLE table_15872814_5 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_15872814_5 WHERE team = "New Orleans"
31,047
<question>: How many teams are listed for February 18? <context>: CREATE TABLE table_15869204_7 (team VARCHAR, date VARCHAR)
SELECT COUNT(team) FROM table_15869204_7 WHERE date = "February 18"
31,048
<question>: What were the high rebounds on February 24? <context>: CREATE TABLE table_15869204_7 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_15869204_7 WHERE date = "February 24"
31,049
<question>: What was the score in game 51? <context>: CREATE TABLE table_15869204_7 (score VARCHAR, game VARCHAR)
SELECT score FROM table_15869204_7 WHERE game = 51
31,050
<question>: What was the score when they played against San Antonio? <context>: CREATE TABLE table_15869204_7 (score VARCHAR, team VARCHAR)
SELECT score FROM table_15869204_7 WHERE team = "San Antonio"
31,051
<question>: Who was the high point scorer in game number 68? <context>: CREATE TABLE table_15869204_8 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_15869204_8 WHERE game = 68
31,052
<question>: How many players had the most assists against New Jersey? <context>: CREATE TABLE table_15873014_3 (high_assists VARCHAR, team VARCHAR)
SELECT COUNT(high_assists) FROM table_15873014_3 WHERE team = "New Jersey"
31,053
<question>: How many games were played in the season? <context>: CREATE TABLE table_15873014_3 (game INTEGER)
SELECT MAX(game) FROM table_15873014_3
31,054
<question>: What team had high assists Rafer Alston (5)? <context>: CREATE TABLE table_15872814_7 (team VARCHAR, high_assists VARCHAR)
SELECT team FROM table_15872814_7 WHERE high_assists = "Rafer Alston (5)"
31,055
<question>: Who has the most assists on January 3? <context>: CREATE TABLE table_15873014_5 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_15873014_5 WHERE date = "January 3"
31,056
<question>: Who is the rector of the residence hall who's mascot is the phoxes? <context>: CREATE TABLE table_15873547_1 (rector VARCHAR, mascot VARCHAR)
SELECT rector FROM table_15873547_1 WHERE mascot = "Phoxes"
31,057
<question>: What is the mascot with the colors green and navy? <context>: CREATE TABLE table_15873547_1 (mascot VARCHAR, colors VARCHAR)
SELECT mascot FROM table_15873547_1 WHERE colors = "Green and Navy"
31,058
<question>: What residence hall has the vermin mascot? <context>: CREATE TABLE table_15873547_1 (residence_hall VARCHAR, mascot VARCHAR)
SELECT residence_hall FROM table_15873547_1 WHERE mascot = "Vermin"
31,059
<question>: What are the colors of Howard Hall? <context>: CREATE TABLE table_15873547_1 (colors VARCHAR, residence_hall VARCHAR)
SELECT colors FROM table_15873547_1 WHERE residence_hall = "Howard Hall"
31,060
<question>: What is the content of la7 television service? <context>: CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR)
SELECT content FROM table_15887683_1 WHERE television_service = "LA7"
31,061
<question>: What is the content of the rai 1 television service? <context>: CREATE TABLE table_15887683_1 (content VARCHAR, television_service VARCHAR)
SELECT content FROM table_15887683_1 WHERE television_service = "Rai 1"
31,062
<question>: What are the package/options when the TV service is rai 3? <context>: CREATE TABLE table_15887683_1 (package_option VARCHAR, television_service VARCHAR)
SELECT package_option FROM table_15887683_1 WHERE television_service = "Rai 3"
31,063
<question>: What high definition television options are available for Italia 1? <context>: CREATE TABLE table_15887683_1 (hdtv VARCHAR, television_service VARCHAR)
SELECT hdtv FROM table_15887683_1 WHERE television_service = "Italia 1"
31,064
<question>: How many values of HDTV apply when television service is elite shopping tv? <context>: CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR)
SELECT COUNT(hdtv) FROM table_15887683_16 WHERE television_service = "Elite Shopping TV"
31,065
<question>: How many countries have content of arte? <context>: CREATE TABLE table_15887683_16 (country VARCHAR, content VARCHAR)
SELECT COUNT(country) FROM table_15887683_16 WHERE content = "arte"
31,066
<question>: How many values of HDTV correspond to television service of la sorgente sat 1? <context>: CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR)
SELECT COUNT(hdtv) FROM table_15887683_16 WHERE television_service = "La Sorgente Sat 1"
31,067
<question>: What values of HDTV correspond to n° of 862? <context>: CREATE TABLE table_15887683_16 (hdtv VARCHAR, n° VARCHAR)
SELECT hdtv FROM table_15887683_16 WHERE n° = 862
31,068
<question>: Name the content for sky famiglia for italian and dar 16:9 for mtv hits <context>: 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"
31,069
<question>: Name the least number for mydeejay <context>: CREATE TABLE table_15887683_10 (n INTEGER, television_service VARCHAR)
SELECT MIN(n) AS ° FROM table_15887683_10 WHERE television_service = "myDeejay"
31,070
<question>: Name the number of package options for music box italia <context>: 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"
31,071
<question>: Name the hdtv for sky famiglia and dar 16:9 for mydeejay <context>: 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"
31,072
<question>: Name the dar for mtv rocks <context>: CREATE TABLE table_15887683_10 (dar VARCHAR, television_service VARCHAR)
SELECT dar FROM table_15887683_10 WHERE television_service = "MTV Rocks"
31,073
<question>: Name the ppv for sky famiglia and dar 16:9 for mtv dance <context>: 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"
31,074
<question>: Name the dar for telenord <context>: CREATE TABLE table_15887683_17 (dar VARCHAR, television_service VARCHAR)
SELECT dar FROM table_15887683_17 WHERE television_service = "Telenord"
31,075
<question>: Name the total number of hdtv for eurotic tv <context>: CREATE TABLE table_15887683_17 (hdtv VARCHAR, television_service VARCHAR)
SELECT COUNT(hdtv) FROM table_15887683_17 WHERE television_service = "Eurotic TV"
31,076
<question>: Name the dar for 912 <context>: CREATE TABLE table_15887683_17 (dar VARCHAR, n° VARCHAR)
SELECT dar FROM table_15887683_17 WHERE n° = 912
31,077
<question>: How many times was something listed under content when the television was R-light? <context>: CREATE TABLE table_15887683_19 (content VARCHAR, television_service VARCHAR)
SELECT COUNT(content) FROM table_15887683_19 WHERE television_service = "R-LIGHT"
31,078
<question>: Was there PPV when the service was SCT? <context>: CREATE TABLE table_15887683_19 (ppv VARCHAR, television_service VARCHAR)
SELECT ppv FROM table_15887683_19 WHERE television_service = "SCT"
31,079
<question>: Was there HDTV when the service was Privè? <context>: CREATE TABLE table_15887683_19 (hdtv VARCHAR, television_service VARCHAR)
SELECT hdtv FROM table_15887683_19 WHERE television_service = "PRIVÈ"
31,080
<question>: In what laguage was Contotv 5? <context>: CREATE TABLE table_15887683_19 (language VARCHAR, television_service VARCHAR)
SELECT language FROM table_15887683_19 WHERE television_service = "ContoTV 5"
31,081
<question>: What's the content of the Tutti i Pacchetti + Sky HD package? <context>: CREATE TABLE table_15887683_3 (content VARCHAR, package_option VARCHAR)
SELECT content FROM table_15887683_3 WHERE package_option = "Tutti i pacchetti + Sky HD"
31,082
<question>: What package offers Fox Sports HD? <context>: CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR)
SELECT package_option FROM table_15887683_3 WHERE television_service = "FOX Sports HD"
31,083
<question>: What packages offer the Cartello Promozionale Sky HD service? <context>: 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"
31,084
<question>: How many different contents are offered by the Qualsiasi Tranne Sky HD package? <context>: CREATE TABLE table_15887683_3 (content VARCHAR, package_option VARCHAR)
SELECT COUNT(content) FROM table_15887683_3 WHERE package_option = "qualsiasi tranne Sky HD"
31,085
<question>: What's the content offered by the package number 204? <context>: CREATE TABLE table_15887683_3 (content VARCHAR, n° VARCHAR)
SELECT content FROM table_15887683_3 WHERE n° = 204
31,086
<question>: How many PPV values are listed for when television service Sky Cinema 1? <context>: CREATE TABLE table_15887683_5 (ppv VARCHAR, television_service VARCHAR)
SELECT COUNT(ppv) FROM table_15887683_5 WHERE television_service = "Sky Cinema 1"
31,087
<question>: What DAR is available for n. 336 in Italian? <context>: CREATE TABLE table_15887683_5 (dar VARCHAR, n° VARCHAR, language VARCHAR)
SELECT dar FROM table_15887683_5 WHERE n° = "336" AND language = "Italian"
31,088
<question>: What are the values of n for cinema content provided by Sky Cinema +24 on its Sky Cinema package? <context>: 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
31,089
<question>: What language is Sky Cinema Passion television service n. 308? <context>: 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"
31,090
<question>: What package offers cinema content and is n. 333? <context>: 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"
31,091
<question>: Name the total number of dar for disney channel and number is 613 <context>: 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
31,092
<question>: Name the country when dar is 16:9 for italian english for disney xd +2 <context>: 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"
31,093
<question>: Who was the player with a bowling best of 2/43? <context>: CREATE TABLE table_15893020_2 (player VARCHAR, best_bowling VARCHAR)
SELECT player FROM table_15893020_2 WHERE best_bowling = "2/43"
31,094
<question>: What is the highest number of maidens when the bowling best was 1/13? <context>: CREATE TABLE table_15893020_2 (maidens INTEGER, best_bowling VARCHAR)
SELECT MAX(maidens) FROM table_15893020_2 WHERE best_bowling = "1/13"
31,095
<question>: How many overs did Oliver Hannon-Dalby have? <context>: CREATE TABLE table_15893020_2 (overs VARCHAR, player VARCHAR)
SELECT overs FROM table_15893020_2 WHERE player = "Oliver Hannon-Dalby"
31,096
<question>: What is the highest number of 5w when there was a 21.33 average? <context>: CREATE TABLE table_15893020_2 (average VARCHAR)
SELECT MAX(5 AS w) FROM table_15893020_2 WHERE average = "21.33"
31,097
<question>: What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)? <context>: 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%)"
31,098
<question>: How many countries had a per capita withdrawal (m 3 /p/yr) of 372? <context>: 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
31,099
<question>: How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)? <context>: 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%)"