question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Name the # for youtube
CREATE TABLE table_15781170_2 (_number VARCHAR, poll_winner VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT summary FROM table_15829930_5 WHERE success_rate = \"68.75%\"" }
Name the least tied
CREATE TABLE table_15829930_5 (tied INTEGER)
{ "SQL_Query": "SELECT MIN(tied) FROM table_15829930_5" }
Name the least wins of 56.25%
CREATE TABLE table_15829930_5 (wins INTEGER, success_rate VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT COUNT(japanese) FROM table_1585609_2 WHERE name = \"Amagasaki\"" }
Name the region for iwate
CREATE TABLE table_1585609_2 (region VARCHAR, prefecture VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT content FROM table_15887683_10 WHERE package_option = \"Sky Famiglia\" AND language = \"Italian\" AND dar = \"16:9\" AND television_service = \"MTV Hits\"" }
Name the least number for mydeejay
CREATE TABLE table_15887683_10 (n INTEGER, television_service VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT hdtv FROM table_15887683_10 WHERE package_option = \"Sky Famiglia\" AND dar = \"16:9\" AND television_service = \"myDeejay\"" }
Name the dar for mtv rocks
CREATE TABLE table_15887683_10 (dar VARCHAR, television_service VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT ppv FROM table_15887683_10 WHERE package_option = \"Sky Famiglia\" AND dar = \"16:9\" AND television_service = \"MTV Dance\"" }
Name the dar for telenord
CREATE TABLE table_15887683_17 (dar VARCHAR, television_service VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT n° FROM table_15887683_5 WHERE package_option = \"Sky Cinema\" AND content = \"cinema\" AND television_service = \"Sky Cinema\" + 24" }
What language is Sky Cinema Passion television service n. 308?
CREATE TABLE table_15887683_5 (language VARCHAR, television_service VARCHAR, n° VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT country FROM table_15887683_9 WHERE dar = \"16:9\" AND language = \"Italian English\" AND television_service = \"Disney XD +2\"" }
Who was the player with a bowling best of 2/43?
CREATE TABLE table_15893020_2 (player VARCHAR, best_bowling VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = \"2040(93%)\"" }
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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT COUNT(total_freshwater_withdrawal__km_3__yr_) FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = \"428(62%)\"" }