instruction
stringclasses
1 value
input
stringlengths
12
244
output
stringlengths
22
468
Translate the following into a SQL query
The Catalog number is 80809 what is the title?
SELECT Title FROM table WHERE Catalog Number = 80809
Translate the following into a SQL query
where title is beginning callanetics , what is the total of format ?
SELECT COUNT Format FROM table WHERE Title = Beginning Callanetics
Translate the following into a SQL query
where catalog number is 81258 , what are all the studio ?
SELECT Studio FROM table WHERE Catalog Number = 81258
Translate the following into a SQL query
where title is am/pm callanetics , what are all the copyright information?
SELECT Copyright Information FROM table WHERE Title = AM/PM Callanetics
Translate the following into a SQL query
What was the GF attendance at the location of Sydney Football Stadium, Sydney (6)?
SELECT COUNT GF Attendance FROM table WHERE Location = Sydney Football Stadium, Sydney (6)
Translate the following into a SQL query
Which losing team had a score of 24-12?
SELECT LosingTeam FROM table WHERE Score = 24-12
Translate the following into a SQL query
What was the losing team in the 1993 season?
SELECT LosingTeam FROM table WHERE Season = 1993
Translate the following into a SQL query
What was the compression ration when the engine was Wasp Jr. T1B2?
SELECT Compression ratio FROM table WHERE Engine = Wasp Jr. T1B2
Translate the following into a SQL query
What is the compression ration when the continuous power is hp (kw) at 2,200 RPM and the octane rating is 80/87?
SELECT Compression ratio FROM table WHERE Power, continuous = hp (kW) at 2,200 RPM AND Octane rating = 80/87
Translate the following into a SQL query
What is the compression ratio when the continuous power is hp (KW) at 2,200 RPM and the critical altitude is at sea level?
SELECT COUNT Compression ratio FROM table WHERE Power, continuous = hp (kW) at 2,200 RPM AND Critical altitude This is the highest altitude at which the engine can achieve its full continuous power rating. Above this altitude, power falls off with height as with a naturally aspirated engine . See Supercharger#Altitude effects for details. = sea level
Translate the following into a SQL query
When the engine is Wasp Jr. T1B2, what is the number needed for takeoff power?
SELECT COUNT Power, takeoff FROM table WHERE Engine = Wasp Jr. T1B2
Translate the following into a SQL query
When critical altitude is sea level, what is the compression ration for a supercharger gear ratio of 7:1?
SELECT Compression ratio FROM table WHERE Critical altitude This is the highest altitude at which the engine can achieve its full continuous power rating. Above this altitude, power falls off with height as with a naturally aspirated engine . See Supercharger#Altitude effects for details. = sea level AND Supercharger gear ratio = 7:1
Translate the following into a SQL query
How many episodes aired on october 27, 2008
SELECT COUNT Episode FROM table WHERE Air Date = October 27, 2008
Translate the following into a SQL query
The episode "chapter five: dressed to kill" had a weekly ranking of what?
SELECT Weekly Rank for Living FROM table WHERE Episode = "Chapter Five: Dressed to Kill"
Translate the following into a SQL query
what is the most # that aired on september 29, 2008?
SELECT MAX # FROM table WHERE Air Date = September 29, 2008
Translate the following into a SQL query
How many seasons did the canterbury bulldogs (8) win?
SELECT COUNT Season FROM table WHERE WinningTeam = Canterbury Bulldogs (8)
Translate the following into a SQL query
How many teams lost at the sydney football stadium, sydney (11)?
SELECT COUNT LosingTeam FROM table WHERE Location = Sydney Football Stadium, Sydney (11)
Translate the following into a SQL query
What was the date that the st. george-illawarra dragons lost?
SELECT Grand FinalDate FROM table WHERE LosingTeam = St. George-Illawarra Dragons
Translate the following into a SQL query
Brett kimmorley, who was chosen for the clive churchill medal belonged to what team?
SELECT WinningTeam FROM table WHERE Clive Churchill Medal = Brett Kimmorley
Translate the following into a SQL query
What time slots have a 6.3 rating
SELECT Time slot (EST) FROM table WHERE Rating = 6.3
Translate the following into a SQL query
What time slot is the episode "the way we weren't" in
SELECT Time slot (EST) FROM table WHERE Episode = "The Way We Weren't"
Translate the following into a SQL query
What time slot is the episode "who's your daddy" in
SELECT Time slot (EST) FROM table WHERE Episode = "Who's Your Daddy"
Translate the following into a SQL query
Which air date had an 11 share
SELECT Air Date FROM table WHERE Share = 11
Translate the following into a SQL query
Which air date had the 18-49 rating/share of 3.3/9
SELECT Air Date FROM table WHERE 18-49 (Rating/Share) = 3.3/9
Translate the following into a SQL query
Which characters had their first experience in the episode "consequences"?
SELECT Character FROM table WHERE First appearance = "Consequences"
Translate the following into a SQL query
What episode had the last appearances of the late wife of mac taylor?
SELECT Last appearance FROM table WHERE Relationship = Late wife of Mac Taylor
Translate the following into a SQL query
Which characters were portrayed by reed garrett?
SELECT Portrayed by FROM table WHERE Character = Reed Garrett
Translate the following into a SQL query
How many characters were portrayed by the informant of don flack?
SELECT COUNT Portrayed by FROM table WHERE Relationship = Informant of Don Flack
Translate the following into a SQL query
What episode was the last appearance of the character, rikki sandoval?
SELECT Last appearance FROM table WHERE Character = Rikki Sandoval
Translate the following into a SQL query
On which episode did actress Sela Ward make her last appearance?
SELECT Last appearance FROM table WHERE Portrayed by = Sela Ward
Translate the following into a SQL query
Which actors first appeared in "Zoo York"?
SELECT Portrayed by FROM table WHERE First appearance = "Zoo York"
Translate the following into a SQL query
How many episodes did actress Vanessa Ferlito appear in?
SELECT Episodes FROM table WHERE Portrayed by = Vanessa Ferlito
Translate the following into a SQL query
Which actors first appeared in episode "Blink" 1, 2, 3?
SELECT Portrayed by FROM table WHERE First appearance = "Blink" 1, 2, 3
Translate the following into a SQL query
What was the duration of Robert Joy's portrayal?
SELECT COUNT Duration FROM table WHERE Portrayed by = Robert Joy
Translate the following into a SQL query
Which episode did actor A. J. Buckley last appear in?
SELECT Last appearance FROM table WHERE Portrayed by = A. J. Buckley
Translate the following into a SQL query
What is the least top division titles?
SELECT MIN Top division titles FROM table
Translate the following into a SQL query
What is the least number of seasons in top division?
SELECT MIN Number of seasons in top division FROM table
Translate the following into a SQL query
How many viewers (millions) were there for rank (week) 20?
SELECT COUNT Viewers (millions) FROM table WHERE Rank (week) = 20
Translate the following into a SQL query
What is the rank (timeslot) with the episode name "dangerous liaisons"?
SELECT Rank (timeslot) FROM table WHERE Episode = "Dangerous Liaisons"
Translate the following into a SQL query
What is the lowest rank (night) for having viewers (millions) 5.25?
SELECT MIN Rank (night) FROM table WHERE Viewers (millions) = 5.25
Translate the following into a SQL query
How many times was the episode named "conference call"?
SELECT COUNT # FROM table WHERE Episode = "Conference Call"
Translate the following into a SQL query
How many times was the rank (night) 11?
SELECT COUNT Viewers (millions) FROM table WHERE Rank (night) = 11
Translate the following into a SQL query
WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS IN 2006 IN THE COUNTRY WHOSE CO2 EMISSIONS (TONS PER PERSON) REACHED 1.4 IN 2OO7?
SELECT Carbon dioxide emissions per year (10 6 Tons) (2006) FROM table WHERE Carbon dioxide emissions per year (Tons per person) (2007) = 1.4
Translate the following into a SQL query
HOW MANY TONS OF CO2 EMISSIONS DID RUSSIA PRODUCE IN 2006?
SELECT MAX Carbon dioxide emissions per year (10 6 Tons) (2006) FROM table WHERE Country = Russia
Translate the following into a SQL query
WHAT PERCENTAGE OF GLOBAL TOTAL EMISSIONS DID INDIA PRODUCE?
SELECT Percentage of global total FROM table WHERE Country = India
Translate the following into a SQL query
HOW MUCH IS THE PERCENTAGE OF GLOBAL TOTAL EMISSIONS IN THE COUNTRY THAT PRODUCED 4.9 TONS PER PERSON IN 2007?
SELECT Percentage of global total FROM table WHERE Carbon dioxide emissions per year (Tons per person) (2007) = 4.9
Translate the following into a SQL query
WHAT WAS THE AVERAGE EMISSION PER KM 2 IN INDIA?
SELECT MAX Avg. emission per km 2 of its land (tons) FROM table WHERE Country = India
Translate the following into a SQL query
What is the rank number that aired october 26, 2007?
SELECT Rank (#) FROM table WHERE Air Date = October 26, 2007
Translate the following into a SQL query
What is the number of rank with the viewership of 5.96 million?
SELECT COUNT Rank (#) FROM table WHERE Viewers (m) = 5.96
Translate the following into a SQL query
What is the viewership on november 9, 2007?
SELECT Viewers (m) FROM table WHERE Air Date = November 9, 2007
Translate the following into a SQL query
How many platinum points were awarded when 6 gold points were awarded?
SELECT MAX Points awarded (Platinum) FROM table WHERE Points awarded (Gold) = 6
Translate the following into a SQL query
What was the range of finishing position for 15 awarded platinum points?
SELECT Finishing position FROM table WHERE Points awarded (Platinum) = 15
Translate the following into a SQL query
How many platinum points were awarded for 5th place?
SELECT MAX Points awarded (Platinum) FROM table WHERE Finishing position = 5th
Translate the following into a SQL query
How many platinum points were awarded when 70 silver points were awarded?
SELECT Points awarded (Platinum) FROM table WHERE Points awarded (Silver) = 70
Translate the following into a SQL query
How many platinum points were awarded when 9 gold points were awarded?
SELECT Points awarded (Platinum) FROM table WHERE Points awarded (Gold) = 9
Translate the following into a SQL query
How did the episode rank that had 2.65 million viewers?
SELECT Rank (#) FROM table WHERE Viewers (m) = 2.65
Translate the following into a SQL query
What was the share for the first episode that ranked 85?
SELECT MIN Share FROM table WHERE Rank (#) = 85
Translate the following into a SQL query
Which timeslot did episode no. 15 hold?
SELECT Timeslot FROM table WHERE No. = 15
Translate the following into a SQL query
What was the timeslot for the episode that aired on May 12, 2009?
SELECT Timeslot FROM table WHERE Air Date = May 12, 2009
Translate the following into a SQL query
What's the 18-49 (rating/share) of the episode that originally aired on May 5, 2009?
SELECT 18–49 (Rating/Share) FROM table WHERE Air Date = May 5, 2009
Translate the following into a SQL query
What's the total number of episodes whose original airings were viewed by 1.82 million viewers?
SELECT COUNT Air Date FROM table WHERE Viewers (m) = 1.82
Translate the following into a SQL query
What's the rating of the episode originally aired on May 5, 2009?
SELECT Rating FROM table WHERE Air Date = May 5, 2009
Translate the following into a SQL query
What episode was seen by 2.05 million viewers?
SELECT Episode FROM table WHERE Viewers (m) = 2.05
Translate the following into a SQL query
what's the extroverted, relationship-oriented where extroverted, task-oriented is director
SELECT Extroverted, Relationship-Oriented FROM table WHERE Extroverted, Task-Oriented = Director
Translate the following into a SQL query
what's the extroverted, relationship-oriented where moderate is introverted sanguine
SELECT Extroverted, Relationship-Oriented FROM table WHERE Moderate = Introverted Sanguine
Translate the following into a SQL query
what's the founder where moderate is ether
SELECT Founder FROM table WHERE Moderate = ether
Translate the following into a SQL query
what's the extroverted, relationship-oriented where date is c. 1928
SELECT Extroverted, Relationship-Oriented FROM table WHERE Date = c. 1928
Translate the following into a SQL query
who is the founder where date is c. 1900
SELECT Founder FROM table WHERE Date = c. 1900
Translate the following into a SQL query
what's the people-task orientation scale where extroverted, relationship-oriented is team type
SELECT People-task orientation scale FROM table WHERE Extroverted, Relationship-Oriented = Team Type
Translate the following into a SQL query
What is the batting team where the runs are 276?
SELECT Batting team FROM table WHERE Runs = 276
Translate the following into a SQL query
Name the batting team at Durham
SELECT Batting team FROM table WHERE Fielding team = Durham
Translate the following into a SQL query
What is the batting team with the batting partnets of thilina kandamby and rangana herath?
SELECT Batting team FROM table WHERE Batting partners = Thilina Kandamby and Rangana Herath
Translate the following into a SQL query
What is the fielding team with 155 runs?
SELECT Fielding team FROM table WHERE Runs = 155
Translate the following into a SQL query
What is the batting partners with runs of 226?
SELECT Batting partners FROM table WHERE Runs = 226
Translate the following into a SQL query
What is the nationality of David Bairstow?
SELECT Nationality FROM table WHERE Player = David Bairstow
Translate the following into a SQL query
What are the players whose rank is 2?
SELECT Player FROM table WHERE Rank = 2
Translate the following into a SQL query
How many stumpings has Paul Nixon in his career?
SELECT Stumpings FROM table WHERE Player = Paul Nixon
Translate the following into a SQL query
Where is Adam Gilchrist from?
SELECT Nationality FROM table WHERE Player = Adam Gilchrist
Translate the following into a SQL query
What are the title that have 19.48 million u.s. viewers?
SELECT Title FROM table WHERE U.S. viewers (million) = 19.48
Translate the following into a SQL query
Which titles have 18.73 u.s. viewers.
SELECT Title FROM table WHERE U.S. viewers (million) = 18.73
Translate the following into a SQL query
Who wrote all the shows with 18.73 u.s. viewers?
SELECT Written by FROM table WHERE U.S. viewers (million) = 18.73
Translate the following into a SQL query
What is the rank where the area is Los Angeles?
SELECT Rank ( WJC ) FROM table WHERE Metro area = Los Angeles
Translate the following into a SQL query
What is the number of jews where the rank is 1?
SELECT COUNT Number of Jews (WJC) FROM table WHERE Rank (ARDA) = 1
Translate the following into a SQL query
What is the number of jews asarb where the metro area is philadelphia?
SELECT Number of Jews (ASARB) FROM table WHERE Metro area = Philadelphia
Translate the following into a SQL query
what are all the open 1st viii with u15 6th iv being bgs
SELECT Open 1st VIII FROM table WHERE U15 6th IV = BGS
Translate the following into a SQL query
what are all the u16 2nd viii with u15 3rd iv being bbc
SELECT U16 2nd VIII FROM table WHERE U15 3rd IV = BBC
Translate the following into a SQL query
what are all the open 1st viii with u15 4th iv being gt
SELECT Open 1st VIII FROM table WHERE U15 4th IV = GT
Translate the following into a SQL query
how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs
SELECT COUNT Crew FROM table WHERE U15 3rd IV = BGS AND U15 1st IV = ACGS AND Open 1st VIII = ACGS
Translate the following into a SQL query
what are all the u15 3rd iv with u15 4th iv being bbc
SELECT U15 3rd IV FROM table WHERE U15 4th IV = BBC
Translate the following into a SQL query
how many open 2nd viii had u15 3rd iv being gt
SELECT COUNT Open 2nd VIII FROM table WHERE U15 3rd IV = GT
Translate the following into a SQL query
How many schools have an enrollment of 850?
SELECT COUNT Founded FROM table WHERE Enrolment = 850
Translate the following into a SQL query
What is the location of the school named Brisbane Girls' Grammar School?
SELECT Location FROM table WHERE School = Brisbane Girls' Grammar School
Translate the following into a SQL query
How many schools are located in South Brisbane?
SELECT COUNT School FROM table WHERE Location = South Brisbane
Translate the following into a SQL query
When was SPLC founded?
SELECT MIN Founded FROM table WHERE Abbreviation = SPLC
Translate the following into a SQL query
What is the enrollment of STM which has been in competition since 1990?
SELECT COUNT Enrolment FROM table WHERE In competition since = 1990 AND Abbreviation = STM
Translate the following into a SQL query
What number is the Monaco Grand Prix?
SELECT Rd. FROM table WHERE Grand Prix = Monaco Grand Prix
Translate the following into a SQL query
Who is in the pole position for the French Grand Prix?
SELECT Pole Position FROM table WHERE Grand Prix = French Grand Prix
Translate the following into a SQL query
What are the numbers for the raceways that are constructed by Ferrari, with Michael Schumacher holding the fastest lap and pole position?
SELECT Rd. FROM table WHERE Fastest Lap = Michael Schumacher AND Constructor = Ferrari AND Pole Position = Michael Schumacher
Translate the following into a SQL query
How many on the list are called the Austrian Grand Prix?
SELECT COUNT Rd. FROM table WHERE Grand Prix = Austrian Grand Prix
Translate the following into a SQL query
What number is the Canadian Grand Prix on the list?
SELECT Rd. FROM table WHERE Grand Prix = Canadian Grand Prix