question stringlengths 12 244 | sql stringlengths 22 468 |
|---|---|
What is the traffic direction of 97th street? | SELECT Traffic direction FROM table WHERE Street = 97th street |
What is the # of lanes on 20th street? | SELECT # of lanes FROM table WHERE Street = 20th street |
What is the long of the player with 16 yards and less than 1 TD? | SELECT SUM Long FROM table WHERE Yards = 16 AND TD's < 1 |
What is the highest place a player with 4 long and less than 2 TDs has? | SELECT MIN Place FROM table WHERE Long = 4 AND TD's < 2 |
Who drove the Marlboro Mclaren Peugeot? | SELECT Driver FROM table WHERE Entrant = marlboro mclaren peugeot |
What tyre did Mika Salo use for team Lotus? | SELECT Tyre FROM table WHERE Entrant = team lotus AND Driver = mika salo |
Which driver drove the Tourtel Larrousse F1? | SELECT Driver FROM table WHERE Entrant = tourtel larrousse f1 |
Who constructed Gerhard Berger car that went all rounds? | SELECT Constructor FROM table WHERE Rounds = all AND Driver = gerhard berger |
Who visited phoenix with a Record of 2–5–0? | SELECT Visitor FROM table WHERE Home = phoenix AND Record = 2–5–0 |
What decision had a Record of 3–5–0? | SELECT Decision FROM table WHERE Record = 3–5–0 |
What is the low attendance was based in phoenix with a Record of 1–0–0? | SELECT MIN Attendance FROM table WHERE Home = phoenix AND Record = 1–0–0 |
What was the score did phoenix have with a Record of 3–6–0 at home? | SELECT Score FROM table WHERE Home = phoenix AND Record = 3–6–0 |
What was the record while at home in Anaheim? | SELECT Record FROM table WHERE Home = anaheim |
Which inning were the Minnesota Twins in on 06-07-1961? | SELECT Inning FROM table WHERE Team = minnesota twins AND Date = 06-07-1961 |
How many people attended the game where the home team scored 8.10 (58)? | SELECT MAX Crowd FROM table WHERE Home team score = 8.10 (58) |
Who was the away team at the game held at Arden Street Oval? | SELECT Away team FROM table WHERE Venue = arden street oval |
What is the name of the venue that away team footscray played at? | SELECT Venue FROM table WHERE Away team = footscray |
What is the name of the venue where the away team scored 10.11 (71)? | SELECT Venue FROM table WHERE Away team score = 10.11 (71) |
What date was the game played at princes park? | SELECT Date FROM table WHERE Venue = princes park |
Who is the away team that played at punt road oval where the crowd was larger than 17,000? | SELECT Away team FROM table WHERE Crowd > 17,000 AND Venue = punt road oval |
How many tracks were Recorded 1964-01-08? | SELECT COUNT Track FROM table WHERE Recorded = 1964-01-08 |
WhatTranslation has a Composer of jacques brel, rod mckuen? | SELECT Translation FROM table WHERE Composer = jacques brel, rod mckuen |
Which recording has a Track larger than 2, and a Translation of the last meal? | SELECT Recorded FROM table WHERE Track > 2 AND Translation = the last meal |
Which title has a Track of 3? | SELECT Title FROM table WHERE Track = 3 |
When was the home game when the New Jersey team's record became 7-23-7? | SELECT Date FROM table WHERE Home = new jersey AND Record = 7-23-7 |
What college has a pick of 11? | SELECT College FROM table WHERE Pick = 11 |
What is the average pick of Florida State? | SELECT AVG Pick FROM table WHERE College = florida state |
What is the average pick of San Diego State? | SELECT AVG Pick FROM table WHERE College = san diego state |
What is the lowest value for SP+FS for Miljan Begovic with a greater than 189 place? | SELECT MIN SP+FS FROM table WHERE Name = miljan begovic AND Placings > 189 |
What is the average points value for a rank less than 12 for David Santee? | SELECT AVG Points FROM table WHERE Rank < 12 AND Name = david santee |
What is the total number for Rank with 185.16 points and a SP+FS value greater than 5? | SELECT COUNT Rank FROM table WHERE Points = 185.16 AND SP+FS > 5 |
What is the largest value for SP+FS with more than 164.56 points for Mitsuru Matsumura in a Rank greater than 1? | SELECT MAX SP+FS FROM table WHERE Points > 164.56 AND Rank > 1 AND Name = mitsuru matsumura |
When phonetic realisation is [[[|u]]], what is the variant with niqqud? | SELECT Variant (with Niqqud ) FROM table WHERE Phonetic Realisation = [[[|u]]] |
When a variant without niqqud is as middle letter: וו with a phonemic value of /v/, what is the variant with niqqud? | SELECT Variant (with Niqqud ) FROM table WHERE Phonemic Value = /v/ AND without Niqqud = as middle letter: וו |
What is the phonetic realisation if the phonemic value is /v/ and the without niqqud is as initial letter: ו? | SELECT Phonetic Realisation FROM table WHERE Phonemic Value = /v/ AND without Niqqud = as initial letter: ו |
Give me an english example of a variant with niqqud of וֹ? | SELECT English example FROM table WHERE Variant (with Niqqud ) = וֹ |
What is the variant with niqqud for a phonetic realisation of [[[|v]]]? | SELECT Variant (with Niqqud ) FROM table WHERE Phonetic Realisation = [[[|v]]] |
If a variant without niqqud is as final letter: ו or יו, what is the phonetic realisation? | SELECT Phonetic Realisation FROM table WHERE without Niqqud = as final letter: ו or יו |
What position does pick 113 play? | SELECT Position FROM table WHERE Pick = 113 |
What is the school of Victor Jones, who was picked further than number 225? | SELECT School FROM table WHERE Pick > 225 AND Player = victor jones |
What is the total pick number of Virginia Tech? | SELECT COUNT Pick FROM table WHERE School = virginia tech |
What is the position of a player from North Carolina? | SELECT Position FROM table WHERE School = north carolina |
What is the home team score of St Kilda? | SELECT Home team score FROM table WHERE Home team = st kilda |
What is the date for home team Collingwood? | SELECT Date FROM table WHERE Home team = collingwood |
What is the home team score for St Kilda? | SELECT Home team score FROM table WHERE Home team = st kilda |
Tell me the named after for diameter less than 19.2 and latitude more than -37.5 with longitude less than 67.3 | SELECT Named after FROM table WHERE Diameter (km) < 19.2 AND Latitude > -37.5 AND Longitude < 67.3 |
Tell me the named for latitude of 6.4 | SELECT Named after FROM table WHERE Latitude = 6.4 |
Tell me the name for longitude more than 103.8 and latitude of -11.4 | SELECT Name FROM table WHERE Longitude > 103.8 AND Latitude = -11.4 |
Tell me the sum of longitude for diameter being 22.6 and latitude less than -12.4 | SELECT SUM Longitude FROM table WHERE Diameter (km) = 22.6 AND Latitude < -12.4 |
What was the overall pick for Doug Sproule of the United States? | SELECT Overall FROM table WHERE Nationality = united states AND Player = doug sproule |
what is the lowest viewers (m) when the share is more than 13? | SELECT MIN Viewers (m) FROM table WHERE Share > 13 |
what is the average rating when the air date is november 23, 2007? | SELECT AVG Rating FROM table WHERE Air date = november 23, 2007 |
what is the total viewers (m) when the rating is 6.4 and the share is more than 11? | SELECT COUNT Viewers (m) FROM table WHERE Rating = 6.4 AND Share > 11 |
Who wrote the episode that was directed by Terry Ingram? | SELECT Written by FROM table WHERE Directed by = terry ingram |
Which is the episode # of the episode titled "The Man Behind the Curtain"? | SELECT Episode # FROM table WHERE Title = "the man behind the curtain" |
What is the title of the episode that was directed by Roy Dupuis? | SELECT Title FROM table WHERE Directed by = roy dupuis |
Who directed the episode that originally aired on February 25, 2001? | SELECT Directed by FROM table WHERE Original airdate = february 25, 2001 |
What is the episode # of the episode that originally aired on January 21, 2001? | SELECT Episode # FROM table WHERE Original airdate = january 21, 2001 |
Who directed episode # 92 (4)? | SELECT Directed by FROM table WHERE Episode # = 92 (4) |
what is the stream(s) and / or lake(s) when the date founded is 1959? | SELECT Stream(s) and / or lake(s) FROM table WHERE Date founded = 1959 |
What is the area in acres (ha) for the park bald eagle state park? | SELECT Area in acres (ha) FROM table WHERE Park name = bald eagle state park |
what is the most recent date founded in elk county? | SELECT MAX Date founded FROM table WHERE County or counties = elk county |
how many parks are name beltzville state park? | SELECT COUNT Date founded FROM table WHERE Park name = beltzville state park |
Which rank has a total smaller than 1? | SELECT AVG Rank FROM table WHERE Total < 1 |
What is the year for the ocean? | SELECT Year FROM table WHERE English title = the ocean |
Name the representation for om fjorten dage | SELECT Representing FROM table WHERE Original title = om fjorten dage |
Name the representing for englar alheimsins | SELECT Representing FROM table WHERE Original title = englar alheimsins |
Name the original title for years before 1977 and author of lagercrantz olof lagercrantz | SELECT Original title FROM table WHERE Year < 1977 AND Author = lagercrantz olof lagercrantz |
Name the representating for ingenjör andrées luftfärd | SELECT Representing FROM table WHERE Original title = ingenjör andrées luftfärd |
What is the distance for the team time trial? | SELECT Distance FROM table WHERE Type = team time trial |
What was the course on 13 may? | SELECT Course FROM table WHERE Date = 13 may |
What type has rest day as a course and was on 21 may? | SELECT Type FROM table WHERE Course = rest day AND Date = 21 may |
What's the race name that the driver Innes Ireland won? | SELECT Race Name FROM table WHERE Winning driver = innes ireland |
What's the score in the home game against the Charlotte Bobcats? | SELECT Score FROM table WHERE Visitor = charlotte bobcats |
What was the date of the game played at Victoria Park? | SELECT Date FROM table WHERE Venue = victoria park |
What was the home team's score when the away team scored 15.9 (99)? | SELECT Home team score FROM table WHERE Away team score = 15.9 (99) |
Who was the home team when the crowd was larger than 13,557? | SELECT Home team FROM table WHERE Crowd > 13,557 |
Where did Richmond play as the away team? | SELECT Venue FROM table WHERE Away team = richmond |
Tell me the years competed for panthers | SELECT Years competed FROM table WHERE Nickname = panthers |
What is the release date of the CD by EG Records in the UK? | SELECT SUM Release Date FROM table WHERE Media = cd AND Country = uk AND Music Label = eg records |
What is the release date by Editions EG in the Netherlands? | SELECT AVG Release Date FROM table WHERE Music Label = editions eg AND Country = netherlands |
What is the music label with the catalogue number enocd 10? | SELECT Music Label FROM table WHERE Catalogue Number = enocd 10 |
What is the release date by Virgin? | SELECT AVG Release Date FROM table WHERE Music Label = virgin |
Which team has Yuriy Hruznov as coach? | SELECT Team FROM table WHERE Coach = yuriy hruznov |
Where is Dynamo-2 located? | SELECT Location FROM table WHERE Team = dynamo-2 |
Where is Shakhtar-2 located? | SELECT Location FROM table WHERE Team = shakhtar-2 |
For the gte northwest classic with the score of 207 (-9), what is the average 1st prize ($) | SELECT AVG 1st Prize( $ ) FROM table WHERE Score = 207 (-9) AND Tournament = gte northwest classic |
For sep 18 what is the total number of 1 prize ($) | SELECT COUNT 1st Prize( $ ) FROM table WHERE Date = sep 18 |
What is the winner for Virginia? | SELECT Winner FROM table WHERE Location = virginia |
On what date was the gte north classic tournament? | SELECT Date FROM table WHERE Tournament = gte north classic |
When did an away team score 14.19 (103)? | SELECT Date FROM table WHERE Away team score = 14.19 (103) |
What home team plays at princes park? | SELECT Home team FROM table WHERE Venue = princes park |
When did an away team score 17.8 (110)? | SELECT Date FROM table WHERE Away team score = 17.8 (110) |
Where does the home team fitzroy play? | SELECT Venue FROM table WHERE Home team = fitzroy |
Which extra resulted in 2nd before 2005? | SELECT Extra FROM table WHERE Result = 2nd AND Year < 2005 |
Which venue resulted in 2nd before 2005? | SELECT Venue FROM table WHERE Result = 2nd AND Year < 2005 |
What was the attendance at the Red Sox game that had a loss of Wakefield (7–10)? | SELECT Attendance FROM table WHERE Loss = wakefield (7–10) |
What was the loss of the Red Sox game when they had a record of 77–67? | SELECT Loss FROM table WHERE Record = 77–67 |
Which Tournament has Pat Cash as a runner-up? | SELECT Tournament FROM table WHERE Runner-up = pat cash |
Who is the winner for the Tournament in Hong Kong with a third place winner named Mikael Pernfors? | SELECT Winner FROM table WHERE Third Place = mikael pernfors AND Tournament = hong kong |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.