question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
Name the season for position 4th | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team" text,
"races" real,
"wins" real,
"poles" real,
"f_laps" real,
"podiums" real,
"points" real,
"position" text
); | SELECT COUNT("season") FROM "career_summary" WHERE "position"='4th'; | 1-25375093-1 |
Name the least f/laps | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team" text,
"races" real,
"wins" real,
"poles" real,
"f_laps" real,
"podiums" real,
"points" real,
"position" text
); | SELECT MIN("f_laps") FROM "career_summary"; | 1-25375093-1 |
Name the least podiums for 9th position | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team" text,
"races" real,
"wins" real,
"poles" real,
"f_laps" real,
"podiums" real,
"points" real,
"position" text
); | SELECT MIN("podiums") FROM "career_summary" WHERE "position"='9th'; | 1-25375093-1 |
How many results are listed for shot PCT Where PA is 79? | CREATE TABLE "round_robin_standings" (
"locale" text,
"skip" text,
"w" real,
"l" real,
"pf" real,
"pa" real,
"ends_won" real,
"ends_lost" real,
"blank_ends" real,
"stolen_ends" real,
"shot_pct" real
); | SELECT COUNT("shot_pct") FROM "round_robin_standings" WHERE "pa"=79; | 1-25381437-2 |
Where were stolen ends recorded as 15? | CREATE TABLE "round_robin_standings" (
"locale" text,
"skip" text,
"w" real,
"l" real,
"pf" real,
"pa" real,
"ends_won" real,
"ends_lost" real,
"blank_ends" real,
"stolen_ends" real,
"shot_pct" real
); | SELECT "locale" FROM "round_robin_standings" WHERE "stolen_ends"=15; | 1-25381437-2 |
What was the SlNo no of contact person SDE (P), Thiruppattur? | CREATE TABLE "karaikudi_ssa_bsnl" (
"sl_no" real,
"name_of_the_city" text,
"address" text,
"contact_person" text,
"telephone_no" text,
"facilities_offered" text
); | SELECT "sl_no" FROM "karaikudi_ssa_bsnl" WHERE "contact_person"='SDE (P), Thiruppattur'; | 1-25383715-1 |
When did the episode "rowley 1898" air? | CREATE TABLE "table1_25390694_2" (
"series_num" real,
"title" text,
"director" text,
"writer" text,
"air_date" text,
"production_code" real
); | SELECT "air_date" FROM "table1_25390694_2" WHERE "title"='\"Rowley 1898\"'; | 1-25390694-2 |
What was the production code of the episode written by Brendan Cowell? | CREATE TABLE "table1_25390694_2" (
"series_num" real,
"title" text,
"director" text,
"writer" text,
"air_date" text,
"production_code" real
); | SELECT "production_code" FROM "table1_25390694_2" WHERE "writer"='Brendan Cowell'; | 1-25390694-2 |
How many f/laps did Pedro Nunes have when he was in 20th position? | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team" text,
"races" real,
"wins" real,
"poles" real,
"f_laps" real,
"podiums" real,
"points" text,
"position" text
); | SELECT COUNT("f_laps") FROM "career_summary" WHERE "position"='20th'; | 1-25386974-1 |
How many f/laps did Pedro Nunes have when he was at the gp3 series? | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team" text,
"races" real,
"wins" real,
"poles" real,
"f_laps" real,
"podiums" real,
"points" text,
"position" text
); | SELECT "f_laps" FROM "career_summary" WHERE "series"='GP3 Series'; | 1-25386974-1 |
What is the fewest number of races Pedro Nunes completed in any series? | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team" text,
"races" real,
"wins" real,
"poles" real,
"f_laps" real,
"podiums" real,
"points" text,
"position" text
); | SELECT MIN("races") FROM "career_summary"; | 1-25386974-1 |
What is the most podiums Pedro Nunes had when in 17th position? | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team" text,
"races" real,
"wins" real,
"poles" real,
"f_laps" real,
"podiums" real,
"points" text,
"position" text
); | SELECT MAX("podiums") FROM "career_summary" WHERE "position"='17th'; | 1-25386974-1 |
What was the founding university of the organization Tau Epsilon Phi 1? | CREATE TABLE "jewish" (
"letters" text,
"organization" text,
"nickname" text,
"founding_date" text,
"founding_university" text,
"type" text
); | SELECT "founding_university" FROM "jewish" WHERE "organization"='Tau Epsilon Phi 1'; | 1-2538117-5 |
What was the founding date for the "AEPI"? | CREATE TABLE "jewish" (
"letters" text,
"organization" text,
"nickname" text,
"founding_date" text,
"founding_university" text,
"type" text
); | SELECT "founding_date" FROM "jewish" WHERE "nickname"='\"AEPi\"'; | 1-2538117-5 |
What type is σαεπ? | CREATE TABLE "jewish" (
"letters" text,
"organization" text,
"nickname" text,
"founding_date" text,
"founding_university" text,
"type" text
); | SELECT "type" FROM "jewish" WHERE "letters"='ΣΑΕΠ'; | 1-2538117-5 |
What was the founding university of αεφ? | CREATE TABLE "jewish" (
"letters" text,
"organization" text,
"nickname" text,
"founding_date" text,
"founding_university" text,
"type" text
); | SELECT "founding_university" FROM "jewish" WHERE "letters"='ΑΕΦ'; | 1-2538117-5 |
What is the type if the organization name is Gamma RHO Lambda 1? | CREATE TABLE "lgbt" (
"letters" text,
"organization" text,
"nickname" text,
"founding_date" text,
"founding_university" text,
"type" text
); | SELECT "type" FROM "lgbt" WHERE "organization"='Gamma Rho Lambda 1'; | 1-2538117-7 |
If the letters is φαν, what is the founding date? | CREATE TABLE "lgbt" (
"letters" text,
"organization" text,
"nickname" text,
"founding_date" text,
"founding_university" text,
"type" text
); | SELECT "founding_date" FROM "lgbt" WHERE "letters"='ΦΑΝ'; | 1-2538117-7 |
If the founding university is in Charlotte, NC, what is the nickname? | CREATE TABLE "lgbt" (
"letters" text,
"organization" text,
"nickname" text,
"founding_date" text,
"founding_university" text,
"type" text
); | SELECT "nickname" FROM "lgbt" WHERE "founding_university"='Charlotte, NC'; | 1-2538117-7 |
What is the founding date if the nickname is '"Canes", "k-psis", "Diamonds", or "Angels"? | CREATE TABLE "lgbt" (
"letters" text,
"organization" text,
"nickname" text,
"founding_date" text,
"founding_university" text,
"type" text
); | SELECT "founding_date" FROM "lgbt" WHERE "nickname"='\"Canes\", \"K-PSIs\", \"Diamonds\", or \"Angels\"'; | 1-2538117-7 |
What is the founding date if the letters are κψκ? | CREATE TABLE "lgbt" (
"letters" text,
"organization" text,
"nickname" text,
"founding_date" text,
"founding_university" text,
"type" text
); | SELECT "founding_date" FROM "lgbt" WHERE "letters"='ΚΨΚ'; | 1-2538117-7 |
If the founding university is in Washington, D.C., what was the founding date? | CREATE TABLE "lgbt" (
"letters" text,
"organization" text,
"nickname" text,
"founding_date" text,
"founding_university" text,
"type" text
); | SELECT "founding_date" FROM "lgbt" WHERE "founding_university"='Washington, D.C.'; | 1-2538117-7 |
What is the rank by average for the team who averaged 22.8? | CREATE TABLE "averages" (
"rank_by_average" real,
"place" real,
"couple" text,
"total_points" real,
"number_of_dances" real,
"average" text
); | SELECT MIN("rank_by_average") FROM "averages" WHERE "average"='22.8'; | 1-25391981-3 |
What is the number of dances for the team that averages 20.6? | CREATE TABLE "averages" (
"rank_by_average" real,
"place" real,
"couple" text,
"total_points" real,
"number_of_dances" real,
"average" text
); | SELECT "number_of_dances" FROM "averages" WHERE "average"='20.6'; | 1-25391981-3 |
What couple averaged 15.5? | CREATE TABLE "averages" (
"rank_by_average" real,
"place" real,
"couple" text,
"total_points" real,
"number_of_dances" real,
"average" text
); | SELECT "couple" FROM "averages" WHERE "average"='15.5'; | 1-25391981-3 |
What is the smallest rank by average for a team averaging 22.8? | CREATE TABLE "averages" (
"rank_by_average" real,
"place" real,
"couple" text,
"total_points" real,
"number_of_dances" real,
"average" text
); | SELECT MIN("rank_by_average") FROM "averages" WHERE "average"='22.8'; | 1-25391981-3 |
What is every value for Italian when the part is English? | CREATE TABLE "table1_25401_15" (
"english" text,
"latin" text,
"proto_italo_western_1" text,
"conservative_central_italian_1" text,
"italian" text,
"spanish" text,
"catalan" text,
"old_french" text
); | SELECT "italian" FROM "table1_25401_15" WHERE "english"='part'; | 1-25401-15 |
What is every entry for Proto-Italo-Western 1 when door is English? | CREATE TABLE "table1_25401_15" (
"english" text,
"latin" text,
"proto_italo_western_1" text,
"conservative_central_italian_1" text,
"italian" text,
"spanish" text,
"catalan" text,
"old_french" text
); | SELECT "proto_italo_western_1" FROM "table1_25401_15" WHERE "english"='door'; | 1-25401-15 |
How many entries for Italian correspond to the Conservative Central Italian of Unu? | CREATE TABLE "table1_25401_15" (
"english" text,
"latin" text,
"proto_italo_western_1" text,
"conservative_central_italian_1" text,
"italian" text,
"spanish" text,
"catalan" text,
"old_french" text
); | SELECT COUNT("italian") FROM "table1_25401_15" WHERE "conservative_central_italian_1"='unu'; | 1-25401-15 |
What is every entry for Latin when Catalan is Mar? | CREATE TABLE "table1_25401_15" (
"english" text,
"latin" text,
"proto_italo_western_1" text,
"conservative_central_italian_1" text,
"italian" text,
"spanish" text,
"catalan" text,
"old_french" text
); | SELECT "latin" FROM "table1_25401_15" WHERE "catalan"='mar'; | 1-25401-15 |
If the Indian Scorers is Chinadorai Sabeeth, what is the name of the stadium? | CREATE TABLE "2011_2012" (
"date" text,
"tournament" text,
"location" text,
"opponent" text,
"stadium" text,
"score" text,
"indian_scorers" text
); | SELECT "stadium" FROM "2011_2012" WHERE "indian_scorers"='Chinadorai Sabeeth'; | 1-25428629-1 |
If the stadium name is the Thuwunna Stadium, what is the date? | CREATE TABLE "2011_2012" (
"date" text,
"tournament" text,
"location" text,
"opponent" text,
"stadium" text,
"score" text,
"indian_scorers" text
); | SELECT "date" FROM "2011_2012" WHERE "stadium"='Thuwunna Stadium'; | 1-25428629-1 |
If the Indian scorers is the Chinadorai Sabeeth, what is the score? | CREATE TABLE "2011_2012" (
"date" text,
"tournament" text,
"location" text,
"opponent" text,
"stadium" text,
"score" text,
"indian_scorers" text
); | SELECT "score" FROM "2011_2012" WHERE "indian_scorers"='Chinadorai Sabeeth'; | 1-25428629-1 |
If the location is Yangon, Myanmar, what is the opponent total number? | CREATE TABLE "2011_2012" (
"date" text,
"tournament" text,
"location" text,
"opponent" text,
"stadium" text,
"score" text,
"indian_scorers" text
); | SELECT COUNT("opponent") FROM "2011_2012" WHERE "location"='Yangon, Myanmar'; | 1-25428629-1 |
How many provinces are named 青海省 qīnghǎi shěng? | CREATE TABLE "list_of_provincial_level_divisions" (
"gb" text,
"iso" text,
"province" text,
"chinese_name" text,
"capital" text,
"population" real,
"density" text,
"area" real,
"abbreviation_symbol" text
); | SELECT COUNT("iso") FROM "list_of_provincial_level_divisions" WHERE "chinese_name"='青海省 Qīnghǎi Shěng'; | 1-254234-1 |
What is the area of the province with a density of 533.59? | CREATE TABLE "list_of_provincial_level_divisions" (
"gb" text,
"iso" text,
"province" text,
"chinese_name" text,
"capital" text,
"population" real,
"density" text,
"area" real,
"abbreviation_symbol" text
); | SELECT MAX("area") FROM "list_of_provincial_level_divisions" WHERE "density"='533.59'; | 1-254234-1 |
How many provinces have a density of 165.81? | CREATE TABLE "list_of_provincial_level_divisions" (
"gb" text,
"iso" text,
"province" text,
"chinese_name" text,
"capital" text,
"population" real,
"density" text,
"area" real,
"abbreviation_symbol" text
); | SELECT COUNT("iso") FROM "list_of_provincial_level_divisions" WHERE "density"='165.81'; | 1-254234-1 |
What is the abbreviation/symbol of 辽宁省 liáoníng shěng? | CREATE TABLE "list_of_provincial_level_divisions" (
"gb" text,
"iso" text,
"province" text,
"chinese_name" text,
"capital" text,
"population" real,
"density" text,
"area" real,
"abbreviation_symbol" text
); | SELECT "abbreviation_symbol" FROM "list_of_provincial_level_divisions" WHERE "chinese_name"='辽宁省 Liáoníng Shěng'; | 1-254234-1 |
How many gb's have an iso number of cn-65? | CREATE TABLE "list_of_provincial_level_divisions" (
"gb" text,
"iso" text,
"province" text,
"chinese_name" text,
"capital" text,
"population" real,
"density" text,
"area" real,
"abbreviation_symbol" text
); | SELECT COUNT("gb") FROM "list_of_provincial_level_divisions" WHERE "iso"='CN-65'; | 1-254234-1 |
What is the chinese name of the province whose capital is hangzhou? | CREATE TABLE "list_of_provincial_level_divisions" (
"gb" text,
"iso" text,
"province" text,
"chinese_name" text,
"capital" text,
"population" real,
"density" text,
"area" real,
"abbreviation_symbol" text
); | SELECT "chinese_name" FROM "list_of_provincial_level_divisions" WHERE "capital"='Hangzhou'; | 1-254234-1 |
What is the fewest amount of races in any season? | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team_name" text,
"races" real,
"wins" real,
"points" text,
"final_placing" text
); | SELECT MIN("races") FROM "career_summary"; | 1-25421463-1 |
How many races were there when Sigachev had 38 points? | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team_name" text,
"races" real,
"wins" real,
"points" text,
"final_placing" text
); | SELECT MIN("races") FROM "career_summary" WHERE "points"='38'; | 1-25421463-1 |
What team was Sigachev on when he had 38 points? | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team_name" text,
"races" real,
"wins" real,
"points" text,
"final_placing" text
); | SELECT "team_name" FROM "career_summary" WHERE "points"='38'; | 1-25421463-1 |
In what season was the final placing NC† and the team SL Formula Racing? | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team_name" text,
"races" real,
"wins" real,
"points" text,
"final_placing" text
); | SELECT "season" FROM "career_summary" WHERE "final_placing"='NC†' AND "team_name"='SL Formula Racing'; | 1-25421463-1 |
what is distance for the 7th position? | CREATE TABLE "finishing_order" (
"position" text,
"number" real,
"horse" text,
"jockey" text,
"age" real,
"handicap" text,
"sp" text,
"distance" text
); | SELECT COUNT("distance") FROM "finishing_order" WHERE "position"='7th'; | 1-25429986-1 |
who isthe jockey in 10th position? | CREATE TABLE "finishing_order" (
"position" text,
"number" real,
"horse" text,
"jockey" text,
"age" real,
"handicap" text,
"sp" text,
"distance" text
); | SELECT "jockey" FROM "finishing_order" WHERE "position"='10th'; | 1-25429986-1 |
what position is number 22? | CREATE TABLE "finishing_order" (
"position" text,
"number" real,
"horse" text,
"jockey" text,
"age" real,
"handicap" text,
"sp" text,
"distance" text
); | SELECT "position" FROM "finishing_order" WHERE "number"=22; | 1-25429986-1 |
what horse is in the 6th position? | CREATE TABLE "finishing_order" (
"position" text,
"number" real,
"horse" text,
"jockey" text,
"age" real,
"handicap" text,
"sp" text,
"distance" text
); | SELECT "horse" FROM "finishing_order" WHERE "position"='6th'; | 1-25429986-1 |
what position has a handicap of 10-2? | CREATE TABLE "finishing_order" (
"position" text,
"number" real,
"horse" text,
"jockey" text,
"age" real,
"handicap" text,
"sp" text,
"distance" text
); | SELECT "position" FROM "finishing_order" WHERE "handicap"='10-2'; | 1-25429986-1 |
what is the handicap where the distance is 9 lengths? | CREATE TABLE "finishing_order" (
"position" text,
"number" real,
"horse" text,
"jockey" text,
"age" real,
"handicap" text,
"sp" text,
"distance" text
); | SELECT "handicap" FROM "finishing_order" WHERE "distance"='9 lengths'; | 1-25429986-1 |
Which series occurred when the 7800 was 5040.00? | CREATE TABLE "other_results" (
"22_06_2008" text,
"indonesia_super_series_2008" text,
"s_series" text,
"7800_00" text,
"runner_up" text
); | SELECT "indonesia_super_series_2008" FROM "other_results" WHERE "7800_00"='5040.00'; | 1-2544694-3 |
Which series occurred in which the semi-finalist was runner-up and the 7800.00 was 6420.00? | CREATE TABLE "other_results" (
"22_06_2008" text,
"indonesia_super_series_2008" text,
"s_series" text,
"7800_00" text,
"runner_up" text
); | SELECT "indonesia_super_series_2008" FROM "other_results" WHERE "runner_up"='Semi-Finalist' AND "7800_00"='6420.00'; | 1-2544694-3 |
Which s.series occurred on 06/05/2007? | CREATE TABLE "other_results" (
"22_06_2008" text,
"indonesia_super_series_2008" text,
"s_series" text,
"7800_00" text,
"runner_up" text
); | SELECT "s_series" FROM "other_results" WHERE "22_06_2008"='06/05/2007'; | 1-2544694-3 |
What road is associated with Carson Valley county? | CREATE TABLE "table1_25438110_5" (
"casinos" real,
"county" text,
"road" text,
"1_jul_08" real,
"fy07_millions" text,
"fy08_millions" text,
"fy09_millions" text
); | SELECT "road" FROM "table1_25438110_5" WHERE "county"='Carson Valley'; | 1-25438110-5 |
How many casinos are associated with a July 1, 2008 value of 1865746? | CREATE TABLE "table1_25438110_5" (
"casinos" real,
"county" text,
"road" text,
"1_jul_08" real,
"fy07_millions" text,
"fy08_millions" text,
"fy09_millions" text
); | SELECT "casinos" FROM "table1_25438110_5" WHERE "1_jul_08"=1865746; | 1-25438110-5 |
What county has exactly 17 casinos? | CREATE TABLE "table1_25438110_5" (
"casinos" real,
"county" text,
"road" text,
"1_jul_08" real,
"fy07_millions" text,
"fy08_millions" text,
"fy09_millions" text
); | SELECT "county" FROM "table1_25438110_5" WHERE "casinos"=17; | 1-25438110-5 |
How many casinos are associated with a FY2009 $mil value of exactly $279? | CREATE TABLE "table1_25438110_5" (
"casinos" real,
"county" text,
"road" text,
"1_jul_08" real,
"fy07_millions" text,
"fy08_millions" text,
"fy09_millions" text
); | SELECT COUNT("casinos") FROM "table1_25438110_5" WHERE "fy09_millions"='$279'; | 1-25438110-5 |
What is the FY2008 $mil value associated with a FY2007 $mil value of exactly $120? | CREATE TABLE "table1_25438110_5" (
"casinos" real,
"county" text,
"road" text,
"1_jul_08" real,
"fy07_millions" text,
"fy08_millions" text,
"fy09_millions" text
); | SELECT "fy08_millions" FROM "table1_25438110_5" WHERE "fy07_millions"='$120'; | 1-25438110-5 |
What country was Danissa Zurek from? | CREATE TABLE "official_delegates" (
"country" text,
"contestant" text,
"age" real,
"height_cm" real,
"height_ft" text,
"hometown" text
); | SELECT "country" FROM "official_delegates" WHERE "contestant"='Danissa Zurek'; | 1-25461827-2 |
What is the smallest height associated with Honduras? | CREATE TABLE "official_delegates" (
"country" text,
"contestant" text,
"age" real,
"height_cm" real,
"height_ft" text,
"hometown" text
); | SELECT MIN("height_cm") FROM "official_delegates" WHERE "country"='Honduras'; | 1-25461827-2 |
What is the height associated with Paraguay? | CREATE TABLE "official_delegates" (
"country" text,
"contestant" text,
"age" real,
"height_cm" real,
"height_ft" text,
"hometown" text
); | SELECT "height_ft" FROM "official_delegates" WHERE "country"='Paraguay'; | 1-25461827-2 |
What is the number of contestants who are aged exactly 18? | CREATE TABLE "official_delegates" (
"country" text,
"contestant" text,
"age" real,
"height_cm" real,
"height_ft" text,
"hometown" text
); | SELECT COUNT("contestant") FROM "official_delegates" WHERE "age"=18; | 1-25461827-2 |
What is the number of contestants who are 5'7" and exactly 26 years of age? | CREATE TABLE "official_delegates" (
"country" text,
"contestant" text,
"age" real,
"height_cm" real,
"height_ft" text,
"hometown" text
); | SELECT COUNT("contestant") FROM "official_delegates" WHERE "height_ft"='5''7\"' AND "age"=26; | 1-25461827-2 |
Who scored the most points on November 17? | CREATE TABLE "schedule" (
"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 "schedule" WHERE "date"='November 17'; | 1-25461946-5 |
What was the final score when the Temple Owls beat Virginia Tech? | CREATE TABLE "schedule" (
"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 "schedule" WHERE "team"='Virginia Tech'; | 1-25461946-5 |
How many games were played on november 27? | CREATE TABLE "schedule" (
"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 "schedule" WHERE "date"='November 27'; | 1-25461946-5 |
Who got the pole position if the supporting is USAC National Midget Series? | CREATE TABLE "race_calendar_and_results" (
"round" real,
"circuit" text,
"location" text,
"date" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_team" text,
"supporting" text
); | SELECT "pole_position" FROM "race_calendar_and_results" WHERE "supporting"='USAC National Midget Series'; | 1-25459168-2 |
Who won the fastest lap if Anders Krohn won the pole position? | CREATE TABLE "race_calendar_and_results" (
"round" real,
"circuit" text,
"location" text,
"date" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_team" text,
"supporting" text
); | SELECT "fastest_lap" FROM "race_calendar_and_results" WHERE "pole_position"='Anders Krohn'; | 1-25459168-2 |
How many rounds did João Victor Horto achieved the fastest lap? | CREATE TABLE "race_calendar_and_results" (
"round" real,
"circuit" text,
"location" text,
"date" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_team" text,
"supporting" text
); | SELECT COUNT("round") FROM "race_calendar_and_results" WHERE "fastest_lap"='João Victor Horto'; | 1-25459168-2 |
What circuit was used on August 21? | CREATE TABLE "race_calendar_and_results" (
"round" real,
"circuit" text,
"location" text,
"date" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_team" text,
"supporting" text
); | SELECT "circuit" FROM "race_calendar_and_results" WHERE "date"='August 21'; | 1-25459168-2 |
How many rounds did Alex Ardoin achieved a fastest lap? | CREATE TABLE "race_calendar_and_results" (
"round" real,
"circuit" text,
"location" text,
"date" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_team" text,
"supporting" text
); | SELECT COUNT("round") FROM "race_calendar_and_results" WHERE "fastest_lap"='Alex Ardoin'; | 1-25459168-2 |
What is the design when quantity is 5,000,000? | CREATE TABLE "2010" (
"date_of_issue" text,
"theme" text,
"denomination" text,
"design" text,
"illustration" text,
"quantity" text,
"printing_process" text,
"paper_type" text,
"first_day_cover_cancellation" text
); | SELECT "design" FROM "2010" WHERE "quantity"='5,000,000'; | 1-25468520-1 |
How many time is the theme rotary international : 100 years in canada? | CREATE TABLE "2010" (
"date_of_issue" text,
"theme" text,
"denomination" text,
"design" text,
"illustration" text,
"quantity" text,
"printing_process" text,
"paper_type" text,
"first_day_cover_cancellation" text
); | SELECT COUNT("printing_process") FROM "2010" WHERE "theme"='Rotary International : 100 Years in Canada'; | 1-25468520-1 |
What is the paper type for the date of issue July 8? | CREATE TABLE "2010" (
"date_of_issue" text,
"theme" text,
"denomination" text,
"design" text,
"illustration" text,
"quantity" text,
"printing_process" text,
"paper_type" text,
"first_day_cover_cancellation" text
); | SELECT "paper_type" FROM "2010" WHERE "date_of_issue"='July 8'; | 1-25468520-1 |
What is the theme when the printing process is litho in 3 cols and intaglio? | CREATE TABLE "2010" (
"date_of_issue" text,
"theme" text,
"denomination" text,
"design" text,
"illustration" text,
"quantity" text,
"printing_process" text,
"paper_type" text,
"first_day_cover_cancellation" text
); | SELECT "theme" FROM "2010" WHERE "printing_process"='Litho in 3 cols and intaglio'; | 1-25468520-1 |
How many times is the theme roadside attractions: wawa goose? | CREATE TABLE "2010" (
"date_of_issue" text,
"theme" text,
"denomination" text,
"design" text,
"illustration" text,
"quantity" text,
"printing_process" text,
"paper_type" text,
"first_day_cover_cancellation" text
); | SELECT COUNT("quantity") FROM "2010" WHERE "theme"='Roadside Attractions: Wawa Goose'; | 1-25468520-1 |
What is the theme when the date of issue is 11 january 2010? | CREATE TABLE "2010" (
"date_of_issue" text,
"theme" text,
"denomination" text,
"design" text,
"illustration" text,
"quantity" text,
"printing_process" text,
"paper_type" text,
"first_day_cover_cancellation" text
); | SELECT "theme" FROM "2010" WHERE "date_of_issue"='11 January 2010'; | 1-25468520-1 |
When did they play Dayton? | CREATE TABLE "schedule" (
"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 "schedule" WHERE "team"='Dayton'; | 1-25461946-8 |
What is the platform of Geworkbench? | CREATE TABLE "table1_25474825_1" (
"software" text,
"description" text,
"platform" text,
"license" text,
"developer" text
); | SELECT "platform" FROM "table1_25474825_1" WHERE "software"='GeWorkbench'; | 1-25474825-1 |
What is the description of the license for GNU GPL v2 or Ruby license? | CREATE TABLE "table1_25474825_1" (
"software" text,
"description" text,
"platform" text,
"license" text,
"developer" text
); | SELECT "description" FROM "table1_25474825_1" WHERE "license"='GNU GPL v2 or Ruby license'; | 1-25474825-1 |
What is the license that is described as a tool for designing and executing workflows? | CREATE TABLE "table1_25474825_1" (
"software" text,
"description" text,
"platform" text,
"license" text,
"developer" text
); | SELECT "license" FROM "table1_25474825_1" WHERE "description"='Tool for designing and executing workflows'; | 1-25474825-1 |
What is the description of the intact software? | CREATE TABLE "table1_25474825_1" (
"software" text,
"description" text,
"platform" text,
"license" text,
"developer" text
); | SELECT "description" FROM "table1_25474825_1" WHERE "software"='IntAct'; | 1-25474825-1 |
What user had a max demand charge of 1,100 and a unit/time range of h-2: off-peak (22:30-05:30)? | CREATE TABLE "revised_electricity_tariffs_effective_fr" (
"user" text,
"unit_k_wh_time_range" text,
"tariff_rs_k_wh" text,
"fixed_charge_rs_k_wh" text,
"fuel_adjustment_charge_pct_of_total_energy_charge" text,
"max_demand_charge_rs_k_va" text
); | SELECT "user" FROM "revised_electricity_tariffs_effective_fr" WHERE "max_demand_charge_rs_k_va"='1,100' AND "unit_k_wh_time_range"='H-2: Off-peak (22:30-05:30)'; | 1-25479607-3 |
What is the fixed charge for the user who had a tariff of 11.30? | CREATE TABLE "revised_electricity_tariffs_effective_fr" (
"user" text,
"unit_k_wh_time_range" text,
"tariff_rs_k_wh" text,
"fixed_charge_rs_k_wh" text,
"fuel_adjustment_charge_pct_of_total_energy_charge" text,
"max_demand_charge_rs_k_va" text
); | SELECT "fixed_charge_rs_k_wh" FROM "revised_electricity_tariffs_effective_fr" WHERE "tariff_rs_k_wh"='11.30'; | 1-25479607-3 |
What is the fixed charge for the user with a unit/time range of i-2: peak (18:30-22:30)? | CREATE TABLE "revised_electricity_tariffs_effective_fr" (
"user" text,
"unit_k_wh_time_range" text,
"tariff_rs_k_wh" text,
"fixed_charge_rs_k_wh" text,
"fuel_adjustment_charge_pct_of_total_energy_charge" text,
"max_demand_charge_rs_k_va" text
); | SELECT "fixed_charge_rs_k_wh" FROM "revised_electricity_tariffs_effective_fr" WHERE "unit_k_wh_time_range"='I-2: Peak (18:30-22:30)'; | 1-25479607-3 |
What was the max demand charge for the user with a tariff of 8.85? | CREATE TABLE "revised_electricity_tariffs_effective_fr" (
"user" text,
"unit_k_wh_time_range" text,
"tariff_rs_k_wh" text,
"fixed_charge_rs_k_wh" text,
"fuel_adjustment_charge_pct_of_total_energy_charge" text,
"max_demand_charge_rs_k_va" text
); | SELECT "max_demand_charge_rs_k_va" FROM "revised_electricity_tariffs_effective_fr" WHERE "tariff_rs_k_wh"='8.85'; | 1-25479607-3 |
How many picks are there with an affiliation is the University of California Norcal Lamorinda United? | CREATE TABLE "round_two" (
"pick_num" real,
"mls_team" text,
"player" text,
"position" text,
"affiliation" text
); | SELECT COUNT("pick_num") FROM "round_two" WHERE "affiliation"='University of California NorCal Lamorinda United'; | 1-25518547-2 |
What team does Seth Sinovic play for? | CREATE TABLE "round_two" (
"pick_num" real,
"mls_team" text,
"player" text,
"position" text,
"affiliation" text
); | SELECT "mls_team" FROM "round_two" WHERE "player"='Seth Sinovic'; | 1-25518547-2 |
How many players have an affiliation with University of Maryland? | CREATE TABLE "round_two" (
"pick_num" real,
"mls_team" text,
"player" text,
"position" text,
"affiliation" text
); | SELECT COUNT("player") FROM "round_two" WHERE "affiliation"='University of Maryland'; | 1-25518547-2 |
in what round types did the opponent come from south africa? | CREATE TABLE "fed_cup_doubles_performances_10" (
"edition" real,
"zone" text,
"round" text,
"against" text,
"surface" text,
"partner" text,
"opponents" text,
"outcome" text,
"result" text
); | SELECT "round" FROM "fed_cup_doubles_performances_10" WHERE "against"='South Africa'; | 1-25505246-8 |
How did the match end when she played with caroline wozniacki? | CREATE TABLE "fed_cup_doubles_performances_10" (
"edition" real,
"zone" text,
"round" text,
"against" text,
"surface" text,
"partner" text,
"opponents" text,
"outcome" text,
"result" text
); | SELECT "outcome" FROM "fed_cup_doubles_performances_10" WHERE "partner"='Caroline Wozniacki'; | 1-25505246-8 |
When was the University founded that joined in 1978? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT MAX("founded") FROM "current_members" WHERE "joined"=1978; | 1-255188-1 |
When was Piedmont College founded? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT MAX("founded") FROM "current_members" WHERE "institution"='Piedmont College'; | 1-255188-1 |
When were the Avenging Angels founded? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT MAX("founded") FROM "current_members" WHERE "nickname"='Avenging Angels'; | 1-255188-1 |
What institution joined in 1988? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "institution" FROM "current_members" WHERE "joined"=1988; | 1-255188-1 |
What location is nicknamed the 49ers? | CREATE TABLE "former_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real,
"current_conference" text
); | SELECT "location" FROM "former_members" WHERE "nickname"='49ers'; | 1-255188-3 |
Where is the University of North Carolina at Greensboro located? | CREATE TABLE "former_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real,
"current_conference" text
); | SELECT "location" FROM "former_members" WHERE "institution"='University of North Carolina at Greensboro'; | 1-255188-3 |
Where is the University of North Carolina at Greensboro located? | CREATE TABLE "former_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real,
"current_conference" text
); | SELECT "location" FROM "former_members" WHERE "institution"='University of North Carolina at Greensboro'; | 1-255188-3 |
Name the hypotenuse for vertices 月山泛 δymf | CREATE TABLE "triangles_and_their_sides" (
"number" real,
"name" text,
"vertices" text,
"hypotenuse_0_c" text,
"vertical_0_b" text,
"horizontal_0_a" text
); | SELECT "hypotenuse_0_c" FROM "triangles_and_their_sides" WHERE "vertices"='月山泛 ΔYMF'; | 1-25519358-1 |
Name the vertical for 边 bian | CREATE TABLE "triangles_and_their_sides" (
"number" real,
"name" text,
"vertices" text,
"hypotenuse_0_c" text,
"vertical_0_b" text,
"horizontal_0_a" text
); | SELECT "vertical_0_b" FROM "triangles_and_their_sides" WHERE "name"='边 BIAN'; | 1-25519358-1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.