instruction
stringclasses
1 value
input
stringlengths
12
244
output
stringlengths
22
468
Translate the following into a SQL query
What's the total number of games that had more than 34 points and exactly 3 losses?
SELECT COUNT Games FROM table WHERE Points = 34 AND Losses = 3
Translate the following into a SQL query
What's the total number of losses with less than 19 points and more than 36 games?
SELECT COUNT Losses FROM table WHERE Points < 19 AND Games > 36
Translate the following into a SQL query
Which season has less than 26 points, more than 18 games, and exactly 13 losses?
SELECT Season FROM table WHERE Points < 26 AND Games > 18 AND Losses = 13
Translate the following into a SQL query
What is the highest crowd number of the game where the away team was south melbourne?
SELECT MAX Crowd FROM table WHERE Away team = south melbourne
Translate the following into a SQL query
What is the home team score that played the away team of north melbourne?
SELECT Home team score FROM table WHERE Away team = north melbourne
Translate the following into a SQL query
What is the away team score of the game that was played at princes park?
SELECT Away team score FROM table WHERE Venue = princes park
Translate the following into a SQL query
If the Home team had a score of 21.22 (148), what is the sum of all Crowds?
SELECT SUM Crowd FROM table WHERE Home team score = 21.22 (148)
Translate the following into a SQL query
If the Home team is carlton, what's the lowest Crowd found?
SELECT MIN Crowd FROM table WHERE Home team = carlton
Translate the following into a SQL query
What is the average amount of attenders when away team score is 12.10 (82)?
SELECT AVG Crowd FROM table WHERE Away team score = 12.10 (82)
Translate the following into a SQL query
What is the away team score when the home team scored 11.11 (77)?
SELECT Away team score FROM table WHERE Home team score = 11.11 (77)
Translate the following into a SQL query
Where did the game take place when the away team score is 15.11 (101)?
SELECT Venue FROM table WHERE Away team score = 15.11 (101)
Translate the following into a SQL query
What is the Block A value for an El NOSAWA Mendoza value of kondo (7:08)?
SELECT Block A FROM table WHERE El NOSAWA Mendoza = kondo (7:08)
Translate the following into a SQL query
What is the PEPE Michinoku value for a Ryuji Hijikata value of sabin (12:33)?
SELECT PEPE Michinoku FROM table WHERE Ryuji Hijikata = sabin (12:33)
Translate the following into a SQL query
What is the Shuji Kondo value related to a PEPE Michinoku value of sabin (14:43)?
SELECT Shuji Kondo FROM table WHERE PEPE Michinoku = sabin (14:43)
Translate the following into a SQL query
when did asts reach 0?
SELECT From FROM table WHERE Asts = 0
Translate the following into a SQL query
beyond 2001, what is the lowest asts from a pos of sf?
SELECT MIN Asts FROM table WHERE Pos. = sf AND From > 2001
Translate the following into a SQL query
Tell me the declination with NGC number larger than 5750
SELECT Declination ( J2000 ) FROM table WHERE NGC number > 5750
Translate the following into a SQL query
Tell me the final position for fa community shield
SELECT Final position / round FROM table WHERE Competition = fa community shield
Translate the following into a SQL query
Name the first match for 11 may 2008
SELECT First match FROM table WHERE Last match = 11 may 2008
Translate the following into a SQL query
What is the total number of Lifetime India Distributor share earlier than 2009?
SELECT COUNT Lifetime India Distributor share FROM table WHERE Year < 2009
Translate the following into a SQL query
When did South Melbourne play as the home team?
SELECT Date FROM table WHERE Home team = south melbourne
Translate the following into a SQL query
What was the largest amount of spectators when St Kilda was the away team?
SELECT MAX Crowd FROM table WHERE Away team = st kilda
Translate the following into a SQL query
What was Richmond's score when it was the away team?
SELECT Away team score FROM table WHERE Away team = richmond
Translate the following into a SQL query
what is the declination (j2000) that has a constellation of hydra and a right ascension (j2000) of 10h46m44.9s?
SELECT Declination ( J2000 ) FROM table WHERE Constellation = hydra AND Right ascension ( J2000 ) = 10h46m44.9s
Translate the following into a SQL query
What is the ngc number when the object type is lenticular galaxy and the constellation is hydra?
SELECT MAX NGC number FROM table WHERE Object type = lenticular galaxy AND Constellation = hydra
Translate the following into a SQL query
what is the object type when the ngc number is 3314?
SELECT Object type FROM table WHERE NGC number = 3314
Translate the following into a SQL query
what is the ngc number when the constellation is leo and the declination (j2000) is °42′13″?
SELECT AVG NGC number FROM table WHERE Constellation = leo AND Declination ( J2000 ) = °42′13″
Translate the following into a SQL query
what is the right ascension (j2000) with the ngc number less than 3384, the constellation is hydra and the object type is spiral galaxy?
SELECT Right ascension ( J2000 ) FROM table WHERE NGC number < 3384 AND Constellation = hydra AND Object type = spiral galaxy
Translate the following into a SQL query
What competition was played on October 7, 2011?
SELECT Competition FROM table WHERE Date = october 7, 2011
Translate the following into a SQL query
What's the score for 1992, with the result of a loss?
SELECT Score FROM table WHERE Year = 1992 AND Result = loss
Translate the following into a SQL query
What national league has limoges csp, and french basketball cup?
SELECT National League FROM table WHERE Club = limoges csp AND National Cup = french basketball cup
Translate the following into a SQL query
What is the club that has the turkish basketball cup and fiba eurochallenge (3rd tier)?
SELECT Club FROM table WHERE National Cup = turkish basketball cup AND European Cup = fiba eurochallenge (3rd tier)
Translate the following into a SQL query
What national cup has fc barcelona?
SELECT National Cup FROM table WHERE Club = fc barcelona
Translate the following into a SQL query
Name the series ^ when the CPU clock is 1500 and the model is t-52r
SELECT Series ^ FROM table WHERE CPU clock ( MHz ) = 1500 AND Model = t-52r
Translate the following into a SQL query
Name the average DDR3 speed for model e-350
SELECT AVG DDR3 speed FROM table WHERE Model = e-350
Translate the following into a SQL query
Name the CPU clock for L2 cache of 2*512 and series ^ of e-series and DDR3 speed of 1066
SELECT CPU clock ( MHz ) FROM table WHERE L2 cache (KiB) = 2*512 AND Series ^ = e-series AND DDR3 speed = 1066
Translate the following into a SQL query
who lost on august 21?
SELECT Loss FROM table WHERE Date = august 21
Translate the following into a SQL query
On August 10, what was the record against the Expos?
SELECT Record FROM table WHERE Opponent = expos AND Date = august 10
Translate the following into a SQL query
What is the average laps for lorenzo bandini with a grid under 3?
SELECT AVG Laps FROM table WHERE Driver = lorenzo bandini AND Grid < 3
Translate the following into a SQL query
What driver has under 53 laps, a grid smaller than 14, and a time/retired of differential?
SELECT Driver FROM table WHERE Laps < 53 AND Grid < 14 AND Time/Retired = differential
Translate the following into a SQL query
What music is in the film with an Uncut run time of 95 minutes?
SELECT Music FROM table WHERE Uncut run time = 95 minutes
Translate the following into a SQL query
What country is the film that has music of nino oliviero?
SELECT Country FROM table WHERE Music = nino oliviero
Translate the following into a SQL query
What music is in the film before 1963?
SELECT Music FROM table WHERE Year < 1963
Translate the following into a SQL query
What music is in the film before 1962?
SELECT Music FROM table WHERE Year = 1962
Translate the following into a SQL query
Which home team scored 15.16 (106)?
SELECT Home team FROM table WHERE Home team score = 15.16 (106)
Translate the following into a SQL query
Which team played as the home team when north melbourne played as away?
SELECT Home team FROM table WHERE Away team = north melbourne
Translate the following into a SQL query
When the away team scored 7.13 (55), who were they playing?
SELECT Home team score FROM table WHERE Away team score = 7.13 (55)
Translate the following into a SQL query
When the home team scored 19.10 (124), what was the total crowd number?
SELECT COUNT Crowd FROM table WHERE Home team score = 19.10 (124)
Translate the following into a SQL query
what is the position of pick #53?
SELECT Position FROM table WHERE Pick # = 53
Translate the following into a SQL query
what is the position for andrew paopao?
SELECT Position FROM table WHERE Player = andrew paopao
Translate the following into a SQL query
In which venue is South Melbourne the home team?
SELECT Venue FROM table WHERE Home team = south melbourne
Translate the following into a SQL query
In the game where the home team scored 12.14 (86), what was the total crowd number?
SELECT COUNT Crowd FROM table WHERE Home team score = 12.14 (86)
Translate the following into a SQL query
When South Melbourne was the home team, who was the away team?
SELECT Away team FROM table WHERE Home team = south melbourne
Translate the following into a SQL query
What venue is Hawthorn the home team at?
SELECT Venue FROM table WHERE Home team = hawthorn
Translate the following into a SQL query
What is the capacity for the arena in Chester?
SELECT Capacity FROM table WHERE City/Area = chester
Translate the following into a SQL query
Which arena has a capactiy of 1,100?
SELECT Arena FROM table WHERE Capacity = 1,100
Translate the following into a SQL query
What is the last season that the Scottish Rocks played?
SELECT Last season FROM table WHERE Team = scottish rocks
Translate the following into a SQL query
Which arena has the Milton Keynes Lions and a capacity of 800?
SELECT Arena FROM table WHERE Capacity = 800 AND Team = milton keynes lions
Translate the following into a SQL query
What is the last season the Worcester Wolves played?
SELECT Last season FROM table WHERE Team = worcester wolves
Translate the following into a SQL query
Which team is from Birmingham & Telford?
SELECT Team FROM table WHERE City/Area = birmingham & telford
Translate the following into a SQL query
Who has the least wins when ranked above 3 with over 10 events?
SELECT MIN Wins FROM table WHERE Rank < 3 AND Events > 10
Translate the following into a SQL query
How many wins for billy casper over 8 events and uner $71,979 in earnings?
SELECT MIN Wins FROM table WHERE Events = 8 AND Player = billy casper AND Earnings ( $ ) < 71,979
Translate the following into a SQL query
What is the lowest rank for a player earning $71,979?
SELECT MIN Rank FROM table WHERE Earnings ( $ ) < 71,979
Translate the following into a SQL query
What was the Gdp (bn) for the region that has ioannina as its Capital?
SELECT GDP ( bn ) FROM table WHERE Capital = ioannina
Translate the following into a SQL query
Which Region has an Area of 9,451km²?
SELECT Region FROM table WHERE Area (km²) = 9,451
Translate the following into a SQL query
Which capital has a population of 308,610?
SELECT Capital FROM table WHERE Population = 308,610
Translate the following into a SQL query
Which Region has an area of 14,037km²?
SELECT Region FROM table WHERE Area (km²) = 14,037
Translate the following into a SQL query
What is the GDP for the region with an area of 7,263 sq. mi.?
SELECT GDP ( bn ) FROM table WHERE Area (sq. mi.) = 7,263
Translate the following into a SQL query
What is the population for the region with an area of 6,004 sq. Mi.?
SELECT Population FROM table WHERE Area (sq. mi.) = 6,004
Translate the following into a SQL query
What is the lowest episode # with an air date of October 31, 2001?
SELECT MIN Episode # FROM table WHERE Airdate = october 31, 2001
Translate the following into a SQL query
What is the average episode # located in Tanzania and whose # in season is larger than 5?
SELECT AVG Episode # FROM table WHERE Location = tanzania AND # in Season > 5
Translate the following into a SQL query
What is the average episode # with a name of the origin of Donnie (part 1)?
SELECT AVG Episode # FROM table WHERE Episode Name = the origin of donnie (part 1)
Translate the following into a SQL query
Which air date has 5 for # in season?
SELECT Airdate FROM table WHERE # in Season = 5
Translate the following into a SQL query
What venue is home for the Melbourne team?
SELECT Venue FROM table WHERE Home team = melbourne
Translate the following into a SQL query
What is the venue for the home team in Melbourne?
SELECT Venue FROM table WHERE Home team = melbourne
Translate the following into a SQL query
Which venue has a home team that has a score of 18.16 (124)?
SELECT Venue FROM table WHERE Home team score = 18.16 (124)
Translate the following into a SQL query
Which home team played an away team that had a score of 16.15 (111)?
SELECT Home team FROM table WHERE Away team score = 16.15 (111)
Translate the following into a SQL query
Which License has a System of amiga, and a Name of pocketuae?
SELECT License FROM table WHERE System = amiga AND Name = pocketuae
Translate the following into a SQL query
What name has a License of gpl, and an Actual version of 0.8.29wip4?
SELECT Name FROM table WHERE License = gpl AND Actual version = 0.8.29wip4
Translate the following into a SQL query
Which platform has an Actual version of 0.147?
SELECT Platform FROM table WHERE Actual version = 0.147
Translate the following into a SQL query
Which name has a License of gpl, and a Platform of windows?
SELECT Name FROM table WHERE License = gpl AND Platform = windows
Translate the following into a SQL query
Which system is named mess?
SELECT System FROM table WHERE Name = mess
Translate the following into a SQL query
Which Platform has an Actual version of 0.8.29?
SELECT Platform FROM table WHERE Actual version = 0.8.29
Translate the following into a SQL query
What's the earliest year that had a category of best supporting actress at the asian film awards?
SELECT MIN Year FROM table WHERE Category = best supporting actress AND Award = asian film awards
Translate the following into a SQL query
Which award show had the category of best supporting actress?
SELECT Award FROM table WHERE Category = best supporting actress
Translate the following into a SQL query
Did the nominated work of white valentine win an award?
SELECT Result FROM table WHERE Nominated work = white valentine
Translate the following into a SQL query
Which category was the berlin file up to win in 2013?
SELECT Category FROM table WHERE Year = 2013 AND Nominated work = the berlin file
Translate the following into a SQL query
What is the final position/round of the UEFA cup?
SELECT Final position / round FROM table WHERE Competition = uefa cup
Translate the following into a SQL query
When the final position/round is group stage, when is the last match?
SELECT Last match FROM table WHERE Final position / round = group stage
Translate the following into a SQL query
When did the DC Comics title that debuted in 1937 end?
SELECT Last Year FROM table WHERE First Year = 1937 AND Publisher = dc comics
Translate the following into a SQL query
Who published Weird War Tales?
SELECT Publisher FROM table WHERE Title = weird war tales
Translate the following into a SQL query
When did the comic which came out in 1982 end?
SELECT Last Year FROM table WHERE First Year = 1982
Translate the following into a SQL query
Which EC Comics title ran from 1950 to 1953?
SELECT Title FROM table WHERE First Year = 1950 AND Publisher = ec comics AND Last Year = 1953
Translate the following into a SQL query
What is the first year for Popgun?
SELECT First Year FROM table WHERE Title = popgun
Translate the following into a SQL query
What's the region for an item on November 10, 2007 that's a cd?
SELECT Region FROM table WHERE Date = november 10, 2007 AND Format = cd
Translate the following into a SQL query
What's the catalog number for a record from columbia formatted in a cd/dvd that's from the United States region?
SELECT Catalog FROM table WHERE Label = columbia AND Region = united states AND Format = cd/dvd
Translate the following into a SQL query
What's the catalog number for a December 11, 2007 record from columbia formatted in a that's from Canada?
SELECT Catalog FROM table WHERE Label = columbia AND Date = december 11, 2007 AND Region = canada
Translate the following into a SQL query
Which team has an away score of 18.14 (122)?
SELECT Home team FROM table WHERE Away team score = 18.14 (122)
Translate the following into a SQL query
What is the average crowd size for an away team with a score of 14.19 (103)?
SELECT AVG Crowd FROM table WHERE Away team score = 14.19 (103)
Translate the following into a SQL query
What is the average crowd size at Princes Park?
SELECT SUM Crowd FROM table WHERE Venue = princes park