instruction
stringclasses
1 value
input
stringlengths
12
244
output
stringlengths
22
468
Translate the following into a SQL query
What is the location that has a power of 5kw (10kw ERP)?
SELECT Location (Transmitter Site) FROM table WHERE Power kW (ERP) = 5kW (10kW ERP)
Translate the following into a SQL query
What is the power, in kW, of channel TV-23, callsign DYCG-TV?
SELECT Power kW (ERP) FROM table WHERE Ch. # = TV-23 AND Callsign = DYCG-TV
Translate the following into a SQL query
What's the power for General Santos?
SELECT Power (kW) FROM table WHERE Location = General Santos
Translate the following into a SQL query
What bran is the callsign dytc-fm?
SELECT Branding FROM table WHERE Callsign = DYTC-FM
Translate the following into a SQL query
What frequency is dxec-fm?
SELECT Frequency FROM table WHERE Callsign = DXEC-FM
Translate the following into a SQL query
Who was the opponent when there was 117 rushing yards?
SELECT Opponent FROM table WHERE Rushing yards = 117
Translate the following into a SQL query
What was the earliest year?
SELECT MIN Year FROM table
Translate the following into a SQL query
Who was the opponent when there was 81 rushing yards?
SELECT Opponent FROM table WHERE Rushing yards = 81
Translate the following into a SQL query
How many rushing yards where there when the opponent was Indiana and there was 503 passing yards?
SELECT Rushing yards FROM table WHERE Opponent = Indiana AND Passing yards = 503
Translate the following into a SQL query
Who was the opponent when Devin Gardner was the player?
SELECT Opponent FROM table WHERE Player = Devin Gardner
Translate the following into a SQL query
How many points were scored on pole services?
SELECT Points FROM table WHERE Team = Pole Services
Translate the following into a SQL query
How many teams were in the series championnat de france formula renault 2.0?
SELECT Team FROM table WHERE Series = Championnat de France Formula Renault 2.0
Translate the following into a SQL query
What is the area (km2) for the place with a 2010 population of 153085?
SELECT Area (km 2 ) FROM table WHERE Population (2010) = 153085
Translate the following into a SQL query
How many city/municipalties have an area (km2) of 506.64?
SELECT COUNT City / Municipality FROM table WHERE Area (km 2 ) = 506.64
Translate the following into a SQL query
How many places have an area of 409.41 (km2)?
SELECT COUNT Population (2010) FROM table WHERE Area (km 2 ) = 409.41
Translate the following into a SQL query
What day was kibawe created?
SELECT Date of Creation FROM table WHERE City / Municipality = Kibawe
Translate the following into a SQL query
How many places are named manolo fortich?
SELECT COUNT Area (km 2 ) FROM table WHERE City / Municipality = Manolo Fortich
Translate the following into a SQL query
Which player for Project-40 in his college team?
SELECT Player FROM table WHERE Previous college/Team = Project-40
Translate the following into a SQL query
Dallas Burn's draft pick was which position?
SELECT Position FROM table WHERE Team = Dallas Burn
Translate the following into a SQL query
Who wrote the episode that had 1.08 million U.S. viewers?
SELECT Written by FROM table WHERE U.S. viewers (millions) = 1.08
Translate the following into a SQL query
Who directed episode 11 in the series?
SELECT Directed by FROM table WHERE Series No. = 11
Translate the following into a SQL query
What episode number in the season had 1.05 million U.S. viewers?
SELECT MAX Episode No. FROM table WHERE U.S. viewers (millions) = 1.05
Translate the following into a SQL query
What is the name of the episode that had 8.51 million viewers?
SELECT Title FROM table WHERE Viewers (in millions) = 8.51
Translate the following into a SQL query
What date did "getting even" originally air?
SELECT Original airdate FROM table WHERE Title = "Getting Even"
Translate the following into a SQL query
Who wrote episode 26 in the series?
SELECT Writer FROM table WHERE Episode # = 26
Translate the following into a SQL query
What is the g (μs/km)when the frequency (hz) is 100k?
SELECT G (μS/km) FROM table WHERE Frequency (Hz) = 100k
Translate the following into a SQL query
What is the r (ω/km) when the frequency is 10k?
SELECT R (Ω/km) FROM table WHERE Frequency (Hz) = 10k
Translate the following into a SQL query
What is the c (nf/km) when the r (ω/km) is 463.59?
SELECT C (nF/km) FROM table WHERE R (Ω/km) = 463.59
Translate the following into a SQL query
what is the c (nf/km) when the l (mh/km) is 0.6099?
SELECT C (nF/km) FROM table WHERE L (mH/km) = 0.6099
Translate the following into a SQL query
what is the frequency (hz) when the g (μs/km) is 53.205?
SELECT Frequency (Hz) FROM table WHERE G (μS/km) = 53.205
Translate the following into a SQL query
In the country United Arab Emirates, what is the number of imports?
SELECT Imports FROM table WHERE Country = United Arab Emirates
Translate the following into a SQL query
Where the number of exports are 6,099.06, what is the total trade?
SELECT Total Trade FROM table WHERE Exports = 6,099.06
Translate the following into a SQL query
In which country are there 1,278.13 exports?
SELECT Country FROM table WHERE Exports = 1,278.13
Translate the following into a SQL query
Where the total trade is 14,954.86, what are the exports?
SELECT Exports FROM table WHERE Total Trade = 14,954.86
Translate the following into a SQL query
In the country Switzerland, what is the total trade?
SELECT Total Trade FROM table WHERE Country = Switzerland
Translate the following into a SQL query
Where the exports is 13,608.65, what is the total trade?
SELECT Total Trade FROM table WHERE Exports = 13,608.65
Translate the following into a SQL query
What is the location for tournament on Jul 8-11?
SELECT Location FROM table WHERE Dates = Jul 8-11
Translate the following into a SQL query
What is the date of the tournament at Hokkaidō with prize of ¥150000000?
SELECT Dates FROM table WHERE Location = Hokkaidō AND Prize fund ( ¥ ) = 150000000
Translate the following into a SQL query
What is the prize for the tournament at Ibaraki?
SELECT Prize fund ( ¥ ) FROM table WHERE Location = Ibaraki
Translate the following into a SQL query
How many titles are there for the original air date April 3, 2012?
SELECT COUNT Title FROM table WHERE Original air date = April 3, 2012
Translate the following into a SQL query
What are all of the area where distance is marathon and month held is february
SELECT Location FROM table WHERE Distance = Marathon AND Month held = February
Translate the following into a SQL query
What's the whole range of united states where road race is ottawa marathon
SELECT COUNT Country FROM table WHERE Road race = Ottawa Marathon
Translate the following into a SQL query
What race is held in Germany in the month of May?
SELECT Road race FROM table WHERE Country = Germany AND Month held = May
Translate the following into a SQL query
How many times a year is the Brighton Marathon held?
SELECT COUNT Month held FROM table WHERE Distance = Marathon AND Location = Brighton
Translate the following into a SQL query
What month is the Paris 20k Road Race held?
SELECT Month held FROM table WHERE Location = Paris
Translate the following into a SQL query
How many times a year is the Paris 20k road race held?
SELECT COUNT Month held FROM table WHERE Road race = Paris 20K
Translate the following into a SQL query
What is the name of the road race held in Omsk, Russia?
SELECT Road race FROM table WHERE Location = Omsk
Translate the following into a SQL query
what is the place where the location is 2-1
SELECT Amman FROM table WHERE Qadisiya = 2-1
Translate the following into a SQL query
what is the capital where it is ramtha
SELECT Qadisiya FROM table WHERE × = Ramtha
Translate the following into a SQL query
what is the location where the record is 1-0
SELECT Ahli FROM table WHERE Ramtha = 1-0
Translate the following into a SQL query
what is the score where the record is 1-1
SELECT Ramtha FROM table WHERE Ahli = 1-1
Translate the following into a SQL query
what the team where the record is 1-1 and the player is 1-1
SELECT × FROM table WHERE Jeel = 1-1 AND Ramtha = 1-1
Translate the following into a SQL query
what is the number of teams where the record is 0-1
SELECT COUNT Amman FROM table WHERE Wehdat = 0-1
Translate the following into a SQL query
Where was the istanbul marathon?
SELECT Location FROM table WHERE Road race = Istanbul Marathon
Translate the following into a SQL query
How long was the great manchester run?
SELECT Distance FROM table WHERE Road race = Great Manchester Run
Translate the following into a SQL query
In which country was the xiamen international marathon?
SELECT Country FROM table WHERE Road race = Xiamen International Marathon
Translate the following into a SQL query
In which city was the berlin marathon?
SELECT Location FROM table WHERE Road race = Berlin Marathon
Translate the following into a SQL query
How many races were in fukuoka, japan?
SELECT COUNT Road race FROM table WHERE Country = Japan AND Location = Fukuoka
Translate the following into a SQL query
How many times is the vessel operator canadian coast guard?
SELECT COUNT No. in series FROM table WHERE Vessel Operator = Canadian Coast Guard
Translate the following into a SQL query
What is the vessel type for vessel operator Jumbo shipping?
SELECT Vessel Type FROM table WHERE Vessel Operator = Jumbo Shipping
Translate the following into a SQL query
Who narrated when the vessel operator is de beers?
SELECT Narrated by FROM table WHERE Vessel Operator = De Beers
Translate the following into a SQL query
How many episodes had the production code 66210?
SELECT COUNT No. in series FROM table WHERE Production code = 66210
Translate the following into a SQL query
What was the original air date of "kiss the girls and make them die"?
SELECT Original air date FROM table WHERE Title = "Kiss the Girls and Make Them Die"
Translate the following into a SQL query
How many episodes were directed by james quinn?
SELECT COUNT Written by FROM table WHERE Directed by = James Quinn
Translate the following into a SQL query
What is the title of the episode written by daniel sackheim?
SELECT Title FROM table WHERE Directed by = Daniel Sackheim
Translate the following into a SQL query
What is the lowest brup when long is 94?
SELECT MIN BrUp FROM table WHERE Long = 94
Translate the following into a SQL query
What is the lowest gp?
SELECT MIN GP FROM table
Translate the following into a SQL query
What is the highest ff when solo is 56?
SELECT MAX FF FROM table WHERE Solo = 56
Translate the following into a SQL query
What is the name when tfl-yds is 2-2?
SELECT Name FROM table WHERE TFL-Yds = 2-2
Translate the following into a SQL query
What is no-yds when no.-yds is 1-13?
SELECT No-Yds FROM table WHERE No.-Yds = 1-13
Translate the following into a SQL query
what are the maximum f/laps?
SELECT MAX F/Laps FROM table
Translate the following into a SQL query
how many wins had series formula renault 2.0 nec and the position is 18th?
SELECT Wins FROM table WHERE Series = Formula Renault 2.0 NEC AND Position = 18th
Translate the following into a SQL query
what are the minimum poles?
SELECT MIN Poles FROM table
Translate the following into a SQL query
When was the original air date written by michael s. chernuchin & joe morgenstern?
SELECT Original air date FROM table WHERE Written by = Michael S. Chernuchin & Joe Morgenstern
Translate the following into a SQL query
Who is the written by when the title is "his hour upon the stage"?
SELECT Written by FROM table WHERE Title = "His Hour Upon the Stage"
Translate the following into a SQL query
Who is the directed by when the production code is 67425?
SELECT Directed by FROM table WHERE Production code = 67425
Translate the following into a SQL query
Who are all writers with original air date of October 23, 1996?
SELECT Written by: FROM table WHERE Original air date = October 23, 1996
Translate the following into a SQL query
How many titles have directors of matthew Penn and number in series of 143?
SELECT COUNT Title FROM table WHERE Directed by = Matthew Penn AND No. in series = 143
Translate the following into a SQL query
How many numbers in series were for the number in season of 8?
SELECT COUNT No. in series FROM table WHERE No. in season = 8
Translate the following into a SQL query
Who directed k0122?
SELECT Directed by FROM table WHERE Production code = K0122
Translate the following into a SQL query
Which season had k0104?
SELECT MAX No. in season FROM table WHERE Production code = K0104
Translate the following into a SQL query
Which season had "angel"?
SELECT No. in season FROM table WHERE Title = "Angel"
Translate the following into a SQL query
What was the airdate of k0120?
SELECT Original air date FROM table WHERE Production code = K0120
Translate the following into a SQL query
What are the original air date(s) for "gunplay"?
SELECT Original air date FROM table WHERE Title = "Gunplay"
Translate the following into a SQL query
Who directed the episode "dining out"?
SELECT Directed by FROM table WHERE Title = "Dining Out"
Translate the following into a SQL query
What is the institution with the nickname seahawks?
SELECT Institution FROM table WHERE Nickname = Seahawks
Translate the following into a SQL query
What is the colors for the nickname engineers?
SELECT Colors FROM table WHERE Nickname = Engineers
Translate the following into a SQL query
How many have the colors blue & gold?
SELECT COUNT Institution FROM table WHERE Colors = Blue & Gold
Translate the following into a SQL query
What is the institution with the nickname engineers?
SELECT Institution FROM table WHERE Nickname = Engineers
Translate the following into a SQL query
What is the enrollment for the colors green & black?
SELECT Enrollment FROM table WHERE Colors = Green & Black
Translate the following into a SQL query
What institution(s) are located in wilkes-barre, pennsylvania?
SELECT Institution FROM table WHERE Location = Wilkes-Barre, Pennsylvania
Translate the following into a SQL query
What is the highest enrollment schools that joined the mac in 1997?
SELECT MAX Enrollment FROM table WHERE Joined MAC = 1997
Translate the following into a SQL query
What is the enrollment at delaware valley college?
SELECT MAX Joined MAC FROM table WHERE Institution = Delaware Valley College
Translate the following into a SQL query
What year did the the school with the nickname eagles join the mac?
SELECT MIN Joined MAC FROM table WHERE Nickname = Eagles
Translate the following into a SQL query
Which institution's nickname is the Bobcats?
SELECT Institution FROM table WHERE Nickname = Bobcats
Translate the following into a SQL query
What is the enrollment at the institution in New London, Connecticut?
SELECT Enrollment FROM table WHERE Location = New London, Connecticut
Translate the following into a SQL query
When did the institution located in Lewiston, Maine join the conference?
SELECT Joined FROM table WHERE Location = Lewiston, Maine
Translate the following into a SQL query
Which institution's nickname is the Polar Bears?
SELECT Institution FROM table WHERE Nickname = Polar Bears
Translate the following into a SQL query
What is the nickname of Linfield College?
SELECT Nickname FROM table WHERE Institution = Linfield College
Translate the following into a SQL query
When was the private/baptist school founded?
SELECT Founded FROM table WHERE Type = Private/Baptist