question
stringlengths 12
244
| sql
stringlengths 22
468
|
|---|---|
Name the college/junior club team for ian turnbull
|
SELECT College/junior/club team FROM table WHERE Player = Ian Turnbull
|
Name the position for nhl team being los angeles kings
|
SELECT Position FROM table WHERE NHL team = Los Angeles Kings
|
Name the nhl times for jeff jacques
|
SELECT NHL team FROM table WHERE Player = Jeff Jacques
|
Name the college/junior club team for john campbell
|
SELECT College/junior/club team FROM table WHERE Player = John Campbell
|
Name the least pick # for doug gibson
|
SELECT MIN Pick # FROM table WHERE Player = Doug Gibson
|
How many nationalities does Tom Colley have?
|
SELECT COUNT Nationality FROM table WHERE Player = Tom Colley
|
What's the NHL team that drafted the player from Sudbury Wolves (OHA)?
|
SELECT NHL team FROM table WHERE College/junior/club team = Sudbury Wolves (OHA)
|
What's the number of positions of the player playing in Minnesota North Stars?
|
SELECT COUNT Position FROM table WHERE NHL team = Minnesota North Stars
|
What's the smallest pick number of a player playing in Minnesota North Stars?
|
SELECT MIN Pick # FROM table WHERE NHL team = Minnesota North Stars
|
What's the nationality of the player coming from Edmonton Oil Kings (WCHL)?
|
SELECT Nationality FROM table WHERE College/junior/club team = Edmonton Oil Kings (WCHL)
|
What's Steve Langdon's naitionality?
|
SELECT Nationality FROM table WHERE Player = Steve Langdon
|
When michigan technological university (ncaa) is the college, junior, or club team what is the nationality?
|
SELECT Nationality FROM table WHERE College/junior/club team = Michigan Technological University (NCAA)
|
When kitchener rangers (oha) is the college, junior, or club team team who is the player?
|
SELECT Player FROM table WHERE College/junior/club team = Kitchener Rangers (OHA)
|
When sault ste. marie greyhounds (oha) is the college, junior, or club team how many nationalities are there?
|
SELECT COUNT Nationality FROM table WHERE College/junior/club team = Sault Ste. Marie Greyhounds (OHA)
|
When kitchener rangers (oha) is the college, junior, or club team what is the position?
|
SELECT Position FROM table WHERE College/junior/club team = Kitchener Rangers (OHA)
|
How many positions for denis patry?
|
SELECT COUNT Position FROM table WHERE Player = Denis Patry
|
What nationality for neil korzack?
|
SELECT Nationality FROM table WHERE Player = Neil Korzack
|
Name the college that has 10000 enrolled
|
SELECT Institution FROM table WHERE Enrollment = 10000
|
Name the most joined for molloy college
|
SELECT MAX Joined FROM table WHERE Institution = Molloy College
|
how many times was total considered when hancock # was 1394
|
SELECT COUNT Total FROM table WHERE Hancock # = 1394
|
how many times was hancock % considered when starky % was 20.96%
|
SELECT COUNT Hancock % FROM table WHERE Starky % = 20.96%
|
How many times was country considered when starky % was 20.96%
|
SELECT COUNT County FROM table WHERE Starky % = 20.96%
|
which country did stary get 17.41%
|
SELECT County FROM table WHERE Starky % = 17.41%
|
what is the least total in gila
|
SELECT MIN Total FROM table WHERE County = Gila
|
where did hancock get 3.09%
|
SELECT County FROM table WHERE Hancock % = 3.09%
|
What is the BBM when the strike rate is 42.2?
|
SELECT BBM FROM table WHERE Strike Rate = 42.2
|
What is the economy when the strike rate is 54.0?
|
SELECT Economy Rate FROM table WHERE Strike Rate = 54.0
|
How many averages are there when the economy rate is 2.26?
|
SELECT COUNT Average FROM table WHERE Economy Rate = 2.26
|
What is the BBM when the strike rate is 42.2?
|
SELECT BBM FROM table WHERE Strike Rate = 42.2
|
How many figures for wickets when the strike rate is 54.0?
|
SELECT COUNT Wickets FROM table WHERE Strike Rate = 54.0
|
What is the strike rate when there are 17 wickets?
|
SELECT Strike Rate FROM table WHERE Wickets = 17
|
How many areas (km 2) have 151511 as the census 2006 population?
|
SELECT COUNT Area (km 2 ) FROM table WHERE Census 2006 population = 151511
|
What is the LGA name where the 2006 census population is bigger than 425208.9417698913 and administrative capital is port harcourt?
|
SELECT LGA Name FROM table WHERE Census 2006 population > 425208.9417698913 AND Administrative capital = Port Harcourt
|
What is the administrative capital of LGA name Akuku-Toru?
|
SELECT Administrative capital FROM table WHERE LGA Name = Akuku-Toru
|
What is the administrative capital that has a 2006 census population of 249425?
|
SELECT Administrative capital FROM table WHERE Census 2006 population = 249425
|
What is the maximum 2006 census population of LGA name Opobo/Nkoro?
|
SELECT MAX Census 2006 population FROM table WHERE LGA Name = Opobo/Nkoro
|
What's the minimal enrollment of any of the schools?
|
SELECT MIN Enrollment FROM table
|
When was the school whose students are nicknamed Rams founded?
|
SELECT MAX Founded FROM table WHERE Nickname = Rams
|
What's the type of the school whose students are nicknamed Chargers?
|
SELECT Type FROM table WHERE Nickname = Chargers
|
When was the school in Philadelphia, Pennsylvania founded?
|
SELECT Founded FROM table WHERE Location = Philadelphia, Pennsylvania
|
What was the total number of votes in the 2005 elections?
|
SELECT MIN Total votes FROM table WHERE Year = 2005
|
How many elections had 1423 average voters per candidate?
|
SELECT COUNT Change (percentage points) FROM table WHERE Average voters per candidate = 1423
|
How many candidates were there in the year of 1987?
|
SELECT Number of Candidates FROM table WHERE Year = 1987
|
What is the modified torque (lb/ft) when the standard hp n/a?
|
SELECT COUNT Modified torque (lb/ft) FROM table WHERE Standard HP = n/a
|
When the standard speed (6th gear) is 114, what is the minimum rpm?
|
SELECT MIN RPM FROM table WHERE Standard speed (6th gear) = 114
|
when standard speed (6th gear) is 88, what is the rpm?
|
SELECT RPM FROM table WHERE Standard speed (6th gear) = 88
|
What is the modified speed (6th gear) when standard torque (lb/ft) is 10.3 and modified torque (lb/ft) is 8.75?
|
SELECT Modified speed (6th gear) FROM table WHERE Standard torque (lb/ft) = 10.3 AND Modified torque (lb/ft) = 8.75
|
when the max speed for modified speed (6th gear) where standard speed (6th gear) is 98
|
SELECT MAX Modified speed (6th gear) FROM table WHERE Standard speed (6th gear) = 98
|
When the standard torque (lb/ft) is 11.53 how much does more is the modified hp?
|
SELECT Modified HP FROM table WHERE Standard torque (lb/ft) = 11.53
|
Which time slot did the season finale on May 18, 2004 hold?
|
SELECT Timeslot (EST) FROM table WHERE Season finale = May 18, 2004
|
how many assists did the player who played 195 minutes make
|
SELECT Assists FROM table WHERE Minutes = 195
|
what is the lowest number of blocks
|
SELECT MIN Blocks FROM table
|
what is the lowest points scored by a player who blocked 21 times
|
SELECT MIN Points FROM table WHERE Blocks = 21
|
how many times did debbie black block
|
SELECT Blocks FROM table WHERE Player = Debbie Black
|
what is the highest number of goals did the player with 27 asists score
|
SELECT MAX Field Goals FROM table WHERE Assists = 27
|
how many assists did the player who scored 251 points make
|
SELECT Assists FROM table WHERE Points = 251
|
What was the production number of the episode filmed in aug/sept 1968?
|
SELECT Prod # FROM table WHERE Filmed = Aug/Sept 1968
|
Who directed "report 2493:kidnap whose pretty girl are you"?
|
SELECT Directed by FROM table WHERE Title = "REPORT 2493:KIDNAP Whose Pretty Girl Are You"
|
When was "report 4407: heart no choice for the donor" filmed?
|
SELECT Filmed FROM table WHERE Title = "REPORT 4407: HEART No Choice for the Donor"
|
What's the highest enrollment among the schools?
|
SELECT MAX Enrollment FROM table
|
When did the school from Logan Township, Pennsylvania join the Conference?
|
SELECT Joined FROM table WHERE Location = Logan Township, Pennsylvania
|
When was the private/non-sectarian school founded?
|
SELECT Founded FROM table WHERE Type = Private/Non-sectarian
|
Where is the school whose students are nicknamed Panthers located?
|
SELECT Location FROM table WHERE Nickname = Panthers
|
How many different enrollment numbers are there for the school whose students are nicknamed Barons?
|
SELECT COUNT Enrollment FROM table WHERE Nickname = Barons
|
In how many different years did schools located in Logan Township, Pennsylvania join the Conference?
|
SELECT COUNT Joined FROM table WHERE Location = Logan Township, Pennsylvania
|
How many different isolation numbers does the Jack Mountain peak have?
|
SELECT COUNT Isolation FROM table WHERE Mountain Peak = Jack Mountain
|
What's the isolation of the mountain peak with a prominence of 1340.549 = 4,397feet 1,340m?
|
SELECT Isolation FROM table WHERE Prominence = 1340.549 = 4,397feet 1,340m
|
How many different isolation numbers does the peak with an elevation of 2782.622 = 9,127feet 2782m have?
|
SELECT COUNT Isolation FROM table WHERE Elevation = 2782.622 = 9,127feet 2782m
|
What's the isolation of the mountain peak with an elevation of 2705.793 = 8,875feet 2705m?
|
SELECT Isolation FROM table WHERE Elevation = 2705.793 = 8,875feet 2705m
|
What's the isolation of the mountain peak with prominence of 1340.549 = 4,397feet 1,340m?
|
SELECT Isolation FROM table WHERE Prominence = 1340.549 = 4,397feet 1,340m
|
How many steals did Nicole Levandusky make?
|
SELECT Steals FROM table WHERE Player = Nicole Levandusky
|
How many rebounds did Rhonda Mapp make?
|
SELECT MAX Rebounds FROM table WHERE Player = Rhonda Mapp
|
What is the largest amount of assists that Nicole Levandusky made?
|
SELECT MAX Assists FROM table WHERE Player = Nicole Levandusky
|
What is the maximum number of blocks where rebounds equal 35?
|
SELECT MAX Blocks FROM table WHERE Rebounds = 35
|
How many assists did Delisha Milton-Jones make?
|
SELECT Assists FROM table WHERE Player = DeLisha Milton-Jones
|
Name the total apps for eddie carr
|
SELECT MAX Total Apps FROM table WHERE Name = Eddie Carr
|
Name the fa cup apps for arthur morton
|
SELECT FA Cup Apps FROM table WHERE Name = Arthur Morton
|
Name the position for billy price
|
SELECT Position FROM table WHERE Name = Billy Price
|
Name the total number of position for don clegg
|
SELECT COUNT Position FROM table WHERE Name = Don Clegg
|
Name the nation where jeff barker is from
|
SELECT Nation FROM table WHERE Name = Jeff Barker
|
Name the fa cup apps for george green
|
SELECT FA Cup Apps FROM table WHERE Name = George Green
|
Name the school that was founded in 1950
|
SELECT Institution FROM table WHERE Founded = 1950
|
Name the most founded for sea gulls
|
SELECT MAX Founded FROM table WHERE Nickname = Sea Gulls
|
Name the location for eagles
|
SELECT Location FROM table WHERE Nickname = Eagles
|
Name the enrollment for 2007-08
|
SELECT Enrollment FROM table WHERE Joined = 2007-08
|
Name the least new points for steffi graf
|
SELECT MIN New points FROM table WHERE Player = Steffi Graf
|
Name the most points for champion, won in the final against amélie mauresmo
|
SELECT MAX Points FROM table WHERE Status = Champion, won in the final against Amélie Mauresmo
|
Name the further cities for slovakia and west direction
|
SELECT Further Cities FROM table WHERE Country = Slovakia AND Direction = West
|
Name the distance from north
|
SELECT Distance FROM table WHERE Direction = North
|
Name the number of direction for győr-moson-sopron
|
SELECT COUNT Direction FROM table WHERE County, Oblast or State = Győr-Moson-Sopron
|
Name the further cities for east romania
|
SELECT Further Cities FROM table WHERE Direction = East AND Country = Romania
|
Name the number of direction for debrecen
|
SELECT COUNT Direction FROM table WHERE Further Cities = Debrecen
|
What's the nickname of the students of the school founded in 1933?
|
SELECT Nickname FROM table WHERE Founded = 1933
|
On how many locations is the Saint Joseph's College of Maine located?
|
SELECT COUNT Location FROM table WHERE Institution = Saint Joseph's College of Maine
|
On how many different dates did schools from Chestnut Hill, Massachusetts join the conference?
|
SELECT COUNT Joined FROM table WHERE Location = Chestnut Hill, Massachusetts
|
What is the type of the school whose students' nickname is tigers?
|
SELECT Type FROM table WHERE Nickname = Tigers
|
What's the type of the school whose students' name is spirits?
|
SELECT Type FROM table WHERE Nickname = Spirits
|
What school is located in Chestnut Hill, Massachusetts?
|
SELECT Institution FROM table WHERE Location = Chestnut Hill, Massachusetts
|
What type is the school located in Macon, Georgia?
|
SELECT Type FROM table WHERE Location = Macon, Georgia
|
What's the nickname of the school in Maryville, Tennessee?
|
SELECT Nickname FROM table WHERE Location = Maryville, Tennessee
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.