question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
Name the summary for the success rate for 68.75% | CREATE TABLE "performance_summary_in_indian_premier_le" (
"year" real,
"matches" real,
"wins" real,
"losses" real,
"no_result" real,
"tied" real,
"success_rate" text,
"position" text,
"summary" text
); | SELECT "summary" FROM "performance_summary_in_indian_premier_le" WHERE "success_rate"='68.75%'; | 1-15829930-5 |
Name the least tied | CREATE TABLE "performance_summary_in_indian_premier_le" (
"year" real,
"matches" real,
"wins" real,
"losses" real,
"no_result" real,
"tied" real,
"success_rate" text,
"position" text,
"summary" text
); | SELECT MIN("tied") FROM "performance_summary_in_indian_premier_le"; | 1-15829930-5 |
Name the least wins of 56.25% | CREATE TABLE "performance_summary_in_indian_premier_le" (
"year" real,
"matches" real,
"wins" real,
"losses" real,
"no_result" real,
"tied" real,
"success_rate" text,
"position" text,
"summary" text
); | SELECT MIN("wins") FROM "performance_summary_in_indian_premier_le" WHERE "success_rate"='56.25%'; | 1-15829930-5 |
How many locomotives have a name of City of Birmingham | CREATE TABLE "locomotives" (
"no" real,
"name" text,
"livery" text,
"locomotive_type" text,
"wheel_arrangement" text,
"builder" text,
"year_built" real,
"status" text
); | SELECT COUNT("no") FROM "locomotives" WHERE "name"='City of Birmingham'; | 1-15827397-1 |
How many locomotives have a livery that is highland railway green | CREATE TABLE "locomotives" (
"no" real,
"name" text,
"livery" text,
"locomotive_type" text,
"wheel_arrangement" text,
"builder" text,
"year_built" real,
"status" text
); | SELECT COUNT("name") FROM "locomotives" WHERE "livery"='Highland Railway green'; | 1-15827397-1 |
Which locomotive type has a status in static display | CREATE TABLE "locomotives" (
"no" real,
"name" text,
"livery" text,
"locomotive_type" text,
"wheel_arrangement" text,
"builder" text,
"year_built" real,
"status" text
); | SELECT "locomotive_type" FROM "locomotives" WHERE "status"='Static display'; | 1-15827397-1 |
What is the maximum number of points against when the attendance was 47678? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"result" text,
"record" text,
"opponent" text,
"points_for" real,
"points_against" real,
"first_downs" real,
"attendance" real
); | SELECT MAX("points_against") FROM "schedule" WHERE "attendance"=47678; | 1-15847691-2 |
What was the total number of first down on October 23? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"result" text,
"record" text,
"opponent" text,
"points_for" real,
"points_against" real,
"first_downs" real,
"attendance" real
); | SELECT COUNT("first_downs") FROM "schedule" WHERE "date"='October 23'; | 1-15847691-2 |
Name the most series number for giula sandler | CREATE TABLE "table1_15838081_3" (
"season_num" real,
"series_num" real,
"title" text,
"director_s" text,
"writer_s" text,
"original_airdate" text
); | SELECT MAX("series_num") FROM "table1_15838081_3" WHERE "writer_s"='Giula Sandler'; | 1-15838081-3 |
Name the number of season number for jeff truman | CREATE TABLE "table1_15838081_3" (
"season_num" real,
"series_num" real,
"title" text,
"director_s" text,
"writer_s" text,
"original_airdate" text
); | SELECT COUNT("season_num") FROM "table1_15838081_3" WHERE "writer_s"='Jeff Truman'; | 1-15838081-3 |
Name the minimum enrollment for montana tech of the university of montana | CREATE TABLE "institutions" (
"school" text,
"location" text,
"control" text,
"type" text,
"enrollment" real,
"founded" real
); | SELECT MIN("enrollment") FROM "institutions" WHERE "school"='Montana Tech of the University of Montana'; | 1-15851155-1 |
Name the location when control is private and founded is 1870 | CREATE TABLE "institutions" (
"school" text,
"location" text,
"control" text,
"type" text,
"enrollment" real,
"founded" real
); | SELECT "location" FROM "institutions" WHERE "control"='Private' AND "founded"=1870; | 1-15851155-1 |
Who directed the TV broadcast s03e19? | CREATE TABLE "table1_15861776_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"originalairdate" text,
"tv_broadcast" text
); | SELECT "directed_by" FROM "table1_15861776_1" WHERE "tv_broadcast"='S03E19'; | 1-15861776-1 |
What episode in the series is TV broadcast s03e20? | CREATE TABLE "table1_15861776_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"originalairdate" text,
"tv_broadcast" text
); | SELECT "no_in_series" FROM "table1_15861776_1" WHERE "tv_broadcast"='S03E20'; | 1-15861776-1 |
WHAT WAS THE SCORE FOR GAME 31? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "score" FROM "game_log" WHERE "game"=31; | 1-15869204-6 |
WHO DID THE RAPTORS PLAY ON JANUARY 9? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "team" FROM "game_log" WHERE "date"='January 9'; | 1-15869204-6 |
Name thenames for 2002-04-01 | CREATE TABLE "former_special_cities_now_core_or_design" (
"name" text,
"japanese" text,
"date_of_designation" text,
"date_of_reclassification" text,
"region" text,
"prefecture" text
); | SELECT "name" FROM "former_special_cities_now_core_or_design" WHERE "date_of_designation"='2002-04-01'; | 1-1585609-2 |
Name all the date of designations for kurume | CREATE TABLE "former_special_cities_now_core_or_design" (
"name" text,
"japanese" text,
"date_of_designation" text,
"date_of_reclassification" text,
"region" text,
"prefecture" text
); | SELECT "date_of_designation" FROM "former_special_cities_now_core_or_design" WHERE "name"='Kurume'; | 1-1585609-2 |
Name the total number of japanese for amagasaki | CREATE TABLE "former_special_cities_now_core_or_design" (
"name" text,
"japanese" text,
"date_of_designation" text,
"date_of_reclassification" text,
"region" text,
"prefecture" text
); | SELECT COUNT("japanese") FROM "former_special_cities_now_core_or_design" WHERE "name"='Amagasaki'; | 1-1585609-2 |
Name the region for iwate | CREATE TABLE "former_special_cities_now_core_or_design" (
"name" text,
"japanese" text,
"date_of_designation" text,
"date_of_reclassification" text,
"region" text,
"prefecture" text
); | SELECT "region" FROM "former_special_cities_now_core_or_design" WHERE "prefecture"='Iwate'; | 1-1585609-2 |
Who wrote the "Head of State" episode? | CREATE TABLE "table1_15861819_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"originalairdate" text,
"tv_broadcast" text
); | SELECT "written_by" FROM "table1_15861819_1" WHERE "title"='\"Head of State\"'; | 1-15861819-1 |
The "Head of State" episode was authored by which person? | CREATE TABLE "table1_15861819_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"originalairdate" text,
"tv_broadcast" text
); | SELECT "written_by" FROM "table1_15861819_1" WHERE "title"='\"Head of State\"'; | 1-15861819-1 |
Who was the director of the episode "graduation day: class of 2105"? | CREATE TABLE "table1_15861819_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"originalairdate" text,
"tv_broadcast" text
); | SELECT "directed_by" FROM "table1_15861819_1" WHERE "title"='\"Graduation Day: Class of 2105\"'; | 1-15861819-1 |
Who scored the most rebounds in the game against Chicago? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_rebounds" FROM "game_log" WHERE "team"='Chicago'; | 1-15869204-9 |
What were the dates of the games where Jalen Rose (32) had the highest points? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "date" FROM "game_log" WHERE "high_points"='Jalen Rose (32)'; | 1-15872814-5 |
What is the location and total attendance for games played against New Orleans? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "location_attendance" FROM "game_log" WHERE "team"='New Orleans'; | 1-15872814-5 |
How many teams are listed for February 18? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("team") FROM "game_log" WHERE "date"='February 18'; | 1-15869204-7 |
What were the high rebounds on February 24? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_rebounds" FROM "game_log" WHERE "date"='February 24'; | 1-15869204-7 |
What was the score in game 51? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "score" FROM "game_log" WHERE "game"=51; | 1-15869204-7 |
What was the score when they played against San Antonio? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "score" FROM "game_log" WHERE "team"='San Antonio'; | 1-15869204-7 |
Who was the high point scorer in game number 68? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_points" FROM "game_log" WHERE "game"=68; | 1-15869204-8 |
How many players had the most assists against New Jersey? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("high_assists") FROM "game_log" WHERE "team"='New Jersey'; | 1-15873014-3 |
How many games were played in the season? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT MAX("game") FROM "game_log"; | 1-15873014-3 |
What team had high assists Rafer Alston (5)? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "team" FROM "game_log" WHERE "high_assists"='Rafer Alston (5)'; | 1-15872814-7 |
Who has the most assists on January 3? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_assists" FROM "game_log" WHERE "date"='January 3'; | 1-15873014-5 |
Who is the rector of the residence hall who's mascot is the phoxes? | CREATE TABLE "references" (
"residence_hall" text,
"sex" text,
"established" real,
"rector" text,
"campus" text,
"capacity" real,
"colors" text,
"mascot" text
); | SELECT "rector" FROM "references" WHERE "mascot"='Phoxes'; | 1-15873547-1 |
What is the mascot with the colors green and navy? | CREATE TABLE "references" (
"residence_hall" text,
"sex" text,
"established" real,
"rector" text,
"campus" text,
"capacity" real,
"colors" text,
"mascot" text
); | SELECT "mascot" FROM "references" WHERE "colors"='Green and Navy'; | 1-15873547-1 |
What residence hall has the vermin mascot? | CREATE TABLE "references" (
"residence_hall" text,
"sex" text,
"established" real,
"rector" text,
"campus" text,
"capacity" real,
"colors" text,
"mascot" text
); | SELECT "residence_hall" FROM "references" WHERE "mascot"='Vermin'; | 1-15873547-1 |
What are the colors of Howard Hall? | CREATE TABLE "references" (
"residence_hall" text,
"sex" text,
"established" real,
"rector" text,
"campus" text,
"capacity" real,
"colors" text,
"mascot" text
); | SELECT "colors" FROM "references" WHERE "residence_hall"='Howard Hall'; | 1-15873547-1 |
What is the content of la7 television service? | CREATE TABLE "national_terrestrial_and_sky_tg24" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"package_option" text
); | SELECT "content" FROM "national_terrestrial_and_sky_tg24" WHERE "television_service"='LA7'; | 1-15887683-1 |
What is the content of the rai 1 television service? | CREATE TABLE "national_terrestrial_and_sky_tg24" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"package_option" text
); | SELECT "content" FROM "national_terrestrial_and_sky_tg24" WHERE "television_service"='Rai 1'; | 1-15887683-1 |
What are the package/options when the TV service is rai 3? | CREATE TABLE "national_terrestrial_and_sky_tg24" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"package_option" text
); | SELECT "package_option" FROM "national_terrestrial_and_sky_tg24" WHERE "television_service"='Rai 3'; | 1-15887683-1 |
What high definition television options are available for Italia 1? | CREATE TABLE "national_terrestrial_and_sky_tg24" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"package_option" text
); | SELECT "hdtv" FROM "national_terrestrial_and_sky_tg24" WHERE "television_service"='Italia 1'; | 1-15887683-1 |
How many values of HDTV apply when television service is elite shopping tv? | CREATE TABLE "shopping" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"package_option" text
); | SELECT COUNT("hdtv") FROM "shopping" WHERE "television_service"='Elite Shopping TV'; | 1-15887683-16 |
How many countries have content of arte? | CREATE TABLE "shopping" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"package_option" text
); | SELECT COUNT("country") FROM "shopping" WHERE "content"='arte'; | 1-15887683-16 |
How many values of HDTV correspond to television service of la sorgente sat 1? | CREATE TABLE "shopping" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"package_option" text
); | SELECT COUNT("hdtv") FROM "shopping" WHERE "television_service"='La Sorgente Sat 1'; | 1-15887683-16 |
What values of HDTV correspond to n° of 862? | CREATE TABLE "shopping" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"package_option" text
); | SELECT "hdtv" FROM "shopping" WHERE "n"=862; | 1-15887683-16 |
Name the content for sky famiglia for italian and dar 16:9 for mtv hits | CREATE TABLE "music" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "content" FROM "music" WHERE "package_option"='Sky Famiglia' AND "language"='Italian' AND "dar"='16:9' AND "television_service"='MTV Hits'; | 1-15887683-10 |
Name the least number for mydeejay | CREATE TABLE "music" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT MIN("n") FROM "music" WHERE "television_service"='myDeejay'; | 1-15887683-10 |
Name the number of package options for music box italia | CREATE TABLE "music" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT COUNT("package_option") FROM "music" WHERE "television_service"='Music Box Italia'; | 1-15887683-10 |
Name the hdtv for sky famiglia and dar 16:9 for mydeejay | CREATE TABLE "music" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "hdtv" FROM "music" WHERE "package_option"='Sky Famiglia' AND "dar"='16:9' AND "television_service"='myDeejay'; | 1-15887683-10 |
Name the dar for mtv rocks | CREATE TABLE "music" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "dar" FROM "music" WHERE "television_service"='MTV Rocks'; | 1-15887683-10 |
Name the ppv for sky famiglia and dar 16:9 for mtv dance | CREATE TABLE "music" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "ppv" FROM "music" WHERE "package_option"='Sky Famiglia' AND "dar"='16:9' AND "television_service"='MTV Dance'; | 1-15887683-10 |
Name the dar for telenord | CREATE TABLE "others" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"package_option" text
); | SELECT "dar" FROM "others" WHERE "television_service"='Telenord'; | 1-15887683-17 |
Name the total number of hdtv for eurotic tv | CREATE TABLE "others" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"package_option" text
); | SELECT COUNT("hdtv") FROM "others" WHERE "television_service"='Eurotic TV'; | 1-15887683-17 |
Name the dar for 912 | CREATE TABLE "others" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"package_option" text
); | SELECT "dar" FROM "others" WHERE "n"=912; | 1-15887683-17 |
How many times was something listed under content when the television was R-light? | CREATE TABLE "conto_tv_teleitalia" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT COUNT("content") FROM "conto_tv_teleitalia" WHERE "television_service"='R-LIGHT'; | 1-15887683-19 |
Was there PPV when the service was SCT? | CREATE TABLE "conto_tv_teleitalia" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "ppv" FROM "conto_tv_teleitalia" WHERE "television_service"='SCT'; | 1-15887683-19 |
Was there HDTV when the service was Privè? | CREATE TABLE "conto_tv_teleitalia" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "hdtv" FROM "conto_tv_teleitalia" WHERE "television_service"='PRIVÈ'; | 1-15887683-19 |
In what laguage was Contotv 5? | CREATE TABLE "conto_tv_teleitalia" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "language" FROM "conto_tv_teleitalia" WHERE "television_service"='ContoTV 5'; | 1-15887683-19 |
What's the content of the Tutti i Pacchetti + Sky HD package? | CREATE TABLE "sport" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "content" FROM "sport" WHERE "package_option"='Tutti i pacchetti + Sky HD'; | 1-15887683-3 |
What package offers Fox Sports HD? | CREATE TABLE "sport" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "package_option" FROM "sport" WHERE "television_service"='FOX Sports HD'; | 1-15887683-3 |
What packages offer the Cartello Promozionale Sky HD service? | CREATE TABLE "sport" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "package_option" FROM "sport" WHERE "television_service"='Cartello promozionale Sky HD'; | 1-15887683-3 |
How many different contents are offered by the Qualsiasi Tranne Sky HD package? | CREATE TABLE "sport" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT COUNT("content") FROM "sport" WHERE "package_option"='qualsiasi tranne Sky HD'; | 1-15887683-3 |
What's the content offered by the package number 204? | CREATE TABLE "sport" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "content" FROM "sport" WHERE "n"=204; | 1-15887683-3 |
How many PPV values are listed for when television service Sky Cinema 1? | CREATE TABLE "cinema" (
"n" text,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT COUNT("ppv") FROM "cinema" WHERE "television_service"='Sky Cinema 1'; | 1-15887683-5 |
What DAR is available for n. 336 in Italian? | CREATE TABLE "cinema" (
"n" text,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "dar" FROM "cinema" WHERE "n"='336' AND "language"='Italian'; | 1-15887683-5 |
What are the values of n for cinema content provided by Sky Cinema +24 on its Sky Cinema package? | CREATE TABLE "cinema" (
"n" text,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "n" FROM "cinema" WHERE "package_option"='Sky Cinema' AND "content"='cinema' AND "television_service"='Sky Cinema +24'; | 1-15887683-5 |
What language is Sky Cinema Passion television service n. 308? | CREATE TABLE "cinema" (
"n" text,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "language" FROM "cinema" WHERE "television_service"='Sky Cinema Passion' AND "n"='308'; | 1-15887683-5 |
What package offers cinema content and is n. 333? | CREATE TABLE "cinema" (
"n" text,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "package_option" FROM "cinema" WHERE "content"='cinema' AND "n"='333'; | 1-15887683-5 |
Name the total number of dar for disney channel and number is 613 | CREATE TABLE "children" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT COUNT("dar") FROM "children" WHERE "television_service"='Disney Channel' AND "n"=613; | 1-15887683-9 |
Name the country when dar is 16:9 for italian english for disney xd +2 | CREATE TABLE "children" (
"n" real,
"television_service" text,
"country" text,
"language" text,
"content" text,
"dar" text,
"hdtv" text,
"ppv" text,
"package_option" text
); | SELECT "country" FROM "children" WHERE "dar"='16:9' AND "language"='Italian English' AND "television_service"='Disney XD +2'; | 1-15887683-9 |
Who was the player with a bowling best of 2/43? | CREATE TABLE "first_class_bowling_statistics" (
"player" text,
"matches" real,
"overs" text,
"maidens" real,
"runs" real,
"wickets" real,
"average" text,
"economy" text,
"5w" real,
"10w" real,
"best_bowling" text
); | SELECT "player" FROM "first_class_bowling_statistics" WHERE "best_bowling"='2/43'; | 1-15893020-2 |
What is the highest number of maidens when the bowling best was 1/13? | CREATE TABLE "first_class_bowling_statistics" (
"player" text,
"matches" real,
"overs" text,
"maidens" real,
"runs" real,
"wickets" real,
"average" text,
"economy" text,
"5w" real,
"10w" real,
"best_bowling" text
); | SELECT MAX("maidens") FROM "first_class_bowling_statistics" WHERE "best_bowling"='1/13'; | 1-15893020-2 |
How many overs did Oliver Hannon-Dalby have? | CREATE TABLE "first_class_bowling_statistics" (
"player" text,
"matches" real,
"overs" text,
"maidens" real,
"runs" real,
"wickets" real,
"average" text,
"economy" text,
"5w" real,
"10w" real,
"best_bowling" text
); | SELECT "overs" FROM "first_class_bowling_statistics" WHERE "player"='Oliver Hannon-Dalby'; | 1-15893020-2 |
What is the highest number of 5w when there was a 21.33 average? | CREATE TABLE "first_class_bowling_statistics" (
"player" text,
"matches" real,
"overs" text,
"maidens" real,
"runs" real,
"wickets" real,
"average" text,
"economy" text,
"5w" real,
"10w" real,
"best_bowling" text
); | SELECT MAX("5w") FROM "first_class_bowling_statistics" WHERE "average"='21.33'; | 1-15893020-2 |
What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)? | CREATE TABLE "freshwater_withdrawal_by_country_and_sec" (
"country" text,
"total_freshwater_withdrawal_km_3_yr" text,
"per_capita_withdrawal_m_3_p_yr" real,
"domestic_use_m_3_p_yr_in_pct" text,
"industrial_use_m_3_p_yr_in_pct" text,
"agricultural_use_m_3_p_yr_in_pct" text
); | SELECT "country" FROM "freshwater_withdrawal_by_country_and_sec" WHERE "agricultural_use_m_3_p_yr_in_pct"='2040(93%)'; | 1-15909409-2 |
How many countries had a per capita withdrawal (m 3 /p/yr) of 372? | CREATE TABLE "freshwater_withdrawal_by_country_and_sec" (
"country" text,
"total_freshwater_withdrawal_km_3_yr" text,
"per_capita_withdrawal_m_3_p_yr" real,
"domestic_use_m_3_p_yr_in_pct" text,
"industrial_use_m_3_p_yr_in_pct" text,
"agricultural_use_m_3_p_yr_in_pct" text
); | SELECT COUNT("country") FROM "freshwater_withdrawal_by_country_and_sec" WHERE "per_capita_withdrawal_m_3_p_yr"=372; | 1-15909409-2 |
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 "freshwater_withdrawal_by_country_and_sec" (
"country" text,
"total_freshwater_withdrawal_km_3_yr" text,
"per_capita_withdrawal_m_3_p_yr" real,
"domestic_use_m_3_p_yr_in_pct" text,
"industrial_use_m_3_p_yr_in_pct" text,
"agricultural_use_m_3_p_yr_in_pct" text
); | SELECT COUNT("total_freshwater_withdrawal_km_3_yr") FROM "freshwater_withdrawal_by_country_and_sec" WHERE "agricultural_use_m_3_p_yr_in_pct"='428(62%)'; | 1-15909409-2 |
In Pakistan, what was the total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 1029(96%)? | CREATE TABLE "freshwater_withdrawal_by_country_and_sec" (
"country" text,
"total_freshwater_withdrawal_km_3_yr" text,
"per_capita_withdrawal_m_3_p_yr" real,
"domestic_use_m_3_p_yr_in_pct" text,
"industrial_use_m_3_p_yr_in_pct" text,
"agricultural_use_m_3_p_yr_in_pct" text
); | SELECT "total_freshwater_withdrawal_km_3_yr" FROM "freshwater_withdrawal_by_country_and_sec" WHERE "agricultural_use_m_3_p_yr_in_pct"='1029(96%)'; | 1-15909409-2 |
What was the country in which the agricultural use (m 3 /p/yr)(in %) was 794(86%)? | CREATE TABLE "freshwater_withdrawal_by_country_and_sec" (
"country" text,
"total_freshwater_withdrawal_km_3_yr" text,
"per_capita_withdrawal_m_3_p_yr" real,
"domestic_use_m_3_p_yr_in_pct" text,
"industrial_use_m_3_p_yr_in_pct" text,
"agricultural_use_m_3_p_yr_in_pct" text
); | SELECT "country" FROM "freshwater_withdrawal_by_country_and_sec" WHERE "agricultural_use_m_3_p_yr_in_pct"='794(86%)'; | 1-15909409-2 |
In how many countries was the total freshwater withdrawal (km 3 /yr) 169.39? | CREATE TABLE "freshwater_withdrawal_by_country_and_sec" (
"country" text,
"total_freshwater_withdrawal_km_3_yr" text,
"per_capita_withdrawal_m_3_p_yr" real,
"domestic_use_m_3_p_yr_in_pct" text,
"industrial_use_m_3_p_yr_in_pct" text,
"agricultural_use_m_3_p_yr_in_pct" text
); | SELECT COUNT("country") FROM "freshwater_withdrawal_by_country_and_sec" WHERE "total_freshwater_withdrawal_km_3_yr"='169.39'; | 1-15909409-2 |
Name the date of winning score being 67-67-63=197 | CREATE TABLE "european_tour_wins_7" (
"no" real,
"date" text,
"tournament" text,
"winning_score" text,
"to_par" text,
"margin_of_victory" text,
"runner_s_up" text
); | SELECT "date" FROM "european_tour_wins_7" WHERE "winning_score"='67-67-63=197'; | 1-1590652-4 |
Name the runners up for when tournament is wgc-accenture match play championship | CREATE TABLE "european_tour_wins_7" (
"no" real,
"date" text,
"tournament" text,
"winning_score" text,
"to_par" text,
"margin_of_victory" text,
"runner_s_up" text
); | SELECT "runner_s_up" FROM "european_tour_wins_7" WHERE "tournament"='WGC-Accenture Match Play Championship'; | 1-1590652-4 |
Name the total number when date is 30 may 2010 | CREATE TABLE "european_tour_wins_7" (
"no" real,
"date" text,
"tournament" text,
"winning_score" text,
"to_par" text,
"margin_of_victory" text,
"runner_s_up" text
); | SELECT COUNT("no") FROM "european_tour_wins_7" WHERE "date"='30 May 2010'; | 1-1590652-4 |
Name th margin of victory when date is 10 jul 2011 | CREATE TABLE "european_tour_wins_7" (
"no" real,
"date" text,
"tournament" text,
"winning_score" text,
"to_par" text,
"margin_of_victory" text,
"runner_s_up" text
); | SELECT "margin_of_victory" FROM "european_tour_wins_7" WHERE "date"='10 Jul 2011'; | 1-1590652-4 |
Name the most number when tournament is madrid masters | CREATE TABLE "european_tour_wins_7" (
"no" real,
"date" text,
"tournament" text,
"winning_score" text,
"to_par" text,
"margin_of_victory" text,
"runner_s_up" text
); | SELECT MAX("no") FROM "european_tour_wins_7" WHERE "tournament"='Madrid Masters'; | 1-1590652-4 |
Name who knows the most about the guest host panels for episode 5 | CREATE TABLE "series_2" (
"episode_number" real,
"air_date" text,
"guest_host" text,
"musical_guest_song_performed" text,
"who_knows_the_most_about_the_guest_host_panelists" text
); | SELECT "who_knows_the_most_about_the_guest_host_panelists" FROM "series_2" WHERE "episode_number"=5; | 1-1590967-2 |
Name the number of panelists for 20 january 2006 air date | CREATE TABLE "series_2" (
"episode_number" real,
"air_date" text,
"guest_host" text,
"musical_guest_song_performed" text,
"who_knows_the_most_about_the_guest_host_panelists" text
); | SELECT COUNT("who_knows_the_most_about_the_guest_host_panelists") FROM "series_2" WHERE "air_date"='20 January 2006'; | 1-1590967-2 |
Name the number of music guests for jade goody and kenzie | CREATE TABLE "series_2" (
"episode_number" real,
"air_date" text,
"guest_host" text,
"musical_guest_song_performed" text,
"who_knows_the_most_about_the_guest_host_panelists" text
); | SELECT COUNT("musical_guest_song_performed") FROM "series_2" WHERE "who_knows_the_most_about_the_guest_host_panelists"='Jade Goody and Kenzie'; | 1-1590967-2 |
Name the panelists for guest host jamie oliver | CREATE TABLE "series_2" (
"episode_number" real,
"air_date" text,
"guest_host" text,
"musical_guest_song_performed" text,
"who_knows_the_most_about_the_guest_host_panelists" text
); | SELECT "who_knows_the_most_about_the_guest_host_panelists" FROM "series_2" WHERE "guest_host"='Jamie Oliver'; | 1-1590967-2 |
Name the most episode numbers of 6 january 2006 | CREATE TABLE "series_2" (
"episode_number" real,
"air_date" text,
"guest_host" text,
"musical_guest_song_performed" text,
"who_knows_the_most_about_the_guest_host_panelists" text
); | SELECT MAX("episode_number") FROM "series_2" WHERE "air_date"='6 January 2006'; | 1-1590967-2 |
Who was the musical guest and what song was performed when Dominic Wood and Nikki Grahame were the panelists? | CREATE TABLE "series_3" (
"episode_number" real,
"air_date" text,
"guest_host" text,
"musical_guest_song_performed" text,
"who_knows_the_most_about_the_guest_host_panelists" text
); | SELECT "musical_guest_song_performed" FROM "series_3" WHERE "who_knows_the_most_about_the_guest_host_panelists"='Dominic Wood and Nikki Grahame'; | 1-1590967-3 |
On what date were Gary Lucy and Susie Verrico the panelists. | CREATE TABLE "series_3" (
"episode_number" real,
"air_date" text,
"guest_host" text,
"musical_guest_song_performed" text,
"who_knows_the_most_about_the_guest_host_panelists" text
); | SELECT "air_date" FROM "series_3" WHERE "who_knows_the_most_about_the_guest_host_panelists"='Gary Lucy and Susie Verrico'; | 1-1590967-3 |
List the date when Jeremy Edwards and Grace Adams-Short were the panelists. | CREATE TABLE "series_3" (
"episode_number" real,
"air_date" text,
"guest_host" text,
"musical_guest_song_performed" text,
"who_knows_the_most_about_the_guest_host_panelists" text
); | SELECT "air_date" FROM "series_3" WHERE "who_knows_the_most_about_the_guest_host_panelists"='Jeremy Edwards and Grace Adams-Short'; | 1-1590967-3 |
Who was the musical guest and what song was performed when Matt Willis and Chantelle Houghton were the panelists? | CREATE TABLE "series_3" (
"episode_number" real,
"air_date" text,
"guest_host" text,
"musical_guest_song_performed" text,
"who_knows_the_most_about_the_guest_host_panelists" text
); | SELECT "musical_guest_song_performed" FROM "series_3" WHERE "who_knows_the_most_about_the_guest_host_panelists"='Matt Willis and Chantelle Houghton'; | 1-1590967-3 |
How many validations are listed for the iin range 36? | CREATE TABLE "table1_15905399_1" (
"issuing_network" text,
"iin_ranges" text,
"active" text,
"length" text,
"validation" text
); | SELECT COUNT("validation") FROM "table1_15905399_1" WHERE "iin_ranges"='36'; | 1-15905399-1 |
What is the validation for iin ranges 5610, 560221-560225? | CREATE TABLE "table1_15905399_1" (
"issuing_network" text,
"iin_ranges" text,
"active" text,
"length" text,
"validation" text
); | SELECT "validation" FROM "table1_15905399_1" WHERE "iin_ranges"='5610, 560221-560225'; | 1-15905399-1 |
What is the length for iin range 51-55? | CREATE TABLE "table1_15905399_1" (
"issuing_network" text,
"iin_ranges" text,
"active" text,
"length" text,
"validation" text
); | SELECT "length" FROM "table1_15905399_1" WHERE "iin_ranges"='51-55'; | 1-15905399-1 |
Is the iin range 4 active? | CREATE TABLE "table1_15905399_1" (
"issuing_network" text,
"iin_ranges" text,
"active" text,
"length" text,
"validation" text
); | SELECT "active" FROM "table1_15905399_1" WHERE "iin_ranges"='4'; | 1-15905399-1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.