question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
Who had a high rebound where the associated record is 11-13? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_rebounds" FROM "regular_season" WHERE "record"='11-13'; | 1-17104539-10 |
On July 8, what was the score? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "score" FROM "regular_season" WHERE "date"='July 8'; | 1-17104539-10 |
Who was the oppenent what the score was L 68-60? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "opponent" FROM "regular_season" WHERE "score"='L 68-60'; | 1-17104539-10 |
what is the winning % whre the last 5 is 3-2 and the streak is l1? | CREATE TABLE "2009_nbl_ladder_championship_round" (
"rank" real,
"team" text,
"played" real,
"win" real,
"loss" real,
"last_5" text,
"streak" text,
"pf_per_game" text,
"pa_per_game" text,
"pd_per_game" text,
"winning_pct" text
); | SELECT "winning_pct" FROM "2009_nbl_ladder_championship_round" WHERE "last_5"='3-2' AND "streak"='L1'; | 1-1711351-1 |
If high assists are under Canty (6) how much would the record be? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "record" FROM "regular_season" WHERE "high_assists"='Canty (6)'; | 1-17118657-10 |
If the score is 62-70, what are the high points? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_points" FROM "regular_season" WHERE "score"='62-70'; | 1-17118657-10 |
On which date was the location/attendance UIC Pavilion 3,829 respectively? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "date" FROM "regular_season" WHERE "location_attendance"='UIC Pavilion 3,829'; | 1-17118657-10 |
On which date is high assists Dupree (6)? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "date" FROM "regular_season" WHERE "high_assists"='Dupree (6)'; | 1-17118657-10 |
What was the local investment (in $) in the projects of the department with $912,185 BID/PRONAR investment? | CREATE TABLE "investment_and_financing" (
"department" text,
"projects" real,
"municipalities" real,
"farmers" real,
"irrigated_ha" real,
"bid_pronar_investment_us" text,
"local_investment_us" text,
"total" text
); | SELECT "local_investment_us" FROM "investment_and_financing" WHERE "bid_pronar_investment_us"='912,185'; | 1-17118006-2 |
How many farmers were included by the department with 32 projects? | CREATE TABLE "investment_and_financing" (
"department" text,
"projects" real,
"municipalities" real,
"farmers" real,
"irrigated_ha" real,
"bid_pronar_investment_us" text,
"local_investment_us" text,
"total" text
); | SELECT MAX("farmers") FROM "investment_and_financing" WHERE "projects"=32; | 1-17118006-2 |
What department irrigated 2170 Ha? | CREATE TABLE "investment_and_financing" (
"department" text,
"projects" real,
"municipalities" real,
"farmers" real,
"irrigated_ha" real,
"bid_pronar_investment_us" text,
"local_investment_us" text,
"total" text
); | SELECT "department" FROM "investment_and_financing" WHERE "irrigated_ha"=2170; | 1-17118006-2 |
What was the BID/PRONAR investment (in $) in the department that included 1326 farmers in its projects? | CREATE TABLE "investment_and_financing" (
"department" text,
"projects" real,
"municipalities" real,
"farmers" real,
"irrigated_ha" real,
"bid_pronar_investment_us" text,
"local_investment_us" text,
"total" text
); | SELECT "bid_pronar_investment_us" FROM "investment_and_financing" WHERE "farmers"=1326; | 1-17118006-2 |
What was the department that got $626,798 in local investments? | CREATE TABLE "investment_and_financing" (
"department" text,
"projects" real,
"municipalities" real,
"farmers" real,
"irrigated_ha" real,
"bid_pronar_investment_us" text,
"local_investment_us" text,
"total" text
); | SELECT "department" FROM "investment_and_financing" WHERE "local_investment_us"='626,798'; | 1-17118006-2 |
What number was the game resulting in a 5-11 record? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT MIN("game") FROM "regular_season" WHERE "record"='5-11'; | 1-17118657-8 |
How many high assists are listed for the game with a score of 68-60? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("high_assists") FROM "regular_season" WHERE "score"='68-60'; | 1-17118657-8 |
In the game resulting in a 5-11 record, who scored the high rebounds? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_rebounds" FROM "regular_season" WHERE "record"='5-11'; | 1-17118657-8 |
Who was the opponent of the game with final score won 4-1? | CREATE TABLE "january" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "opponent" FROM "january" WHERE "result"='Won 4-1'; | 1-17120964-8 |
What was the attendance at the game where Neil Liddiard was Man of the Match? | CREATE TABLE "january" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT MIN("attendance") FROM "january" WHERE "man_of_the_match"='Neil Liddiard'; | 1-17120964-8 |
What was the venue of the game that was lost 3-4? | CREATE TABLE "january" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "venue" FROM "january" WHERE "result"='Lost 3-4'; | 1-17120964-8 |
What is the venue of the game with Man of the Match Vaclav Zavoral? | CREATE TABLE "january" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "venue" FROM "january" WHERE "man_of_the_match"='Vaclav Zavoral'; | 1-17120964-8 |
How many attendance figures are given for the game where the final score was lost 5-3? | CREATE TABLE "january" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT COUNT("attendance") FROM "january" WHERE "result"='Lost 5-3'; | 1-17120964-8 |
Name the opponent for 4th | CREATE TABLE "october" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "opponent" FROM "october" WHERE "date"='4th'; | 1-17120964-5 |
Name the venue for 19th date | CREATE TABLE "october" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "venue" FROM "october" WHERE "date"='19th'; | 1-17120964-5 |
Name the result for lukas smital and home | CREATE TABLE "october" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "result" FROM "october" WHERE "man_of_the_match"='Lukas Smital' AND "venue"='Home'; | 1-17120964-5 |
Name the man of the match for 24th | CREATE TABLE "october" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "man_of_the_match" FROM "october" WHERE "date"='24th'; | 1-17120964-5 |
Name the man of the maatch for sheffield scimitars | CREATE TABLE "october" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "man_of_the_match" FROM "october" WHERE "opponent"='Sheffield Scimitars'; | 1-17120964-5 |
On the 19th, where was the venue? | CREATE TABLE "november" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "venue" FROM "november" WHERE "date"='19th'; | 1-17120964-6 |
What was the total attendance during the home game against the Swindon Wildcats? | CREATE TABLE "november" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "attendance" FROM "november" WHERE "opponent"='Swindon Wildcats' AND "venue"='Home'; | 1-17120964-6 |
On what day was Stuart Potts the Man of the Match? | CREATE TABLE "november" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "date" FROM "november" WHERE "man_of_the_match"='Stuart Potts'; | 1-17120964-6 |
At what venue did Alex Mettam/Mark Williams be named Man of the Match? | CREATE TABLE "november" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "venue" FROM "november" WHERE "man_of_the_match"='Alex Mettam/Mark Williams'; | 1-17120964-6 |
How many dates did David Savage get man of the match? | CREATE TABLE "december" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT COUNT("date") FROM "december" WHERE "man_of_the_match"='David Savage'; | 1-17120964-7 |
When the attendance was 1568, who was man of the match? | CREATE TABLE "december" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "man_of_the_match" FROM "december" WHERE "attendance"=1568; | 1-17120964-7 |
Who was the man of the match when they lost 2-4? | CREATE TABLE "december" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" real,
"competition" text,
"man_of_the_match" text
); | SELECT "man_of_the_match" FROM "december" WHERE "result"='Lost 2-4'; | 1-17120964-7 |
what was the competitoin where the opponent is sheffield scimitars? | CREATE TABLE "february" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" text,
"competition" text,
"man_of_the_match" text
); | SELECT "competition" FROM "february" WHERE "opponent"='Sheffield Scimitars'; | 1-17120964-9 |
where was the venue where the attendance was 702? | CREATE TABLE "february" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" text,
"competition" text,
"man_of_the_match" text
); | SELECT "venue" FROM "february" WHERE "attendance"='702'; | 1-17120964-9 |
what was the venue where the date was the 22nd? | CREATE TABLE "february" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" text,
"competition" text,
"man_of_the_match" text
); | SELECT "venue" FROM "february" WHERE "date"='22nd'; | 1-17120964-9 |
who was the opponent where the date was the 21st? | CREATE TABLE "february" (
"date" text,
"opponent" text,
"venue" text,
"result" text,
"attendance" text,
"competition" text,
"man_of_the_match" text
); | SELECT "opponent" FROM "february" WHERE "date"='21st'; | 1-17120964-9 |
What is the score for Milwaukee? | 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"='Milwaukee'; | 1-17121262-5 |
What was the record against Washington? | CREATE TABLE "table1_17121262_10" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("record") FROM "table1_17121262_10" WHERE "team"='Washington'; | 1-17121262-10 |
If the census ranking is 231 of 5,008, what was the population? | CREATE TABLE "communities" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "population" FROM "communities" WHERE "census_ranking"='231 of 5,008'; | 1-171236-1 |
If the area is 59.73, what is the official name? | CREATE TABLE "communities" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "official_name" FROM "communities" WHERE "area_km_2"='59.73'; | 1-171236-1 |
If the census ranking is 693 of 5,008, what is the status? | CREATE TABLE "communities" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "status" FROM "communities" WHERE "census_ranking"='693 of 5,008'; | 1-171236-1 |
With the official name Quispamsis, what is the census ranking? | CREATE TABLE "communities" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "census_ranking" FROM "communities" WHERE "official_name"='Quispamsis'; | 1-171236-1 |
What was the population for census ranking 782 of 5,008? | CREATE TABLE "communities" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "population" FROM "communities" WHERE "census_ranking"='782 of 5,008'; | 1-171236-1 |
If the area is 34.73, what is the census ranking? | CREATE TABLE "communities" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "census_ranking" FROM "communities" WHERE "area_km_2"='34.73'; | 1-171236-1 |
What are the census ranking(s) for a population of 284? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "census_ranking" FROM "parishes" WHERE "population"=284; | 1-171250-2 |
What are the census ranking(s) that have an area of 369.25 km2? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "census_ranking" FROM "parishes" WHERE "area_km_2"='369.25'; | 1-171250-2 |
What is the population that has an area of 715.58? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "population" FROM "parishes" WHERE "area_km_2"='715.58'; | 1-171250-2 |
What are that status(es) of saint-jacques? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "status" FROM "parishes" WHERE "official_name"='Saint-Jacques'; | 1-171250-2 |
What are the area(s) (km2) for saint-joseph? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "area_km_2" FROM "parishes" WHERE "official_name"='Saint-Joseph'; | 1-171250-2 |
What rank is the parish with 482.81 km^2? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "census_ranking" FROM "parishes" WHERE "area_km_2"='482.81'; | 1-171356-2 |
What status doe the area with a census ranking of 2,290 of 5,008 have? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "status" FROM "parishes" WHERE "census_ranking"='2,290 of 5,008'; | 1-171356-2 |
How many statuses are listed for the parish officially named Gagetown? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT COUNT("status") FROM "parishes" WHERE "official_name"='Gagetown'; | 1-171356-2 |
What is Petersville's census ranking? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "census_ranking" FROM "parishes" WHERE "official_name"='Petersville'; | 1-171356-2 |
What is the population of each community with city status? | CREATE TABLE "communities" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "population" FROM "communities" WHERE "status"='City'; | 1-171361-1 |
What is the name of the community with an area of 30.75 sq. km.? | CREATE TABLE "communities" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "official_name" FROM "communities" WHERE "area_km_2"='30.75'; | 1-171361-1 |
What is the area of the community with a population of 1209? | CREATE TABLE "communities" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "area_km_2" FROM "communities" WHERE "population"=1209; | 1-171361-1 |
How many population values are listed for the community with an area of 10.25 sq.km.? | CREATE TABLE "communities" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT COUNT("population") FROM "communities" WHERE "area_km_2"='10.25'; | 1-171361-1 |
Name the region 1 where region 4 for april 2, 2009 | CREATE TABLE "table1_171320_3" (
"dvd_name" text,
"ep_num" real,
"region_1" text,
"region_2_scandinavia" text,
"region_2_uk" text,
"region_4" text,
"special_features" text
); | SELECT "region_1" FROM "table1_171320_3" WHERE "region_4"='April 2, 2009'; | 1-171320-3 |
Name the region 1 for episode number 13 | CREATE TABLE "table1_171320_3" (
"dvd_name" text,
"ep_num" real,
"region_1" text,
"region_2_scandinavia" text,
"region_2_uk" text,
"region_4" text,
"special_features" text
); | SELECT "region_1" FROM "table1_171320_3" WHERE "ep_num"=13; | 1-171320-3 |
Who directed the episode titled "Episode 19"? | CREATE TABLE "table1_17152787_3" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"original_air_date" text,
"prod_code" real
); | SELECT "directed_by" FROM "table1_17152787_3" WHERE "title"='\"Episode 19\"'; | 1-17152787-3 |
How many episodes have the season number of 1? | CREATE TABLE "table1_17152787_3" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"original_air_date" text,
"prod_code" real
); | SELECT COUNT("series_num") FROM "table1_17152787_3" WHERE "season_num"=1; | 1-17152787-3 |
Who was the director of the film with the original title of "The Patience Stone"? | CREATE TABLE "submissions" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"language_s" text,
"director" text,
"result" text
); | SELECT "director" FROM "submissions" WHERE "original_title"='The Patience Stone'; | 1-17155250-1 |
For what ceremony was "Fire Dancer" not nominated? | CREATE TABLE "submissions" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"language_s" text,
"director" text,
"result" text
); | SELECT "year_ceremony" FROM "submissions" WHERE "original_title"='Fire Dancer'; | 1-17155250-1 |
What name was used for nomination for the film with an original title of "The Black Tulip"? | CREATE TABLE "submissions" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"language_s" text,
"director" text,
"result" text
); | SELECT "film_title_used_in_nomination" FROM "submissions" WHERE "original_title"='The Black Tulip'; | 1-17155250-1 |
What languages were spoken in the film "FireDancer"? | CREATE TABLE "submissions" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"language_s" text,
"director" text,
"result" text
); | SELECT "language_s" FROM "submissions" WHERE "film_title_used_in_nomination"='FireDancer'; | 1-17155250-1 |
Who was the director of the film with an original title of "16 Days in Afghanistan"? | CREATE TABLE "submissions" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"language_s" text,
"director" text,
"result" text
); | SELECT "director" FROM "submissions" WHERE "original_title"='16 Days in Afghanistan'; | 1-17155250-1 |
what is the model where the method is ha? | CREATE TABLE "tree_level_packages" (
"name" text,
"model" text,
"max_fs" text,
"tested_fs" text,
"short_description" text,
"publication" text,
"method" text,
"output" text,
"status" text
); | SELECT "model" FROM "tree_level_packages" WHERE "method"='HA'; | 1-17157367-1 |
what is the total number of model wehre the status is named geneva? | CREATE TABLE "tree_level_packages" (
"name" text,
"model" text,
"max_fs" text,
"tested_fs" text,
"short_description" text,
"publication" text,
"method" text,
"output" text,
"status" text
); | SELECT COUNT("model") FROM "tree_level_packages" WHERE "status"='Status' AND "name"='GenEva'; | 1-17157367-1 |
what is the max fs where the status is status and the method is method? | CREATE TABLE "tree_level_packages" (
"name" text,
"model" text,
"max_fs" text,
"tested_fs" text,
"short_description" text,
"publication" text,
"method" text,
"output" text,
"status" text
); | SELECT "max_fs" FROM "tree_level_packages" WHERE "status"='Status' AND "method"='Method'; | 1-17157367-1 |
what ist he output where the short description is massive? | CREATE TABLE "tree_level_packages" (
"name" text,
"model" text,
"max_fs" text,
"tested_fs" text,
"short_description" text,
"publication" text,
"method" text,
"output" text,
"status" text
); | SELECT "output" FROM "tree_level_packages" WHERE "short_description"='massive'; | 1-17157367-1 |
What was the nominated film title of শ্যামল ছায়া (shyamol chhaya)? | CREATE TABLE "table1_17156199_1" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"director" text,
"result" text
); | SELECT "film_title_used_in_nomination" FROM "table1_17156199_1" WHERE "original_title"='শ্যামল ছায়া (Shyamol Chhaya)'; | 1-17156199-1 |
What year and ceremony was the original title বৃত্তের বাইরে (britter baire)? | CREATE TABLE "table1_17156199_1" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"director" text,
"result" text
); | SELECT "year_ceremony" FROM "table1_17156199_1" WHERE "original_title"='বৃত্তের বাইরে (Britter Baire)'; | 1-17156199-1 |
How many years was the original title was স্বপ্নডানায় (swopnodanay)? | CREATE TABLE "table1_17156199_1" (
"year_ceremony" text,
"film_title_used_in_nomination" text,
"original_title" text,
"director" text,
"result" text
); | SELECT COUNT("year_ceremony") FROM "table1_17156199_1" WHERE "original_title"='স্বপ্নডানায় (Swopnodanay)'; | 1-17156199-1 |
what is the nickname founded in 1902? | CREATE TABLE "former_members" (
"institution" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"nickname" text,
"joined" real,
"left" real,
"current_conference" text
); | SELECT "nickname" FROM "former_members" WHERE "founded"=1902; | 1-1715730-2 |
where is the enrollment 4259? | CREATE TABLE "former_members" (
"institution" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"nickname" text,
"joined" real,
"left" real,
"current_conference" text
); | SELECT "location" FROM "former_members" WHERE "enrollment"=4259; | 1-1715730-2 |
what is the year union university was founded? | CREATE TABLE "former_members" (
"institution" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"nickname" text,
"joined" real,
"left" real,
"current_conference" text
); | SELECT "founded" FROM "former_members" WHERE "institution"='Union University'; | 1-1715730-2 |
What was the percentage in Manitoba in 2011? | CREATE TABLE "population" (
"province" text,
"south_asians_2001" real,
"pct_2001" text,
"south_asians_2011" real,
"pct_2011" text
); | SELECT "pct_2011" FROM "population" WHERE "province"='Manitoba'; | 1-1717824-1 |
Which province had population of 210295 South Asians in 2001? | CREATE TABLE "population" (
"province" text,
"south_asians_2001" real,
"pct_2001" text,
"south_asians_2011" real,
"pct_2011" text
); | SELECT "province" FROM "population" WHERE "south_asians_2001"=210295; | 1-1717824-1 |
What was the South Asian population in Nova Scotia in 2001? | CREATE TABLE "population" (
"province" text,
"south_asians_2001" real,
"pct_2001" text,
"south_asians_2011" real,
"pct_2011" text
); | SELECT "south_asians_2001" FROM "population" WHERE "province"='Nova Scotia'; | 1-1717824-1 |
What was the percentage in 2011 of the province that had 2.4% population in 2001? | CREATE TABLE "population" (
"province" text,
"south_asians_2001" real,
"pct_2001" text,
"south_asians_2011" real,
"pct_2011" text
); | SELECT "pct_2011" FROM "population" WHERE "pct_2001"='2.4%'; | 1-1717824-1 |
How many figures are given for total number of South Asians in 2001 for the area where they were 4.4% of population in 2011? | CREATE TABLE "population" (
"province" text,
"south_asians_2001" real,
"pct_2001" text,
"south_asians_2011" real,
"pct_2011" text
); | SELECT COUNT("south_asians_2001") FROM "population" WHERE "pct_2011"='4.4%'; | 1-1717824-1 |
How many Indians were admitted in 2001? | CREATE TABLE "immigration" (
"year" real,
"indians_admitted" real,
"pakistanis_admitted" real,
"sri_lankans_admitted" real,
"bangladeshis_admitted" real,
"nepalis_admitted" real
); | SELECT "indians_admitted" FROM "immigration" WHERE "year"=2001; | 1-1717824-3 |
What is the greatest number of Pakistanis admitted to Canada during those times when the number of Nepalis admitted was 627? | CREATE TABLE "immigration" (
"year" real,
"indians_admitted" real,
"pakistanis_admitted" real,
"sri_lankans_admitted" real,
"bangladeshis_admitted" real,
"nepalis_admitted" real
); | SELECT MAX("pakistanis_admitted") FROM "immigration" WHERE "nepalis_admitted"=627; | 1-1717824-3 |
What is the most number of Indians admitted to Canada when the number of Sri Lankans admitted was 3104? | CREATE TABLE "immigration" (
"year" real,
"indians_admitted" real,
"pakistanis_admitted" real,
"sri_lankans_admitted" real,
"bangladeshis_admitted" real,
"nepalis_admitted" real
); | SELECT MIN("indians_admitted") FROM "immigration" WHERE "sri_lankans_admitted"=3104; | 1-1717824-3 |
Name the number of tv seasons for season finale being may 24, 1994 | CREATE TABLE "seasonal_timeslots_ratings" (
"season" real,
"tv_season" text,
"regular_timeslot_edt" text,
"episode_count" real,
"season_premiere" text,
"season_finale" text,
"rank" text,
"rating" text
); | SELECT COUNT("tv_season") FROM "seasonal_timeslots_ratings" WHERE "season_finale"='May 24, 1994'; | 1-1718013-1 |
Name the number of tv seasons for season finale of may 23, 1995 | CREATE TABLE "seasonal_timeslots_ratings" (
"season" real,
"tv_season" text,
"regular_timeslot_edt" text,
"episode_count" real,
"season_premiere" text,
"season_finale" text,
"rank" text,
"rating" text
); | SELECT COUNT("tv_season") FROM "seasonal_timeslots_ratings" WHERE "season_finale"='May 23, 1995'; | 1-1718013-1 |
Name the driver/passenger for 30 | CREATE TABLE "riders" (
"position" real,
"driver_passenger" text,
"equipment" text,
"bike_no" real,
"points" real
); | SELECT COUNT("driver_passenger") FROM "riders" WHERE "position"=30; | 1-17176509-4 |
Name the max bike number of position for 30 | CREATE TABLE "riders" (
"position" real,
"driver_passenger" text,
"equipment" text,
"bike_no" real,
"points" real
); | SELECT MAX("bike_no") FROM "riders" WHERE "position"=30; | 1-17176509-4 |
Who had the most points in game 4? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "high_points" FROM "playoffs" WHERE "game"=4; | 1-17190012-12 |
Name the number of going to for thurlby, braceborough spa at departure being 16.50 | CREATE TABLE "table1_17200372_2" (
"departure" text,
"going_to" text,
"calling_at" text,
"arrival" text,
"operator" text
); | SELECT COUNT("going_to") FROM "table1_17200372_2" WHERE "calling_at"='Thurlby, Braceborough Spa' AND "departure"='16.50'; | 1-17200372-2 |
Name the departure for spalding | CREATE TABLE "table1_17200372_2" (
"departure" text,
"going_to" text,
"calling_at" text,
"arrival" text,
"operator" text
); | SELECT "departure" FROM "table1_17200372_2" WHERE "going_to"='Spalding'; | 1-17200372-2 |
who scored highest points on the game with record 27–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 "high_points" FROM "game_log" WHERE "record"='27–5'; | 1-17190012-7 |
who did highest rebounds in the game with score w 105–88 (ot) | 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 "score"='W 105–88 (OT)'; | 1-17190012-7 |
how many records were made on the game that ended with score w 121–119 (ot) | 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("record") FROM "game_log" WHERE "score"='W 121–119 (OT)'; | 1-17190012-7 |
What was the team's position when the new manager was Lucas Alcaraz? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"replaced_by" text,
"date_of_appointment" text,
"position_in_table" text
); | SELECT "position_in_table" FROM "managerial_changes" WHERE "replaced_by"='Lucas Alcaraz'; | 1-17201869-3 |
Who replaced outgoing manager José Ángel Ziganda? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"replaced_by" text,
"date_of_appointment" text,
"position_in_table" text
); | SELECT "replaced_by" FROM "managerial_changes" WHERE "outgoing_manager"='José Ángel Ziganda'; | 1-17201869-3 |
What grid did the driver who earned 19 points start at? | CREATE TABLE "classification" (
"fin_pos" real,
"car_no" real,
"driver" text,
"team" text,
"laps" real,
"time_retired" text,
"grid" real,
"laps_led" real,
"points" text
); | SELECT "grid" FROM "classification" WHERE "points"='19'; | 1-17244483-1 |
Scott Dixon had how many Grid positions? | CREATE TABLE "classification" (
"fin_pos" real,
"car_no" real,
"driver" text,
"team" text,
"laps" real,
"time_retired" text,
"grid" real,
"laps_led" real,
"points" text
); | SELECT COUNT("grid") FROM "classification" WHERE "driver"='Scott Dixon'; | 1-17244483-1 |
Car number 15 earned what time? | CREATE TABLE "classification" (
"fin_pos" real,
"car_no" real,
"driver" text,
"team" text,
"laps" real,
"time_retired" text,
"grid" real,
"laps_led" real,
"points" text
); | SELECT "time_retired" FROM "classification" WHERE "car_no"=15; | 1-17244483-1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.