instruction
stringclasses
1 value
input
stringlengths
12
244
output
stringlengths
22
468
Translate the following into a SQL query
When the railroad length is 362 feet how many miles is it from kingston?
SELECT Mi from Kingston FROM table WHERE Length feet = 362
Translate the following into a SQL query
Which parishes have the highworth railroad?
SELECT Parish FROM table WHERE Name = Highworth
Translate the following into a SQL query
Which railroad is 112.6 kilometers from kingston?
SELECT Name FROM table WHERE Km from Kingston = 112.6
Translate the following into a SQL query
Name the most number for new england blazers
SELECT MAX # FROM table WHERE Opponent = New England Blazers
Translate the following into a SQL query
Name the most attendance
SELECT MAX Attendance FROM table
Translate the following into a SQL query
Name the most attendance for number 4
SELECT MAX Attendance FROM table WHERE # = 4
Translate the following into a SQL query
What is the preliminary average when the semifinal average is 8.834 (3) ?
SELECT Preliminary Average FROM table WHERE Semifinal Average = 8.834 (3)
Translate the following into a SQL query
What is the interview when preliminary average is 8.662 (3) ?
SELECT Interview FROM table WHERE Preliminary Average = 8.662 (3)
Translate the following into a SQL query
What state has a semifinal average of 8.538 (8) ?
SELECT State FROM table WHERE Semifinal Average = 8.538 (8)
Translate the following into a SQL query
What state has an interview of 8.313 (8) ?
SELECT State FROM table WHERE Interview = 8.313 (8)
Translate the following into a SQL query
What is the semifinal average where the preliminary average is 9.084 (1) ?
SELECT Semifinal Average FROM table WHERE Preliminary Average = 9.084 (1)
Translate the following into a SQL query
What is the swimsuit when evening gown is 8.774 (6) ?
SELECT Swimsuit FROM table WHERE Evening Gown = 8.774 (6)
Translate the following into a SQL query
What is the population density of the Capital Region of Denmark?
SELECT Pop. density (per km²) FROM table WHERE English name = Capital Region of Denmark
Translate the following into a SQL query
In the region where Roskilde is the largest city, what is the seat of administration?
SELECT Seat of administration FROM table WHERE Largest city = Roskilde
Translate the following into a SQL query
What is the minimum population of the region in which Roskilde is the largest city?
SELECT MIN Population (January 1, 2008) FROM table WHERE Largest city = Roskilde
Translate the following into a SQL query
How many languages for the 2001 (74th) awards?
SELECT COUNT Language(s) FROM table WHERE Year (Ceremony) = 2001 (74th)
Translate the following into a SQL query
What was the result for the 2009 (82nd) awards?
SELECT Result FROM table WHERE Year (Ceremony) = 2009 (82nd)
Translate the following into a SQL query
Name the original title for the counterfeiters
SELECT Original title FROM table WHERE Film title used in nomination = The Counterfeiters
Translate the following into a SQL query
Name the year for spiele leben
SELECT Year (Ceremony) FROM table WHERE Original title = Spiele Leben
Translate the following into a SQL query
Name the film title for wohin und zurück - welcome in vienna
SELECT Film title used in nomination FROM table WHERE Original title = Wohin und zurück - Welcome in Vienna
Translate the following into a SQL query
Name the language for kunar
SELECT Language FROM table WHERE Province = Kunar
Translate the following into a SQL query
Name the notes for samangan
SELECT Notes FROM table WHERE Province = Samangan
Translate the following into a SQL query
Name the un region for 3314000 population
SELECT U.N. Region FROM table WHERE Population = 3314000
Translate the following into a SQL query
Name the area for map # 24
SELECT Area (km²) FROM table WHERE Map # = 24
Translate the following into a SQL query
Name the un region for 378000 population
SELECT U.N. Region FROM table WHERE Population = 378000
Translate the following into a SQL query
NJame the total number of population for towns/villages for 217
SELECT COUNT Population FROM table WHERE Towns/ villages = 217
Translate the following into a SQL query
Name the towns/villages for budapest
SELECT Towns/ villages FROM table WHERE County seat = Budapest
Translate the following into a SQL query
Name the least area for vas
SELECT MIN Area (km²) FROM table WHERE Name of county = Vas
Translate the following into a SQL query
When the year was 1992, what were the points won?
SELECT Points won FROM table WHERE Year = 1992
Translate the following into a SQL query
When the foursome was w-l-h is 1–0–0 won w/ p. creamer 3&2, what was the points %?
SELECT Points % FROM table WHERE Foursomes W-L-H = 1–0–0 won w/ P. Creamer 3&2
Translate the following into a SQL query
What was the foursome's record in 2002?
SELECT Foursomes W-L-H FROM table WHERE Year = 2002
Translate the following into a SQL query
What was the length time of the 3.5 release?
SELECT Length FROM table WHERE Release = 3.5
Translate the following into a SQL query
What is the title of the 1.1 realease?
SELECT Title FROM table WHERE Release = 1.1
Translate the following into a SQL query
Under what series was the 3.5 release?
SELECT Series FROM table WHERE Release = 3.5
Translate the following into a SQL query
What is the releases number under Season 2?
SELECT Release FROM table WHERE Timeline = Season 2
Translate the following into a SQL query
Who was the director of the audiobook released August 31, 2009?
SELECT Director FROM table WHERE Release Date = August 31, 2009
Translate the following into a SQL query
What is the capital of Bungoma county?
SELECT Capital FROM table WHERE County = Bungoma
Translate the following into a SQL query
What is the capital of Uasin Gishu county?
SELECT Capital FROM table WHERE County = Uasin Gishu
Translate the following into a SQL query
In what former province was the area 694.9 kilometers squared?
SELECT Former Province FROM table WHERE Area (km 2 ) = 694.9
Translate the following into a SQL query
How many numbers were listed under area with a population of 240075 as of 2009?
SELECT COUNT Area (km 2 ) FROM table WHERE Population Census 2009 = 240075
Translate the following into a SQL query
What was the population in Kisumu county as of 2009?
SELECT Population Census 2009 FROM table WHERE County = Kisumu
Translate the following into a SQL query
What capital's county had a population of 730129 as of 2009?
SELECT Capital FROM table WHERE Population Census 2009 = 730129
Translate the following into a SQL query
Name the dates for margin of victory being 5 strokes
SELECT COUNT Dates FROM table WHERE Margin of victory = 5 strokes
Translate the following into a SQL query
Name the champion for london hunt and country club ( london , on )
SELECT Champion FROM table WHERE Tournament location = London Hunt and Country Club ( London , ON )
Translate the following into a SQL query
What was the evening gown score for the woman who scored 7.600 (9) in her interview?
SELECT Evening Gown FROM table WHERE Interview = 7.600 (9)
Translate the following into a SQL query
What was the swimsuit score for the one who had a semifinal average of 8.759 (5)?
SELECT Swimsuit FROM table WHERE Semifinal Average = 8.759 (5)
Translate the following into a SQL query
What was the evening gown score for the one who had a preliminary average of 8.121 (8)?
SELECT Evening Gown FROM table WHERE Preliminary Average = 8.121 (8)
Translate the following into a SQL query
What was the preliminary average for the one who had a semifinal average of 8.966 (3)?
SELECT Preliminary Average FROM table WHERE Semifinal Average = 8.966 (3)
Translate the following into a SQL query
What was the preliminary average for Miss Mississippi?
SELECT Preliminary Average FROM table WHERE State = Mississippi
Translate the following into a SQL query
What was the preliminary average for Miss Maryland?
SELECT Preliminary Average FROM table WHERE State = Maryland
Translate the following into a SQL query
What day was the gross sales $1,271,451?
SELECT Dates (MDY) FROM table WHERE Gross sales = $1,271,451
Translate the following into a SQL query
What is the sellout % when the gross sales is $1,727,400?
SELECT Sellout (%) FROM table WHERE Gross sales = $1,727,400
Translate the following into a SQL query
Who many dates are in position 9 and the sellout is 81%?
SELECT COUNT Dates (MDY) FROM table WHERE Position = 9 AND Sellout (%) = 81%
Translate the following into a SQL query
What is the position of tickets sold/available when the sellout is 82%?
SELECT COUNT Tickets sold / available FROM table WHERE Sellout (%) = 82%
Translate the following into a SQL query
Name the probably futures for गरेस् gares 'may you do'
SELECT Probable Future FROM table WHERE Imperative = गरेस् gares 'may you do'
Translate the following into a SQL query
Name the imperative for गरिस् garis 'you did'
SELECT Imperative FROM table WHERE Past Habitual = गरिस् garis 'you did'
Translate the following into a SQL query
Name the past habitual for गर्छस् garchas 'you (will) do'
SELECT Past Habitual FROM table WHERE Probable Future = गर्छस् garchas 'you (will) do'
Translate the following into a SQL query
Name the past habitual for गर्छ garcha 'he does'
SELECT Past Habitual FROM table WHERE Probable Future = गर्छ garcha 'he does'
Translate the following into a SQL query
Name the injunctive for गर्यो garyo 'he did'
SELECT Injunctive FROM table WHERE Past Habitual = गर्यो garyo 'he did'
Translate the following into a SQL query
How many years did he have an average finish of 29.2?
SELECT COUNT Winnings FROM table WHERE Avg. Finish = 29.2
Translate the following into a SQL query
How many years did he finish in 59th?
SELECT COUNT Avg. Start FROM table WHERE Position = 59th
Translate the following into a SQL query
How many instances do you see the year 2003?
SELECT COUNT Starts FROM table WHERE Year = 2003
Translate the following into a SQL query
What is the maximum number of top 10s when he finished in 63rd?
SELECT MAX Top 10 FROM table WHERE Position = 63rd
Translate the following into a SQL query
What are the average start(s) when he had $1,663,868?
SELECT Avg. Start FROM table WHERE Winnings = $1,663,868
Translate the following into a SQL query
What was the position in the season when the average start is 9.2?
SELECT Position FROM table WHERE Avg. Start = 9.2
Translate the following into a SQL query
What is the average start for the season with $7,220 in winnings?
SELECT Avg. Start FROM table WHERE Winnings = $7,220
Translate the following into a SQL query
What are the winnings for the season where the average finish is 11.1?
SELECT Winnings FROM table WHERE Avg. Finish = 11.1
Translate the following into a SQL query
What is the maximum number of wins in the season with 22 starts?
SELECT MAX Wins FROM table WHERE Starts = 22
Translate the following into a SQL query
What is the all home when all games percentage is .484?
SELECT All Home FROM table WHERE All Games % = .484
Translate the following into a SQL query
What is the acc percentage when all games percentage is .484?
SELECT ACC % FROM table WHERE All Games % = .484
Translate the following into a SQL query
What is the all games for Maryland?
SELECT All Games FROM table WHERE Team = Maryland
Translate the following into a SQL query
What is the fare to Kalamazoo during the time frame when Saginaw's was $481.39?
SELECT Kalamazoo (AZO) FROM table WHERE Saginaw (MBS) = $481.39
Translate the following into a SQL query
When Lansing's fare is $433.59, what is the Detroit fare?
SELECT Detroit (DTW) FROM table WHERE Lansing (LAN) = $433.59
Translate the following into a SQL query
At a Saginaw fare of $470.47, what is the fare to Lansing?
SELECT Lansing (LAN) FROM table WHERE Saginaw (MBS) = $470.47
Translate the following into a SQL query
During the year when Lansing's fare is $433.59, what is the fare to Kalamazoo?
SELECT Kalamazoo (AZO) FROM table WHERE Lansing (LAN) = $433.59
Translate the following into a SQL query
When Saginaw's fare is $470.47, what was the fare to Grand Rapids?
SELECT Grand Rapids (GRR) FROM table WHERE Saginaw (MBS) = $470.47
Translate the following into a SQL query
When Grand Rapids's fare was $377.29, what is the fare to Detroit?
SELECT Detroit (DTW) FROM table WHERE Grand Rapids (GRR) = $377.29
Translate the following into a SQL query
Name the maximum enrollment for niagara university
SELECT MAX Enrollment FROM table WHERE School = Niagara University
Translate the following into a SQL query
Name the primary conference for st. bonaventure university
SELECT Primary conference FROM table WHERE School = St. Bonaventure University
Translate the following into a SQL query
Name the total number of nicknames for st. bonaventure university
SELECT COUNT Nickname FROM table WHERE School = St. Bonaventure University
Translate the following into a SQL query
Name the total number of affiliation for enrollment being 14898
SELECT COUNT Affiliation FROM table WHERE Enrollment = 14898
Translate the following into a SQL query
what was the ACC home game record for the team who's ACC winning percentage was .813?
SELECT ACC Home FROM table WHERE ACC % = .813
Translate the following into a SQL query
Who directed the totle "tjockare än vatten"?
SELECT Directed by FROM table WHERE Title = "Tjockare än vatten"
Translate the following into a SQL query
Who wrote the episode for s02 e07?
SELECT Written by FROM table WHERE Broadcast Order = S02 E07
Translate the following into a SQL query
Who directed the episode for s02 e08?
SELECT Directed by FROM table WHERE Broadcast Order = S02 E08
Translate the following into a SQL query
Who directed the episode with the production code 209?
SELECT Directed by FROM table WHERE Production Code = 209
Translate the following into a SQL query
How many schools have the team nickname bobcats?
SELECT COUNT Institution FROM table WHERE Team Nickname = Bobcats
Translate the following into a SQL query
Which city has the team nickname bearcats?
SELECT Location FROM table WHERE Team Nickname = Bearcats
Translate the following into a SQL query
What year did the university of Pittsburgh school join the hockey league?
SELECT Joined TSCHL FROM table WHERE Institution = University of Pittsburgh
Translate the following into a SQL query
What's the earliest year anybody joined the hockey league?
SELECT MIN Joined TSCHL FROM table
Translate the following into a SQL query
Which city has the cincinnati hockey website?
SELECT Location FROM table WHERE Team Website = Cincinnati Hockey
Translate the following into a SQL query
For the flyers, what's the minimum capacity?
SELECT MIN Capacity FROM table WHERE Team Nickname = Flyers
Translate the following into a SQL query
Name the number of pinyin where simplified is 河西区
SELECT COUNT Pinyin FROM table WHERE Simplified = 河西区
Translate the following into a SQL query
Name the pinyin for where population is 44617
SELECT Pinyin FROM table WHERE Population = 44617
Translate the following into a SQL query
Name the pinyin for 487 area
SELECT Pinyin FROM table WHERE Area = 487
Translate the following into a SQL query
Name the traditional for population 74779
SELECT Traditional FROM table WHERE Population = 74779
Translate the following into a SQL query
Name the english name for 崖城镇
SELECT English Name FROM table WHERE Simplified = 崖城镇
Translate the following into a SQL query
Name the date for richmond
SELECT Date FROM table WHERE Away team = Richmond
Translate the following into a SQL query
Name the most crowd for saturday 16 february
SELECT MAX Crowd FROM table WHERE Date = Saturday 16 February
Translate the following into a SQL query
What home team played the West Coast away team?
SELECT Home team FROM table WHERE Away team = West Coast