question
stringlengths 12
244
| sql
stringlengths 22
468
|
|---|---|
What position Jason Fitzgerald played?
|
SELECT Position FROM table WHERE Player = jason fitzgerald
|
Jason Romano played for what team?
|
SELECT Team FROM table WHERE Player = jason romano
|
What are the dimensions of the amp with a 180W output?
|
SELECT Dimensions FROM table WHERE Output = 180w
|
Which player was from Fermanagh and had an average score of 22?
|
SELECT AVG Average FROM table WHERE Total = 22 AND County = fermanagh
|
How many total points did Oisin McConville have from his 5 matches?
|
SELECT COUNT Total FROM table WHERE Player = oisin mcconville AND Matches < 5
|
How many attendances have October 30, 1977 as the date, with a week greater than 7?
|
SELECT COUNT Attendance FROM table WHERE Date = october 30, 1977 AND Week > 7
|
What is the lowest attendance that has l 42-35 as the result, with a week less than 13?
|
SELECT MIN Attendance FROM table WHERE Result = l 42-35 AND Week < 13
|
Who is from south korea and has a heat less than 3?
|
SELECT Name FROM table WHERE Heat < 3 AND Nationality = south korea
|
What is the highest heat of the athlete from spain with a lane less than 7?
|
SELECT MAX Heat FROM table WHERE Nationality = spain AND Lane < 7
|
What is the average lane of the athlete from japan with a time of 4:37.35 and a heat less than 3?
|
SELECT AVG Lane FROM table WHERE Nationality = japan AND Time = 4:37.35 AND Heat < 3
|
What is the lowest Gold count if the Bronze is 4 and Silver is greater than 5?
|
SELECT MIN Gold FROM table WHERE Bronze = 4 AND Silver > 5
|
What is the Average for Silver medals that have more than 17 Golds?
|
SELECT AVG Silver FROM table WHERE Gold > 17
|
What is the highest number of Silver medals with a Total greater than 14 and more than 15 Bronze medals?
|
SELECT MAX Silver FROM table WHERE Total > 14 AND Bronze > 15
|
Who is the music-director for the song from the film khaleja who had a co-singer of hemachandra?
|
SELECT Music - Director FROM table WHERE Co - Singer = hemachandra AND Film = khaleja
|
What is the film from 2013 with a song title of "neetho edo" with a solo co-singer?
|
SELECT Film FROM table WHERE Year = 2013 AND Co - Singer = solo AND Song Title = "neetho edo"
|
What was the score for the matchup having attendance of 354?
|
SELECT Score FROM table WHERE Att. = 354
|
What nation had a medal total of less than 10, less than 1 bronze medal, in rank 11?
|
SELECT Nation FROM table WHERE Total < 10 AND Bronze < 1 AND Rank = 11
|
How many gold medals did the team that won a total of 10 medals and 3 silver medals win?
|
SELECT Gold FROM table WHERE Silver = 3 AND Total = 10
|
What is the total number of medals won by teams that won more than 11 bronze medals?
|
SELECT COUNT Total FROM table WHERE Bronze > 11
|
What is the lowest react of the athlete from the United States who has a lane less than 4?
|
SELECT MIN React FROM table WHERE Country = united states AND Lane < 4
|
What is the lowest of the athlete from sri lanka who has a lane greater than 8?
|
SELECT MIN React FROM table WHERE Country = sri lanka AND Lane > 8
|
What is the average react of athlete muna lee, who is ranked greater than 3?
|
SELECT AVG React FROM table WHERE Athlete = muna lee AND Rank > 3
|
What is the average lane of the athlete from cuba who has a time greater than 22.57 and react less than 0.245?
|
SELECT AVG Lane FROM table WHERE Time > 22.57 AND React < 0.245 AND Country = cuba
|
What is the average react of the athlete with a time less than 22.29 and a rank greater than 1?
|
SELECT AVG React FROM table WHERE Time < 22.29 AND Rank > 1
|
Who is the Opponent on December 7, 2003?
|
SELECT Opponent FROM table WHERE Date = december 7, 2003
|
What is the Tv Time of the game with an Attendance of 73,578?
|
SELECT TV Time FROM table WHERE Attendance = 73,578
|
What is the highest result for Wallace Spearmon when the reaction time is greater than 0.167?
|
SELECT MAX Result FROM table WHERE Name = wallace spearmon AND Reaction Time > 0.167
|
What was the result for Lane 3?
|
SELECT Result FROM table WHERE Lane = 3
|
What is the lowest result for Christian Malcolm with a reaction time greater than 0.185 and a lane higher than 3?
|
SELECT MIN Result FROM table WHERE Reaction Time > 0.185 AND Name = christian malcolm AND Lane > 3
|
What are the lowest conceded with 1 draw, and a score larger than 14?
|
SELECT MIN Conceded FROM table WHERE Draws = 1 AND Scored > 14
|
What are the lowest losses with more than 13 scored, and more than 7 draws?
|
SELECT MIN Losses FROM table WHERE Scored > 13 AND Draws > 7
|
What is the average played for less than 8 points?
|
SELECT AVG Played FROM table WHERE Points < 8
|
What competition has a Result of 1β2?
|
SELECT Competition FROM table WHERE Result = 1β2
|
What is moving from fee in Hun country?
|
SELECT Moving from FROM table WHERE Country = hun
|
What is thr type in Aut country?
|
SELECT Type FROM table WHERE Country = aut
|
Who is the owner of the radio station that plays adult hits?
|
SELECT Owner FROM table WHERE Format = adult hits
|
What is the call sign for the radio owned by astral media?
|
SELECT Call sign FROM table WHERE Owner = astral media
|
What is the frequency for the radio owned by bell media with a call sign of chsu-fm?
|
SELECT Frequency FROM table WHERE Owner = bell media AND Call sign = chsu-fm
|
What is the branding for the radio with a frequency of 1150 am?
|
SELECT Branding FROM table WHERE Frequency = 1150 am
|
What was the format for the radio with a frequency of 00 96.3 fm?
|
SELECT Format FROM table WHERE Frequency = 00 96.3 fm
|
Who is the owner of the radio frequency of 0 101.5 fm?
|
SELECT Owner FROM table WHERE Frequency = 0 101.5 fm
|
how many times is the name matt targett and the lane higher than 7?
|
SELECT COUNT Time FROM table WHERE Name = matt targett AND Lane > 7
|
what is the highest time when the rank is less than 5 and the name is eamon sullivan?
|
SELECT MAX Time FROM table WHERE Rank < 5 AND Name = eamon sullivan
|
what is the average rank when the lane is more than 4 and the name is dominik meichtry?
|
SELECT AVG Rank FROM table WHERE Lane > 4 AND Name = dominik meichtry
|
What is the 2012 Employees (Total) when the rank (2012) is 7?
|
SELECT 2012 Employees (Total) FROM table WHERE Rank (2012) = 7
|
What is the total number of 2012 Employees (Total) when 2007 Employees (Total) is 8,985, and rank (2010) is smaller than 9?
|
SELECT COUNT 2012 Employees (Total) FROM table WHERE 2007 Employees (Total) = 8,985 AND Rank (2010) < 9
|
What is the lowest 2010 Employees (Total) when the 2007 Employees (Total) is see note, and the 2012 Employees (Total) is larger than 99,400?
|
SELECT MIN 2010 Employees (Total) FROM table WHERE 2007 Employees (Total) = see note AND 2012 Employees (Total) > 99,400
|
What shows for 2010 Employees (Total) when the employer is University of Alberta?
|
SELECT SUM 2010 Employees (Total) FROM table WHERE Employer = university of alberta
|
How many floors when the rank is 73.0 72=?
|
SELECT Floors FROM table WHERE Rank = 73.0 72=
|
What year was the 190 South Lasalle Street?
|
SELECT MAX Year FROM table WHERE Name = 190 south lasalle street
|
What rank has a Time of 4:00.191?
|
SELECT Rank FROM table WHERE Time = 4:00.191
|
What is the time for Brazil?
|
SELECT Time FROM table WHERE Country = brazil
|
what is the date when the format is cd (limited edition steel-box) from united kingdom?
|
SELECT Date FROM table WHERE Format = cd (limited edition steel-box) AND Country = united kingdom
|
What is the country that has the format of cd, the label of sony music and the catalogue no sicp-2055?
|
SELECT Country FROM table WHERE Format = cd AND Label = sony music AND Catalogue No. = sicp-2055
|
what is the format for the country united kingdom on 20 october 2008?
|
SELECT Format FROM table WHERE Country = united kingdom AND Date = 20 october 2008
|
what is the catalogue no when the format is cd (limited edition steel-box) and the country is germany?
|
SELECT Catalogue No. FROM table WHERE Format = cd (limited edition steel-box) AND Country = germany
|
Which Total has a Rank of 4, and a Silver larger than 2?
|
SELECT MIN Total FROM table WHERE Rank = 4 AND Silver > 2
|
How much Total has a Rank of 5, and a Bronze larger than 3?
|
SELECT SUM Total FROM table WHERE Rank = 5 AND Bronze > 3
|
Which Silver has a Nation of total, and a Bronze smaller than 18?
|
SELECT MAX Silver FROM table WHERE Nation = total AND Bronze < 18
|
How much Silver has a Nation of total, and a Total smaller than 54?
|
SELECT COUNT Silver FROM table WHERE Nation = total AND Total < 54
|
What was the result for the award for best current affairs presenter?
|
SELECT Result FROM table WHERE Award = best current affairs presenter
|
Which award was given to Lianhe Zaobao?
|
SELECT Award FROM table WHERE Organisation = lianhe zaobao
|
What's the release date of Feather Finger with an MM Series?
|
SELECT Release date FROM table WHERE Series = mm AND Title = feather finger
|
Which Opponent has a Venue of h, and a Result of 0β1, and a Date of 29 august 1998?
|
SELECT Opponent FROM table WHERE Venue = h AND Result = 0β1 AND Date = 29 august 1998
|
Which Opponent has a Result of 1β1, and a Date of 28 november 1998?
|
SELECT Opponent FROM table WHERE Result = 1β1 AND Date = 28 november 1998
|
What was the venue on 14 november 1998?
|
SELECT Venue FROM table WHERE Date = 14 november 1998
|
Which Place is the highest one that has a Draw larger than 1, and 49 Points?
|
SELECT MAX Place FROM table WHERE Draw > 1 AND Points = 49
|
Which Song has Points smaller than 54, and a Draw smaller than 4, and a Place smaller than 10?
|
SELECT Song FROM table WHERE Points < 54 AND Draw < 4 AND Place < 10
|
What is the bronze number when the total is 54/
|
SELECT AVG Bronze FROM table WHERE Total = 54
|
What is the least bronze number when the silver is less than 0?
|
SELECT MIN Bronze FROM table WHERE Silver < 0
|
What is the least silver when the total is more than 2, bronze is 3, gold is more than 0, and rank is 1?
|
SELECT MIN Silver FROM table WHERE Total > 2 AND Bronze = 3 AND Gold > 0 AND Rank = 1
|
What is the number of silver when the total is more than 2, and bronze is less than 3, with a rank of 7?
|
SELECT COUNT Silver FROM table WHERE Total > 2 AND Bronze < 3 AND Rank = 7
|
Which Time has a Lane smaller than 4, and a Rank larger than 6?
|
SELECT AVG Time FROM table WHERE Lane < 4 AND Rank > 6
|
Which Rank has a Nationality of france, and a Name of alain bernard, and a Lane smaller than 6?
|
SELECT AVG Rank FROM table WHERE Nationality = france AND Name = alain bernard AND Lane < 6
|
Which Nationality has a Rank larger than 1, and a Time smaller than 22.12, and a Lane smaller than 4, and a Name of ashley callus?
|
SELECT Nationality FROM table WHERE Rank > 1 AND Time < 22.12 AND Lane < 4 AND Name = ashley callus
|
When the date is 8 october 2008 what is the sum of attendance?
|
SELECT SUM Attendance FROM table WHERE Date = 8 october 2008
|
What date has an against of pohang steelers?
|
SELECT Date FROM table WHERE Against = pohang steelers
|
What weekday has an against of kashima antlers?
|
SELECT Weekday FROM table WHERE Against = kashima antlers
|
What was the final score of Game #4?
|
SELECT Score FROM table WHERE Game = 4
|
Which Level has a Leading scorer 1 of tom greaves 8?
|
SELECT Level FROM table WHERE Leading scorer 1 = tom greaves 8
|
Which Leading scorer 1 has a Season of 2010β11?
|
SELECT Leading scorer 1 FROM table WHERE Season = 2010β11
|
Which Leading scorer 1 has a League Contested of northern premier league premier division, and an FA Cup of 2q?
|
SELECT Leading scorer 1 FROM table WHERE LeagueContested = northern premier league premier division AND FA Cup = 2q
|
Which Level has a League Contested of northern premier league premier division, and a Season of 2011β12?
|
SELECT AVG Level FROM table WHERE LeagueContested = northern premier league premier division AND Season = 2011β12
|
What is the least Top-5 when 1 is the cuts made?
|
SELECT MIN Top-5 FROM table WHERE Cuts made = 1
|
With events less than 0, what is the fewest Top-5?
|
SELECT MIN Top-5 FROM table WHERE Events < 0
|
How many wins of average has cuts made less than 0?
|
SELECT AVG Wins FROM table WHERE Cuts made < 0
|
How many events total is the Top-5 2, and 4 is the cuts made, and less than 0 wins?
|
SELECT COUNT Events FROM table WHERE Top-5 = 2 AND Cuts made = 4 AND Wins < 0
|
In the Open Championship with more than 3 cuts made, what is the average wins?
|
SELECT AVG Wins FROM table WHERE Tournament = the open championship AND Cuts made > 3
|
What lane did the barbados swimmer compete in before heat 3?
|
SELECT Lane FROM table WHERE Heat < 3 AND Nationality = barbados
|
What was the time of the 5th ranked swimmer who swam after heat 3 and was in a lane under 5?
|
SELECT Time FROM table WHERE Heat > 3 AND Lane < 5 AND Rank = 5
|
What is the average population for an area less than 433.7km and a 23013 code?
|
SELECT AVG Population FROM table WHERE Area (km 2 ) < 433.7 AND Code = 23013
|
What is the total code number for Amadiba?
|
SELECT COUNT Code FROM table WHERE Place = amadiba
|
What is the total capacity for the Leicester Tigers?
|
SELECT COUNT Capacity FROM table WHERE Club = leicester tigers
|
What town has the Welford Road Stadium?
|
SELECT City/Town FROM table WHERE Stadium = welford road
|
What date was the Cross Code Debut of rl 1st test great britain v australia, and the Int'l Debut was RU Five Nations v Ireland?
|
SELECT Date FROM table WHERE Cross Code Debut = rl 1st test great britain v australia AND Int'l Debut = ru five nations v ireland
|
What year was the player David Rose?
|
SELECT SUM Year FROM table WHERE Player = david rose
|
What is the median family income when the per capita is $24,114?
|
SELECT Median family income FROM table WHERE Per capita income = $24,114
|
What is the median household income when the per capita is $21,585?
|
SELECT Median household income FROM table WHERE Per capita income = $21,585
|
What is the population where the median family income is $48,446 and there are more than 35,343 households?
|
SELECT AVG Population FROM table WHERE Median family income = $48,446 AND Number of households > 35,343
|
What is the population where the median household income is $87,832 and there are fewer than 64,886 households?
|
SELECT AVG Population FROM table WHERE Median household income = $87,832 AND Number of households < 64,886
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.