question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
Where is Southern Vermont College 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"='Southern Vermont College'; | 1-1973816-2 |
In what year did the school with enrollment of 650 leave? | CREATE TABLE "former_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real,
"current_conference" text
); | SELECT "left" FROM "former_members" WHERE "enrollment"=650; | 1-1973816-2 |
What was the number of races in the season in which the team placed on the 14th 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("races") FROM "career_summary" WHERE "position"='14th'; | 1-19741316-1 |
What is the lowest number of wins of a team? | 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("wins") FROM "career_summary"; | 1-19741316-1 |
What's the minimal number of wins of a team? | 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("wins") FROM "career_summary"; | 1-19741316-1 |
Name the institution for statesmen | CREATE TABLE "current_members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "institution" FROM "current_members" WHERE "nickname"='Statesmen'; | 1-1974482-1 |
Name the institution for yellowjackets | CREATE TABLE "current_members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "institution" FROM "current_members" WHERE "nickname"='Yellowjackets'; | 1-1974482-1 |
Name the type for hobart college | CREATE TABLE "current_members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "type" FROM "current_members" WHERE "institution"='Hobart College'; | 1-1974482-1 |
Name the location for 1829 | CREATE TABLE "current_members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "location" FROM "current_members" WHERE "founded"=1829; | 1-1974482-1 |
Name the location of statesmen | CREATE TABLE "current_members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "location" FROM "current_members" WHERE "nickname"='Statesmen'; | 1-1974482-1 |
What location was the congressional service of which the term ended in January 3, 2011? | CREATE TABLE "table1_197446_1" (
"office" text,
"branch" text,
"location" text,
"elected" real,
"term_began" text,
"term_ended" text
); | SELECT "location" FROM "table1_197446_1" WHERE "term_ended"='January 3, 2011'; | 1-197446-1 |
What branch was involved when the term began in January 3, 1985? | CREATE TABLE "table1_197446_1" (
"office" text,
"branch" text,
"location" text,
"elected" real,
"term_began" text,
"term_ended" text
); | SELECT "branch" FROM "table1_197446_1" WHERE "term_began"='January 3, 1985'; | 1-197446-1 |
What year was the congressional service elected for a term beginning on January 3, 1989? | CREATE TABLE "table1_197446_1" (
"office" text,
"branch" text,
"location" text,
"elected" real,
"term_began" text,
"term_ended" text
); | SELECT "elected" FROM "table1_197446_1" WHERE "term_began"='January 3, 1989'; | 1-197446-1 |
What group was in office when the term ended in January 3, 1993? | CREATE TABLE "table1_197446_1" (
"office" text,
"branch" text,
"location" text,
"elected" real,
"term_began" text,
"term_ended" text
); | SELECT "office" FROM "table1_197446_1" WHERE "term_ended"='January 3, 1993'; | 1-197446-1 |
How many terms began when the term ended in January 3, 1989? | CREATE TABLE "table1_197446_1" (
"office" text,
"branch" text,
"location" text,
"elected" real,
"term_began" text,
"term_ended" text
); | SELECT COUNT("term_began") FROM "table1_197446_1" WHERE "term_ended"='January 3, 1989'; | 1-197446-1 |
How many different total points does the couple ranked at number 5 have? | CREATE TABLE "table1_19744915_22" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT COUNT("total") FROM "table1_19744915_22" WHERE "rank"=5; | 1-19744915-22 |
What couple had vote percentage of 21.843%? | CREATE TABLE "table1_19744915_22" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT "couple" FROM "table1_19744915_22" WHERE "vote_percentage"='21.843%'; | 1-19744915-22 |
How many judges points did the couple ranked at number 5 have? | CREATE TABLE "table1_19744915_22" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT MAX("judges") FROM "table1_19744915_22" WHERE "rank"=5; | 1-19744915-22 |
What couple had less than 2.0 points from the public? | CREATE TABLE "table1_19744915_22" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT "couple" FROM "table1_19744915_22" WHERE "public"<2.0; | 1-19744915-22 |
What was the total result for couple Ellery and Frankie? | CREATE TABLE "table1_19744915_17" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT COUNT("result") FROM "table1_19744915_17" WHERE "couple"='Ellery and Frankie'; | 1-19744915-17 |
If the vote percentage is 2.111%, what was the minimum rank? | CREATE TABLE "table1_19744915_17" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT MIN("rank") FROM "table1_19744915_17" WHERE "vote_percentage"='2.111%'; | 1-19744915-17 |
If the total is 17, what was the maximum rank amount? | CREATE TABLE "table1_19744915_17" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT MAX("rank") FROM "table1_19744915_17" WHERE "total"=17; | 1-19744915-17 |
For couple Todd and Susie, what was the vote percentage? | CREATE TABLE "table1_19744915_17" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT "vote_percentage" FROM "table1_19744915_17" WHERE "couple"='Todd and Susie'; | 1-19744915-17 |
When 9 is the rank who are the couple? | CREATE TABLE "table1_19744915_18" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT "couple" FROM "table1_19744915_18" WHERE "rank"=9; | 1-19744915-18 |
When roxanne and daniel are the couple what is the highest rank? | CREATE TABLE "table1_19744915_18" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT MAX("rank") FROM "table1_19744915_18" WHERE "couple"='Roxanne and Daniel'; | 1-19744915-18 |
When ellery and frankie are the couple what is the highest total? | CREATE TABLE "table1_19744915_18" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT MAX("total") FROM "table1_19744915_18" WHERE "couple"='Ellery and Frankie'; | 1-19744915-18 |
When 8 is the public what are the results? | CREATE TABLE "table1_19744915_18" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT "result" FROM "table1_19744915_18" WHERE "public"=8; | 1-19744915-18 |
When 8 is the public and the result is safe what is the highest rank? | CREATE TABLE "table1_19744915_18" (
"rank" real,
"couple" text,
"judges" real,
"public" real,
"total" real,
"vote_percentage" text,
"result" text
); | SELECT MAX("rank") FROM "table1_19744915_18" WHERE "result"='Safe' AND "public"=8; | 1-19744915-18 |
Name the karen when nicky is 2.5 | CREATE TABLE "table1_19744915_4" (
"order" real,
"couple" text,
"karen" text,
"nicky" text,
"jason" text,
"ruthie" text,
"robin" text,
"total" text,
"skating_song" text,
"scoreboard" text,
"public_vote" text
); | SELECT "karen" FROM "table1_19744915_4" WHERE "nicky"='2.5'; | 1-19744915-4 |
What is the capacity for the school that has the Owl Athletic Complex baseball stadium? | CREATE TABLE "conference_facilities" (
"school" text,
"baseball_stadium" text,
"softball_stadium" text,
"basketball_arena" text,
"capacity" text
); | SELECT "capacity" FROM "conference_facilities" WHERE "baseball_stadium"='Owl Athletic Complex'; | 1-1974545-3 |
What is the name of the softball stadium for the school that has Eastern Baseball Stadium? | CREATE TABLE "conference_facilities" (
"school" text,
"baseball_stadium" text,
"softball_stadium" text,
"basketball_arena" text,
"capacity" text
); | SELECT "softball_stadium" FROM "conference_facilities" WHERE "baseball_stadium"='Eastern Baseball Stadium'; | 1-1974545-3 |
What is the name of UMass Boston's softball stadium? | CREATE TABLE "conference_facilities" (
"school" text,
"baseball_stadium" text,
"softball_stadium" text,
"basketball_arena" text,
"capacity" text
); | SELECT "softball_stadium" FROM "conference_facilities" WHERE "school"='UMass Boston'; | 1-1974545-3 |
What is the name of Rhode Island College's softball stadium? | CREATE TABLE "conference_facilities" (
"school" text,
"baseball_stadium" text,
"softball_stadium" text,
"basketball_arena" text,
"capacity" text
); | SELECT "softball_stadium" FROM "conference_facilities" WHERE "school"='Rhode Island College'; | 1-1974545-3 |
How many basketball arenas are there that belong to a school with a capacity of 3,000? | CREATE TABLE "conference_facilities" (
"school" text,
"baseball_stadium" text,
"softball_stadium" text,
"basketball_arena" text,
"capacity" text
); | SELECT COUNT("basketball_arena") FROM "conference_facilities" WHERE "capacity"='3,000'; | 1-1974545-3 |
What is the name of the baseball stadium for the school with the Murray Center basketball arena? | CREATE TABLE "conference_facilities" (
"school" text,
"baseball_stadium" text,
"softball_stadium" text,
"basketball_arena" text,
"capacity" text
); | SELECT "baseball_stadium" FROM "conference_facilities" WHERE "basketball_arena"='The Murray Center'; | 1-1974545-3 |
Where is the Westfield State University located? | CREATE TABLE "associate_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"primary_conference" text,
"lec_sport" text
); | SELECT "location" FROM "associate_members" WHERE "institution"='Westfield State University'; | 1-1974545-2 |
When was the school in Salem, Massachusetts located? | CREATE TABLE "associate_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"primary_conference" text,
"lec_sport" text
); | SELECT "founded" FROM "associate_members" WHERE "location"='Salem, Massachusetts'; | 1-1974545-2 |
What's the nickname of Westfield State University's students? | CREATE TABLE "associate_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"primary_conference" text,
"lec_sport" text
); | SELECT "nickname" FROM "associate_members" WHERE "institution"='Westfield State University'; | 1-1974545-2 |
What's Fitchburg State University's LEC sport? | CREATE TABLE "associate_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"primary_conference" text,
"lec_sport" text
); | SELECT "lec_sport" FROM "associate_members" WHERE "institution"='Fitchburg State University'; | 1-1974545-2 |
Where is the school whose students are nicknamed falcons located? | CREATE TABLE "associate_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"primary_conference" text,
"lec_sport" text
); | SELECT "location" FROM "associate_members" WHERE "nickname"='Falcons'; | 1-1974545-2 |
What's Salem State University's primary conference? | CREATE TABLE "associate_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"primary_conference" text,
"lec_sport" text
); | SELECT "primary_conference" FROM "associate_members" WHERE "institution"='Salem State University'; | 1-1974545-2 |
Name the incumbent for north carolina 9 | CREATE TABLE "north_carolina" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "north_carolina" WHERE "district"='North Carolina 9'; | 1-19753079-36 |
Name the total party for north carolina 7 | CREATE TABLE "north_carolina" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("party") FROM "north_carolina" WHERE "district"='North Carolina 7'; | 1-19753079-36 |
Name the incumbent for sue myrick (r) 69.0% jeff doctor (d) 31.0% | CREATE TABLE "north_carolina" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "north_carolina" WHERE "candidates"='Sue Myrick (R) 69.0% Jeff Doctor (D) 31.0%'; | 1-19753079-36 |
Name the result for north carolina 7 | CREATE TABLE "north_carolina" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "north_carolina" WHERE "district"='North Carolina 7'; | 1-19753079-36 |
Name the incumbent for north carolina 9 | CREATE TABLE "north_carolina" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "north_carolina" WHERE "district"='North Carolina 9'; | 1-19753079-36 |
What's Babson College's enrollment? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT MAX("enrollment") FROM "current_members" WHERE "institution"='Babson College'; | 1-1974782-1 |
When has Clark University joined the Conference? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT MAX("joined") FROM "current_members" WHERE "institution"='Clark University'; | 1-1974782-1 |
What's the type of the school in New London, Connecticut? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "type" FROM "current_members" WHERE "location"='New London, Connecticut'; | 1-1974782-1 |
When was the school in Springfield, Massachusetts 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 "location"='Springfield, Massachusetts'; | 1-1974782-1 |
What school is located in Worcester, Massachusetts? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "institution" FROM "current_members" WHERE "location"='Worcester, Massachusetts'; | 1-1974782-1 |
Who are the candidates in Florida 13 district? | CREATE TABLE "table1_19753079_12" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "table1_19753079_12" WHERE "district"='Florida 13'; | 1-19753079-12 |
How many different pairs of candidates were there for the district first elected in 1988? | CREATE TABLE "table1_19753079_12" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("candidates") FROM "table1_19753079_12" WHERE "first_elected"=1988; | 1-19753079-12 |
Who were candidates in Florida 10 district? | CREATE TABLE "table1_19753079_12" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "table1_19753079_12" WHERE "district"='Florida 10'; | 1-19753079-12 |
What party got elected in Florida 9 district? | CREATE TABLE "table1_19753079_12" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "table1_19753079_12" WHERE "district"='Florida 9'; | 1-19753079-12 |
What is the first round that had #67 the racer's group with the fastest lap? | CREATE TABLE "table1_19751479_4" (
"rnd" real,
"circuit" text,
"pole_position" text,
"fastest_lap" text,
"winner" text,
"results" text
); | SELECT MIN("rnd") FROM "table1_19751479_4" WHERE "fastest_lap"='#67 The Racer''s Group'; | 1-19751479-4 |
How many races had #99 gainsco/bob stallings racing in round 10? | CREATE TABLE "table1_19751479_4" (
"rnd" real,
"circuit" text,
"pole_position" text,
"fastest_lap" text,
"winner" text,
"results" text
); | SELECT COUNT("fastest_lap") FROM "table1_19751479_4" WHERE "rnd"=10 AND "pole_position"='#99 GAINSCO/Bob Stallings Racing'; | 1-19751479-4 |
What incumbent was first elected in 2009? | CREATE TABLE "california" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "california" WHERE "first_elected"=2009; | 1-19753079-8 |
How many were first elected in California 7? | CREATE TABLE "california" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "first_elected" FROM "california" WHERE "district"='California 7'; | 1-19753079-8 |
What district did George Miller belong to? | CREATE TABLE "california" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "california" WHERE "incumbent"='George Miller'; | 1-19753079-8 |
When mark critz (d) 50.8% tim burns (r) 49.2% are the candidates what is the party? | CREATE TABLE "pennsylvania" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "pennsylvania" WHERE "candidates"='Mark Critz (D) 50.8% Tim Burns (R) 49.2%'; | 1-19753079-41 |
When chris carney is the incumbent what are the results? | CREATE TABLE "pennsylvania" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "pennsylvania" WHERE "incumbent"='Chris Carney'; | 1-19753079-41 |
When 1994 is the first elected what is the district? | CREATE TABLE "pennsylvania" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "pennsylvania" WHERE "first_elected"=1994; | 1-19753079-41 |
When pennsylvania 3 is the district who is the incumbent? | CREATE TABLE "pennsylvania" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "pennsylvania" WHERE "district"='Pennsylvania 3'; | 1-19753079-41 |
When 1984 is the first elected who are the candidates? | CREATE TABLE "pennsylvania" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "pennsylvania" WHERE "first_elected"=1984; | 1-19753079-41 |
What is Salva Ortega's result? | CREATE TABLE "semi_final_2_21_february_2009" (
"draw" real,
"artist" text,
"song" text,
"jury_votes" real,
"televotes" real,
"total_votes" real,
"result" text
); | SELECT "result" FROM "semi_final_2_21_february_2009" WHERE "artist"='Salva Ortega'; | 1-19763199-4 |
How many televotes are there for "Lujuria"? | CREATE TABLE "semi_final_2_21_february_2009" (
"draw" real,
"artist" text,
"song" text,
"jury_votes" real,
"televotes" real,
"total_votes" real,
"result" text
); | SELECT "televotes" FROM "semi_final_2_21_february_2009" WHERE "song"='\"Lujuria\"'; | 1-19763199-4 |
How many televotes are there where there is 4 jury votes? | CREATE TABLE "semi_final_2_21_february_2009" (
"draw" real,
"artist" text,
"song" text,
"jury_votes" real,
"televotes" real,
"total_votes" real,
"result" text
); | SELECT "televotes" FROM "semi_final_2_21_february_2009" WHERE "jury_votes"=4; | 1-19763199-4 |
How many jury votes for the televote of 7? | CREATE TABLE "semi_final_2_21_february_2009" (
"draw" real,
"artist" text,
"song" text,
"jury_votes" real,
"televotes" real,
"total_votes" real,
"result" text
); | SELECT "jury_votes" FROM "semi_final_2_21_february_2009" WHERE "televotes"=7; | 1-19763199-4 |
What is the result for Normativa Vigente? | CREATE TABLE "semi_final_1_14_february_2009" (
"draw" real,
"artist" text,
"song" text,
"jury_votes" text,
"televotes" real,
"total_votes" real,
"result" text
); | SELECT "result" FROM "semi_final_1_14_february_2009" WHERE "artist"='Normativa Vigente'; | 1-19763199-3 |
What song has 24 votes? | CREATE TABLE "semi_final_1_14_february_2009" (
"draw" real,
"artist" text,
"song" text,
"jury_votes" text,
"televotes" real,
"total_votes" real,
"result" text
); | SELECT "song" FROM "semi_final_1_14_february_2009" WHERE "total_votes"=24; | 1-19763199-3 |
What is the least total votes? | CREATE TABLE "semi_final_1_14_february_2009" (
"draw" real,
"artist" text,
"song" text,
"jury_votes" text,
"televotes" real,
"total_votes" real,
"result" text
); | SELECT MIN("total_votes") FROM "semi_final_1_14_february_2009"; | 1-19763199-3 |
How many votes does Carlos Ferrer Eai have? | CREATE TABLE "semi_final_1_14_february_2009" (
"draw" real,
"artist" text,
"song" text,
"jury_votes" text,
"televotes" real,
"total_votes" real,
"result" text
); | SELECT "total_votes" FROM "semi_final_1_14_february_2009" WHERE "artist"='Carlos Ferrer EAI'; | 1-19763199-3 |
How many players are on this list? | CREATE TABLE "men_s_singles" (
"num" real,
"player" text,
"age" real,
"australian_open" real,
"french_open" real,
"wimbledon" real,
"us_open" real
); | SELECT MAX("num") FROM "men_s_singles"; | 1-197638-6 |
Who won the French Open in 1999? | CREATE TABLE "men_s_singles" (
"num" real,
"player" text,
"age" real,
"australian_open" real,
"french_open" real,
"wimbledon" real,
"us_open" real
); | SELECT "player" FROM "men_s_singles" WHERE "french_open"=1999; | 1-197638-6 |
Who won the US Open in 1937? | CREATE TABLE "men_s_singles" (
"num" real,
"player" text,
"age" real,
"australian_open" real,
"french_open" real,
"wimbledon" real,
"us_open" real
); | SELECT "player" FROM "men_s_singles" WHERE "us_open"=1937; | 1-197638-6 |
How many times did Roy Emerson win the Australian Open? | CREATE TABLE "men_s_singles" (
"num" real,
"player" text,
"age" real,
"australian_open" real,
"french_open" real,
"wimbledon" real,
"us_open" real
); | SELECT COUNT("australian_open") FROM "men_s_singles" WHERE "player"='Roy Emerson'; | 1-197638-6 |
At what age did Roy Emerson complete the Grand Slam? | CREATE TABLE "men_s_singles" (
"num" real,
"player" text,
"age" real,
"australian_open" real,
"french_open" real,
"wimbledon" real,
"us_open" real
); | SELECT MAX("age") FROM "men_s_singles" WHERE "player"='Roy Emerson'; | 1-197638-6 |
Name the least rank for 2 | CREATE TABLE "goalscorers" (
"rank" real,
"no" real,
"pos" text,
"player" text,
"premier_league" real,
"fa_cup" real,
"league_cup" real,
"champions_league" real,
"club_world_cup" real,
"total" real
); | SELECT MIN("rank") FROM "goalscorers" WHERE "total"=2; | 1-19764939-1 |
Name the total for jamie carragher | CREATE TABLE "goalscorers" (
"rank" real,
"no" real,
"pos" text,
"player" text,
"premier_league" real,
"fa_cup" real,
"league_cup" real,
"champions_league" real,
"club_world_cup" real,
"total" real
); | SELECT "total" FROM "goalscorers" WHERE "player"='Jamie Carragher'; | 1-19764939-1 |
Name the total number of club worl cup for djibril cisse | CREATE TABLE "goalscorers" (
"rank" real,
"no" real,
"pos" text,
"player" text,
"premier_league" real,
"fa_cup" real,
"league_cup" real,
"champions_league" real,
"club_world_cup" real,
"total" real
); | SELECT COUNT("club_world_cup") FROM "goalscorers" WHERE "player"='Djibril Cisse'; | 1-19764939-1 |
What's the post code of the county with the Chinese name 潜山县 / 潛山縣? | CREATE TABLE "administration" (
"english_name" text,
"chinese_name_simplified_traditional" text,
"pinyin" text,
"population" real,
"post_code" real
); | SELECT MIN("post_code") FROM "administration" WHERE "chinese_name_simplified_traditional"='潜山县 / 潛山縣'; | 1-1976898-1 |
What's the English name of the county called 太湖县 / 太湖縣 in Chinese? | CREATE TABLE "administration" (
"english_name" text,
"chinese_name_simplified_traditional" text,
"pinyin" text,
"population" real,
"post_code" real
); | SELECT "english_name" FROM "administration" WHERE "chinese_name_simplified_traditional"='太湖县 / 太湖縣'; | 1-1976898-1 |
What's the English name of the county with a postcode 246400? | CREATE TABLE "administration" (
"english_name" text,
"chinese_name_simplified_traditional" text,
"pinyin" text,
"population" real,
"post_code" real
); | SELECT "english_name" FROM "administration" WHERE "post_code"=246400; | 1-1976898-1 |
What's the Chinese (simplified/traditional) name of Susong County? | CREATE TABLE "administration" (
"english_name" text,
"chinese_name_simplified_traditional" text,
"pinyin" text,
"population" real,
"post_code" real
); | SELECT "chinese_name_simplified_traditional" FROM "administration" WHERE "english_name"='Susong County'; | 1-1976898-1 |
What's the Pinyin name of the county with a postcode 246500? | CREATE TABLE "administration" (
"english_name" text,
"chinese_name_simplified_traditional" text,
"pinyin" text,
"population" real,
"post_code" real
); | SELECT "pinyin" FROM "administration" WHERE "post_code"=246500; | 1-1976898-1 |
On how many different dates was a game against Houston played? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location" text,
"record" text
); | SELECT COUNT("date") FROM "regular_season" WHERE "opponent"='Houston'; | 1-19778010-5 |
How many different players did the high assists in games where the high rebounds were done by Sales (10)? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location" text,
"record" text
); | SELECT COUNT("high_assists") FROM "regular_season" WHERE "high_rebounds"='Sales (10)'; | 1-19778010-5 |
What's the number of the game played on June 22? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location" text,
"record" text
); | SELECT MAX("game") FROM "regular_season" WHERE "date"='June 22'; | 1-19778010-5 |
Who was game number 8 played against? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location" text,
"record" text
); | SELECT "opponent" FROM "regular_season" WHERE "game"=8; | 1-19778010-5 |
Who did the high rebounds in the game in which five players (3) did the high assists? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location" text,
"record" text
); | SELECT "high_rebounds" FROM "regular_season" WHERE "high_assists"='Five Players (3)'; | 1-19778010-5 |
What are all the conjugated forms of the verb where the el/ ella/usted verb is piense? | CREATE TABLE "present_subjunctive" (
"verbs" text,
"yo" text,
"t" text,
"vos" text,
"l_ella_usted" text,
"nosotros_nosotras" text,
"vosotros_vosotras" text,
"ellos_ellas_ustedes" text
); | SELECT "nosotros_nosotras" FROM "present_subjunctive" WHERE "l_ella_usted"='piense'; | 1-1977630-2 |
What are all the conjugated forms of the verb moler where the vosotros / vosotras is moláis for the yo tense? | CREATE TABLE "present_subjunctive" (
"verbs" text,
"yo" text,
"t" text,
"vos" text,
"l_ella_usted" text,
"nosotros_nosotras" text,
"vosotros_vosotras" text,
"ellos_ellas_ustedes" text
); | SELECT "yo" FROM "present_subjunctive" WHERE "vosotros_vosotras"='moláis'; | 1-1977630-2 |
how many verbs have the yo form as sienta? | CREATE TABLE "present_subjunctive" (
"verbs" text,
"yo" text,
"t" text,
"vos" text,
"l_ella_usted" text,
"nosotros_nosotras" text,
"vosotros_vosotras" text,
"ellos_ellas_ustedes" text
); | SELECT COUNT("verbs") FROM "present_subjunctive" WHERE "yo"='sienta'; | 1-1977630-2 |
What us the conjucated form(s) of el/ella/ usted when the Vos (*) is muelas / molás? | CREATE TABLE "present_subjunctive" (
"verbs" text,
"yo" text,
"t" text,
"vos" text,
"l_ella_usted" text,
"nosotros_nosotras" text,
"vosotros_vosotras" text,
"ellos_ellas_ustedes" text
); | SELECT "l_ella_usted" FROM "present_subjunctive" WHERE "vos"='muelas / molás'; | 1-1977630-2 |
What are the forms of the conjucated vos(*) where él / ella / usted is muela | CREATE TABLE "present_subjunctive" (
"verbs" text,
"yo" text,
"t" text,
"vos" text,
"l_ella_usted" text,
"nosotros_nosotras" text,
"vosotros_vosotras" text,
"ellos_ellas_ustedes" text
); | SELECT "vos" FROM "present_subjunctive" WHERE "l_ella_usted"='muela'; | 1-1977630-2 |
How many have the Till Agra of 500? | CREATE TABLE "toll_rates" (
"vehicle_category" text,
"till_aligarh" real,
"till_mathura" real,
"till_agra" real,
"for_round_trip" real
); | SELECT COUNT("till_mathura") FROM "toll_rates" WHERE "till_agra"=500; | 1-19787093-1 |
What kind of vehicle is the agra 1050? | CREATE TABLE "toll_rates" (
"vehicle_category" text,
"till_aligarh" real,
"till_mathura" real,
"till_agra" real,
"for_round_trip" real
); | SELECT "vehicle_category" FROM "toll_rates" WHERE "till_agra"=1050; | 1-19787093-1 |
If the till aligarh is 150, what the mac till mathura? | CREATE TABLE "toll_rates" (
"vehicle_category" text,
"till_aligarh" real,
"till_mathura" real,
"till_agra" real,
"for_round_trip" real
); | SELECT MAX("till_mathura") FROM "toll_rates" WHERE "till_aligarh"=150; | 1-19787093-1 |
If the till agra is 1050, what is the max round trip? | CREATE TABLE "toll_rates" (
"vehicle_category" text,
"till_aligarh" real,
"till_mathura" real,
"till_agra" real,
"for_round_trip" real
); | SELECT MAX("for_round_trip") FROM "toll_rates" WHERE "till_agra"=1050; | 1-19787093-1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.