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