instruction
stringclasses
1 value
input
stringlengths
12
244
output
stringlengths
22
468
Translate the following into a SQL query
What is the total if 44 is tosses/pyramids?
SELECT Total FROM table WHERE Tosses/Pyramids = 44
Translate the following into a SQL query
How many deductions have 56.5 as tosses/pyramids?
SELECT Deductions FROM table WHERE Tosses/Pyramids = 56.5
Translate the following into a SQL query
What is the rank when 36.5 is tumbling?
SELECT COUNT Rank FROM table WHERE Tumbling = 36.5
Translate the following into a SQL query
What is the rank when 64.5 is tosses/pyramids?
SELECT MAX Rank FROM table WHERE Tosses/Pyramids = 64.5
Translate the following into a SQL query
How many different outcomes of the French Championships were there?
SELECT COUNT Outcome FROM table WHERE Championship = French Championships
Translate the following into a SQL query
How many different final scores were there in 1963?
SELECT COUNT Score in the final FROM table WHERE Year = 1963
Translate the following into a SQL query
Who directed the film titled 'Steam of Life'?
SELECT Director FROM table WHERE Film title used in nomination = Steam of Life
Translate the following into a SQL query
What year was the ceremony where the film 'Tummien Perhosten Koti' was submitted?
SELECT Year (Ceremony) FROM table WHERE Title in the original language = Tummien perhosten koti
Translate the following into a SQL query
What are the results for the film titled 'Joki'?
SELECT COUNT Result FROM table WHERE Title in the original language = Joki
Translate the following into a SQL query
What was the domestic box office for the film that had a foreign box office of $26,600,000?
SELECT Domestic Box Office FROM table WHERE Foreign Box Office = $26,600,000
Translate the following into a SQL query
What was the domestic box office for "House on Haunted Hill"?
SELECT Domestic Box Office FROM table WHERE Film = House on Haunted Hill
Translate the following into a SQL query
What was the budget for "Thirteen Ghosts"?
SELECT Budget FROM table WHERE Film = Thirteen Ghosts
Translate the following into a SQL query
What is every school for the Adelaide location?
SELECT School FROM table WHERE Location = Adelaide
Translate the following into a SQL query
How many values for founded when enrollment is 850?
SELECT COUNT Founded FROM table WHERE Enrolment = 850
Translate the following into a SQL query
What is every denomination for the school Seymour college?
SELECT Denomination FROM table WHERE School = Seymour College
Translate the following into a SQL query
Event number 38m was held on which date?
SELECT Date FROM table WHERE Event # = 38M
Translate the following into a SQL query
Who won the $109 no limit hold'em w/rebuys [turbo]?
SELECT Winner FROM table WHERE Event = $109 No Limit Hold'em w/rebuys [Turbo]
Translate the following into a SQL query
Which event had 25,883 entries?
SELECT Event FROM table WHERE Entries = 25,883
Translate the following into a SQL query
How many categories for elapsed time exist for the $16.50 fixed-limit badugi game?
SELECT COUNT Elapsed Time FROM table WHERE Event = $16.50 Fixed-Limit Badugi
Translate the following into a SQL query
How many elapsed times were recorded for the game that had a prize pool of $1,678,200?
SELECT COUNT Elapsed Time FROM table WHERE Prize Pool = $1,678,200
Translate the following into a SQL query
What year did jaroslav vojtek category:articles with hcards Direct?
SELECT Year (Ceremony) FROM table WHERE Director = Jaroslav Vojtek Category:Articles with hCards
Translate the following into a SQL query
What was the result for Gypsy?
SELECT Result FROM table WHERE Film title used in nomination = Gypsy
Translate the following into a SQL query
HOw many films did martin repka category:articles with hcards direct?
SELECT COUNT Film title used in nomination FROM table WHERE Director = Martin Repka Category:Articles with hCards
Translate the following into a SQL query
What was the result for City of the Sun?
SELECT Result FROM table WHERE Film title used in nomination = City of the Sun
Translate the following into a SQL query
What was the language for the movie "Late Bloomers"?
SELECT Language(s) FROM table WHERE Film title used in nomination = Late Bloomers
Translate the following into a SQL query
How many original titles were listed as "If the Sun Never Returns"?
SELECT COUNT Original title FROM table WHERE Film title used in nomination = If the Sun Never Returns
Translate the following into a SQL query
What was the language of "Mein Name Ist Bach"?
SELECT Language(s) FROM table WHERE Film title used in nomination = Mein Name Ist Bach
Translate the following into a SQL query
What was the year for the film "Vitus"?
SELECT Year (Ceremony) FROM table WHERE Original title = Vitus
Translate the following into a SQL query
How many films are titled "Dans la Ville Blanche"?
SELECT COUNT Film title used in nomination FROM table WHERE Original title = Dans la ville blanche
Translate the following into a SQL query
How many of the writers had 5.35 viewers?
SELECT COUNT Written by FROM table WHERE U.S. viewers (millions) = 5.35
Translate the following into a SQL query
What was the elapsed time for the championship that had $9,377.42 in prize money?
SELECT Elapsed Time FROM table WHERE Prize = $9,377.42
Translate the following into a SQL query
Who won a prize pool of $61,100?
SELECT Winner FROM table WHERE Prize Pool = $61,100
Translate the following into a SQL query
What was the prize pool for the event number 27H?
SELECT Prize Pool FROM table WHERE Event # = 27H
Translate the following into a SQL query
What is the event name with the number 8M?
SELECT Event FROM table WHERE Event # = 8M
Translate the following into a SQL query
Name the total number 1980 mil for soviet union
SELECT COUNT 1980 (mil) FROM table WHERE Country = Soviet Union
Translate the following into a SQL query
Name the country for 37.23 1985
SELECT Country FROM table WHERE 1985 (mil) = 37.23
Translate the following into a SQL query
Name the country for 2.16
SELECT Country FROM table WHERE 1970 (mil) = 2.16
Translate the following into a SQL query
How many languages have elles as the film title used in nomination?
SELECT COUNT Languages FROM table WHERE Film title used in nomination = Elles
Translate the following into a SQL query
How many languages is refractaire as the film title used in nomination?
SELECT COUNT Languages FROM table WHERE Film title used in nomination = Refractaire
Translate the following into a SQL query
How many languages have le roman de renart as the original title?
SELECT COUNT Languages FROM table WHERE Original title = Le Roman de Renart
Translate the following into a SQL query
Who is the director of the original title perl oder pica?
SELECT Director FROM table WHERE Original title = Perl oder Pica
Translate the following into a SQL query
What is the result of the 2005 (78th) year ceremony?
SELECT Result FROM table WHERE Year (Ceremony) = 2005 (78th)
Translate the following into a SQL query
What is the title that has 14.59 u.s. viewers (millions)?
SELECT Title FROM table WHERE U.S. viewers (millions) = 14.59
Translate the following into a SQL query
How many number of series have the title "call of silence"?
SELECT No. in series FROM table WHERE Title = "Call of Silence"
Translate the following into a SQL query
What is the title that had 13.59 u.s. viewers (millions)?
SELECT Title FROM table WHERE U.S. viewers (millions) = 13.59
Translate the following into a SQL query
If the earning amount is $309,886, what is the money list ranking?
SELECT Money list rank FROM table WHERE Earnings ($) = 309,886
Translate the following into a SQL query
What was the maximum number of wins?
SELECT MAX Wins FROM table
Translate the following into a SQL query
If the year is 2010, what was the average score?
SELECT Scoring average FROM table WHERE Year = 2010
Translate the following into a SQL query
How many times did Tim Macrow and Joey Foster both got the fastest lap and pole position respectively?
SELECT COUNT Event FROM table WHERE Fastest Lap = Tim Macrow AND Pole Position = Joey Foster
Translate the following into a SQL query
What was the winning team where Tim Macrow won the fastest lap on Queensland Raceway circuit?
SELECT Winning team FROM table WHERE Circuit = Queensland Raceway AND Fastest Lap = Tim Macrow
Translate the following into a SQL query
What's the series number of the episode whose writer is David North?
SELECT MAX No. in series FROM table WHERE Written by = David North
Translate the following into a SQL query
What's the series number of the episode seen by 17.04 million people in the US?
SELECT MAX No. in series FROM table WHERE U.S. viewers (millions) = 17.04
Translate the following into a SQL query
What's the title of the episode first seen by 18.15 million people in the US?
SELECT Title FROM table WHERE U.S. viewers (millions) = 18.15
Translate the following into a SQL query
How many millions of people in the US saw the episode with series number 103?
SELECT U.S. viewers (millions) FROM table WHERE No. in series = 103
Translate the following into a SQL query
What number episode in the series was watched by 15.89 million U.S. viewers?
SELECT No. in series FROM table WHERE U.S. viewers (millions) = 15.89
Translate the following into a SQL query
What is the title of the episode directed by William Webb?
SELECT Title FROM table WHERE Directed by = William Webb
Translate the following into a SQL query
How many millions of U.S. viewers watched the episode titled "Once a Hero"?
SELECT U.S. viewers (millions) FROM table WHERE Title = "Once a Hero"
Translate the following into a SQL query
Who wrote the episode titled "In the Dark"?
SELECT Written by FROM table WHERE Title = "In the Dark"
Translate the following into a SQL query
What was the final score when River Plate was the runner-up?
SELECT Result FROM table WHERE Runner-Up = River Plate
Translate the following into a SQL query
What was spent per voter when total amount spent was 210,280,000?
SELECT Spent per voter ( PHP ) FROM table WHERE Amount spent ( PHP ) = 210,280,000
Translate the following into a SQL query
What was spent per voter when the spent per vote was 20.07?
SELECT Spent per voter ( PHP ) FROM table WHERE Spent per vote ( PHP ) = 20.07
Translate the following into a SQL query
Between November 25–30, 2008 the sellout rate was at 75%, indicating that the ration between shows to sellout was what?
SELECT Shows / Sellout FROM table WHERE Sellout (%) = 75%
Translate the following into a SQL query
During the period in which gross sales totals for "The Show Girl Must Go On" reached $2,628,457, what did the numbers show for tickets sold/ available at the box office?
SELECT Tickets Sold / Available FROM table WHERE Gross Sales = $2,628,457
Translate the following into a SQL query
Which specific dates encompass the time period when "The Show Girl Must Go On" showed a gross sales figure total of $2,877,906?
SELECT Dates (MDY) FROM table WHERE Gross Sales = $2,877,906
Translate the following into a SQL query
What year and the corresponding ceremony was the english titled movie "time out" submitted?
SELECT Year (Ceremony) FROM table WHERE English title = Time Out
Translate the following into a SQL query
How many english titles were directed by carlos moreno?
SELECT COUNT English title FROM table WHERE Director = Carlos Moreno
Translate the following into a SQL query
How many years was their W/L/D record 13:10:0?
SELECT COUNT Chairman FROM table WHERE W: L: D = 13:10:0
Translate the following into a SQL query
What is the rank # of kelli miller the winning pitcher?
SELECT Rank# FROM table WHERE Winning Pitcher = Kelli Miller
Translate the following into a SQL query
How many number of site have May 1, 2004 as the date?
SELECT COUNT Site FROM table WHERE Date = May 1, 2004
Translate the following into a SQL query
At what time is the site usf softball field • tampa, fl and w4-0 is the result?
SELECT Time FROM table WHERE Site = USF Softball Field • Tampa, FL AND Result = W4-0
Translate the following into a SQL query
What was the result for the film with the English name of Morning Undersea?
SELECT Result FROM table WHERE English title = Morning Undersea
Translate the following into a SQL query
What was the result of the film with the Portuguese title, Um Filme Falado?
SELECT Result FROM table WHERE Portuguese title = Um Filme Falado
Translate the following into a SQL query
What is the Portuguese name of the film who's English title is, Belle Toujours?
SELECT Portuguese title FROM table WHERE English title = Belle Toujours
Translate the following into a SQL query
What is every result for the ceremony year of 2007 (80th)?
SELECT Result FROM table WHERE Year (Ceremony) = 2007 (80th)
Translate the following into a SQL query
What is every English title for the result of nominee?
SELECT English Title FROM table WHERE Result = Nominee
Translate the following into a SQL query
How many directors have vietnamese titles of Gate, Gate, Paragate?
SELECT COUNT Director FROM table WHERE Vietnamese title = Gate, gate, paragate
Translate the following into a SQL query
What is every ceremony year for the result of nominee?
SELECT Year (Ceremony) FROM table WHERE Result = Nominee
Translate the following into a SQL query
Who was the pilot of max altitude of 55.9 miles?
SELECT Pilot FROM table WHERE Max altitude (miles) = 55.9
Translate the following into a SQL query
What is the highest number of fai space flights when max mach is 5.65?
SELECT MAX FAI space flights FROM table WHERE Max Mach = 5.65
Translate the following into a SQL query
What was the maximum altitude for Neil Armstrong?
SELECT Max altitude (miles) FROM table WHERE Pilot = Neil Armstrong
Translate the following into a SQL query
How many numbers were recorded under max speed for 1 USAF space flight and total flights 34?
SELECT COUNT Max speed (mph) FROM table WHERE USAF space flights = 1 AND Total Flights = 34
Translate the following into a SQL query
What were all USAF space flights when the aximum speed was 3822?
SELECT USAF space flights FROM table WHERE Max speed (mph) = 3822
Translate the following into a SQL query
What was the max mach when the maximum speed was 3887?
SELECT Max Mach FROM table WHERE Max speed (mph) = 3887
Translate the following into a SQL query
What is the record for the away leg in round 1 and aggregate 2-0?
SELECT Away Leg FROM table WHERE Round = 1 AND Aggregate = 2-0
Translate the following into a SQL query
Name the parishes for beira baixa province
SELECT COUNT Parishes FROM table WHERE Province of 1936 = Beira Baixa Province
Translate the following into a SQL query
Name the most municipalities for alto alentejo province (partly ribatejo)
SELECT MAX Municipalities FROM table WHERE Province of 1936 = Alto Alentejo Province (partly Ribatejo)
Translate the following into a SQL query
Name province of 1936 viana do castelo
SELECT Province of 1936 FROM table WHERE District = Viana do Castelo
Translate the following into a SQL query
What was the score when the partner is Rafael Osuna?
SELECT Score FROM table WHERE Partner = Rafael Osuna
Translate the following into a SQL query
What was the outcome of the game when the partner is Rafael Osuna?
SELECT Outcome FROM table WHERE Partner = Rafael Osuna
Translate the following into a SQL query
What is the surface of the French Championships?
SELECT Surface FROM table WHERE Championship = French Championships
Translate the following into a SQL query
How many outcomes were there for matches played with Chuck McKinley on grass in 1962?
SELECT COUNT Outcome FROM table WHERE Surface = Grass AND Partner = Chuck McKinley AND Year = 1962
Translate the following into a SQL query
What was the home leg score against partizani tirana?
SELECT Home Leg FROM table WHERE Opponents = Partizani Tirana
Translate the following into a SQL query
What round did they face fc st. gallen?
SELECT COUNT Round FROM table WHERE Opponents = FC St. Gallen
Translate the following into a SQL query
What was the home leg score against fc schalke 04?
SELECT Home Leg FROM table WHERE Opponents = FC Schalke 04
Translate the following into a SQL query
How many dfb-pokal did kevin-prince boateng have?
SELECT COUNT DFB-Pokal FROM table WHERE Player = Kevin-Prince Boateng
Translate the following into a SQL query
Who is the head coach when Miami University is the championship game opponent?
SELECT Head Coach FROM table WHERE Championship Game Opponent = Miami University
Translate the following into a SQL query
What is the location when 2-1 is the score?
SELECT Location FROM table WHERE Score = 2-1
Translate the following into a SQL query
What is the conference when Ferris State is the championship game opponent?
SELECT Conference FROM table WHERE Championship Game Opponent = Ferris State
Translate the following into a SQL query
What is the location of the 1999 tournament?
SELECT Location FROM table WHERE Tournament = 1999
Translate the following into a SQL query
How many scores are there when the championship game opponent is Miami University?
SELECT COUNT Score FROM table WHERE Championship Game Opponent = Miami University