training_input stringlengths 118 1.06k |
|---|
###context:CREATE TABLE table_27409644_1 (location VARCHAR, manager VARCHAR)
###human: Where is the team that is managed by richard barnwell from?
###assistant: SELECT location FROM table_27409644_1 WHERE manager = "Richard Barnwell" |
###context:CREATE TABLE table_27409644_1 (ground VARCHAR, club VARCHAR)
###human: What is the home location for team flora tallinn?
###assistant: SELECT ground FROM table_27409644_1 WHERE club = "Flora Tallinn" |
###context:CREATE TABLE table_27403436_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)
###human: How many viewers watched the episode written by shana goldberg-meehan & greg malins?
###assistant: SELECT us_viewers__million_ FROM table_27403436_1 WHERE written_by = "Shana Goldberg-Meehan & Greg Malins" |
###context:CREATE TABLE table_27403436_1 (no VARCHAR, production_code VARCHAR)
###human: which number lists the production code as 2j5809
###assistant: SELECT no FROM table_27403436_1 WHERE production_code = "2J5809" |
###context:CREATE TABLE table_274117_5 (position VARCHAR, player VARCHAR)
###human: What position was Bob Lilly?
###assistant: SELECT position FROM table_274117_5 WHERE player = "Bob Lilly" |
###context:CREATE TABLE table_274117_5 (seasons_by_team VARCHAR, position VARCHAR, number VARCHAR)
###human: What are seasons by team for Pro Bowl appearances of the player who was an OL and had 11 appearances?
###assistant: SELECT seasons_by_team FROM table_274117_5 WHERE position = "OL" AND number = 11 |
###context:CREATE TABLE table_274117_5 (position VARCHAR, year_of_induction_into_pro_football_hall_of_fame VARCHAR)
###human: What position was the player who was inducted into the Pro Football Hall of Fame in 1980?
###assistant: SELECT position FROM table_274117_5 WHERE year_of_induction_into_pro_football_hal... |
###context:CREATE TABLE table_274117_5 (year_of_induction_into_pro_football_hall_of_fame VARCHAR, player VARCHAR)
###human: When was Will Shields inducted into the Pro Football Hall of Fame?
###assistant: SELECT year_of_induction_into_pro_football_hall_of_fame FROM table_274117_5 WHERE player = "Will Shields" |
###context:CREATE TABLE table_274117_5 (number INTEGER)
###human: What is the fewest amount of Pro Bowl appearances any of the players had?
###assistant: SELECT MIN(number) FROM table_274117_5 |
###context:CREATE TABLE table_27434_2 (live_births_per_year VARCHAR, life_expectancy_total VARCHAR)
###human: How many live births per year do people with a life expectancy of 65.1 have?
###assistant: SELECT live_births_per_year FROM table_27434_2 WHERE life_expectancy_total = "65.1" |
###context:CREATE TABLE table_27434_2 (period VARCHAR, life_expectancy_total VARCHAR)
###human: What period was the life expectancy at 62.4?
###assistant: SELECT period FROM table_27434_2 WHERE life_expectancy_total = "62.4" |
###context:CREATE TABLE table_27435931_1 (year VARCHAR, continent VARCHAR)
###human: In what year is australia/oceania listed?
###assistant: SELECT COUNT(year) FROM table_27435931_1 WHERE continent = "Australia/Oceania" |
###context:CREATE TABLE table_27435931_1 (elevation_m VARCHAR, year VARCHAR)
###human: what was the elevation in september 2009?
###assistant: SELECT elevation_m FROM table_27435931_1 WHERE year = "September 2009" |
###context:CREATE TABLE table_27435931_1 (continent VARCHAR, country VARCHAR)
###human: what is the continent in which the country russia is listed?
###assistant: SELECT continent FROM table_27435931_1 WHERE country = "Russia" |
###context:CREATE TABLE table_27435931_1 (elevation_ft INTEGER, year VARCHAR)
###human: what was the lowest elevation in april 2006?
###assistant: SELECT MIN(elevation_ft) FROM table_27435931_1 WHERE year = "April 2006" |
###context:CREATE TABLE table_27435931_1 (elevation_ft VARCHAR, country VARCHAR)
###human: what is elevation of tanzania?
###assistant: SELECT COUNT(elevation_ft) FROM table_27435931_1 WHERE country = "Tanzania" |
###context:CREATE TABLE table_27435931_1 (elevation_ft VARCHAR, continent VARCHAR)
###human: what is the elevation of south america?
###assistant: SELECT elevation_ft FROM table_27435931_1 WHERE continent = "South America" |
###context:CREATE TABLE table_27437601_2 (no_in_season VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)
###human: List the season above 241.0 that was handled by brad tanenbaum.
###assistant: SELECT no_in_season FROM table_27437601_2 WHERE directed_by = "Brad Tanenbaum" AND no_in_series > 241.0 |
###context:CREATE TABLE table_27437601_2 (original_air_date VARCHAR, no_in_season VARCHAR)
###human: List the 1st air date for season 12.
###assistant: SELECT original_air_date FROM table_27437601_2 WHERE no_in_season = 12 |
###context:CREATE TABLE table_27437601_2 (no_in_series VARCHAR, no_in_season VARCHAR)
###human: List the series number for season 12.
###assistant: SELECT COUNT(no_in_series) FROM table_27437601_2 WHERE no_in_season = 12 |
###context:CREATE TABLE table_27441210_13 (year VARCHAR, country VARCHAR)
###human: How many years was the country Belgium?
###assistant: SELECT COUNT(year) FROM table_27441210_13 WHERE country = "Belgium" |
###context:CREATE TABLE table_27441210_17 (number_one_single_s_ VARCHAR, artist VARCHAR)
###human: What number-one single is performed by artist Pep's?
###assistant: SELECT number_one_single_s_ FROM table_27441210_17 WHERE artist = "Pep's" |
###context:CREATE TABLE table_27455867_1 (audition_city VARCHAR, episode_air_date VARCHAR)
###human: Where were the auditions held in the episode that aired on january 27, 2011?
###assistant: SELECT audition_city FROM table_27455867_1 WHERE episode_air_date = "January 27, 2011" |
###context:CREATE TABLE table_27455867_1 (audition_city VARCHAR, audition_venue VARCHAR)
###human: In how many different audition cities were the Bridgestone arena auditions held?
###assistant: SELECT COUNT(audition_city) FROM table_27455867_1 WHERE audition_venue = "Bridgestone Arena" |
###context:CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, episode_air_date VARCHAR)
###human: When was the callback audition date for the audition city from the episode aired on February 2, 2011?
###assistant: SELECT callback_audition_date FROM table_27455867_1 WHERE episode_air_date = "February... |
###context:CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, callback_venue VARCHAR)
###human: When were the callback auditions at Hilton Riverside Hotel held?
###assistant: SELECT callback_audition_date FROM table_27455867_1 WHERE callback_venue = "Hilton Riverside Hotel" |
###context:CREATE TABLE table_27455867_1 (callback_venue VARCHAR, episode_air_date VARCHAR)
###human: What was the callback venue for the audition city in the episode aired on January 20, 2011?
###assistant: SELECT callback_venue FROM table_27455867_1 WHERE episode_air_date = "January 20, 2011" |
###context:CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, episode_air_date VARCHAR)
###human: When were the callback auditions for the audition city in the episode aired on February 9, 2011?
###assistant: SELECT callback_audition_date FROM table_27455867_1 WHERE episode_air_date = "February 9, 2... |
###context:CREATE TABLE table_27462177_1 (no_in_series VARCHAR, written_by VARCHAR)
###human: How many episodes did Eve Weston write?
###assistant: SELECT COUNT(no_in_series) FROM table_27462177_1 WHERE written_by = "Eve Weston" |
###context:CREATE TABLE table_27462177_1 (us_viewers__millions_ VARCHAR, written_by VARCHAR)
###human: How many millions of US viewers watched the episode written by Jack Sanderson?
###assistant: SELECT us_viewers__millions_ FROM table_27462177_1 WHERE written_by = "Jack Sanderson" |
###context:CREATE TABLE table_27462209_1 (written_by VARCHAR, prod_code VARCHAR)
###human: Name who wrote the production code 322
###assistant: SELECT written_by FROM table_27462209_1 WHERE prod_code = 322 |
###context:CREATE TABLE table_27469019_2 (television_network VARCHAR, television_channel VARCHAR)
###human: What is the television network with the television channel of Astro Pelangi & Astro Bintang?
###assistant: SELECT television_network FROM table_27469019_2 WHERE television_channel = "Astro Pelangi & Astro... |
###context:CREATE TABLE table_27469019_2 (status VARCHAR, television_channel VARCHAR)
###human: What was the status of the series that was run by tv channel Mediacorp tv12 Suria?
###assistant: SELECT status FROM table_27469019_2 WHERE television_channel = "MediaCorp TV12 Suria" |
###context:CREATE TABLE table_27484208_1 (world_rank_by_qs_ VARCHAR, _2013 VARCHAR, members VARCHAR)
###human: What was the world rank by QS in 2013 for the University of Otago?
###assistant: SELECT world_rank_by_qs_, _2013 FROM table_27484208_1 WHERE members = "University of Otago" |
###context:CREATE TABLE table_27484208_1 (world_rank_by_arwu_ VARCHAR, _2013 VARCHAR, members VARCHAR)
###human: What was the world rank by ARWU in 2013 of the University of Tübingen?
###assistant: SELECT world_rank_by_arwu_, _2013 FROM table_27484208_1 WHERE members = "University of Tübingen" |
###context:CREATE TABLE table_27481781_2 (no_in_series VARCHAR, viewers__millions_ VARCHAR)
###human: How many episodes have 18.73 million viewers?
###assistant: SELECT COUNT(no_in_series) FROM table_27481781_2 WHERE viewers__millions_ = "18.73" |
###context:CREATE TABLE table_27487712_1 (result VARCHAR, district VARCHAR)
###human: What was the result of the election for georgia's 3rd district?
###assistant: SELECT result FROM table_27487712_1 WHERE district = "Georgia's 3rd" |
###context:CREATE TABLE table_27487712_1 (incumbent VARCHAR, district VARCHAR)
###human: Who was the incumbent from georgia's 8th district?
###assistant: SELECT incumbent FROM table_27487712_1 WHERE district = "Georgia's 8th" |
###context:CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR)
###human: What was the result of the election with incumbent bob barr?
###assistant: SELECT result FROM table_27487712_1 WHERE incumbent = "Bob Barr" |
###context:CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR)
###human: What was the result of the election with incumbent john lewis?
###assistant: SELECT result FROM table_27487712_1 WHERE incumbent = "John Lewis" |
###context:CREATE TABLE table_27487712_1 (incumbent VARCHAR, elected VARCHAR)
###human: Who was the incumbent for the election in 1978?
###assistant: SELECT incumbent FROM table_27487712_1 WHERE elected = 1978 |
###context:CREATE TABLE table_27487310_5 (judges VARCHAR, country VARCHAR, air_dates VARCHAR)
###human: Who are the judges in the Netherlands for the season airing 28 November 2011 – 24 December 2011?
###assistant: SELECT judges FROM table_27487310_5 WHERE country = "Netherlands" AND air_dates = "28 November 20... |
###context:CREATE TABLE table_27487310_5 (name VARCHAR, network VARCHAR)
###human: What is the version aired on SBS 6 called?
###assistant: SELECT name FROM table_27487310_5 WHERE network = "SBS 6" |
###context:CREATE TABLE table_27487310_5 (air_dates VARCHAR, network VARCHAR)
###human: What are the air dates of the show in ABS-CBN?
###assistant: SELECT air_dates FROM table_27487310_5 WHERE network = "ABS-CBN" |
###context:CREATE TABLE table_27487310_5 (host_s_ VARCHAR, air_dates VARCHAR)
###human: Who is the host on the series aired on 18 January 2012?
###assistant: SELECT host_s_ FROM table_27487310_5 WHERE air_dates = "18 January 2012" |
###context:CREATE TABLE table_27487310_5 (name VARCHAR, host_s_ VARCHAR)
###human: What is the name of the series with the unknown host?
###assistant: SELECT name FROM table_27487310_5 WHERE host_s_ = "unknown" |
###context:CREATE TABLE table_27487336_1 (points_per_game VARCHAR, passing_yards_per_game VARCHAR)
###human: What is every value for points per game if passing yards per game is 179.6?
###assistant: SELECT points_per_game FROM table_27487336_1 WHERE passing_yards_per_game = "179.6" |
###context:CREATE TABLE table_27487336_1 (sacks VARCHAR, interceptions VARCHAR)
###human: What is every value for sacks if interceptions is 19?
###assistant: SELECT sacks FROM table_27487336_1 WHERE interceptions = "19" |
###context:CREATE TABLE table_27487336_1 (passing_yards_per_game VARCHAR, rushing_yards_per_game VARCHAR)
###human: What is every value for passing yards per game if rushing yards per game is 113.6?
###assistant: SELECT passing_yards_per_game FROM table_27487336_1 WHERE rushing_yards_per_game = "113.6" |
###context:CREATE TABLE table_27487336_1 (rushing_yards_per_game VARCHAR, sacks VARCHAR)
###human: What is every value for rushing yards per game if sacks if 25?
###assistant: SELECT rushing_yards_per_game FROM table_27487336_1 WHERE sacks = "25" |
###context:CREATE TABLE table_27487336_1 (rushing_yards_per_game VARCHAR, season VARCHAR)
###human: What is every value for rushing yards per game if the season is 1984?
###assistant: SELECT rushing_yards_per_game FROM table_27487336_1 WHERE season = "1984" |
###context:CREATE TABLE table_27487336_1 (season VARCHAR, sacks VARCHAR)
###human: How many seasons have a sacks of 39?
###assistant: SELECT COUNT(season) FROM table_27487336_1 WHERE sacks = "39" |
###context:CREATE TABLE table_27496841_3 (average VARCHAR, rank_by_average VARCHAR)
###human: Name the average for rank of 3
###assistant: SELECT average FROM table_27496841_3 WHERE rank_by_average = 3 |
###context:CREATE TABLE table_27496841_3 (total_points VARCHAR, place VARCHAR)
###human: Name the total points for 2
###assistant: SELECT total_points FROM table_27496841_3 WHERE place = 2 |
###context:CREATE TABLE table_27501030_7 (decision VARCHAR, opponent VARCHAR)
###human: What is the decision when the opponents are atlanta thrashers?
###assistant: SELECT decision FROM table_27501030_7 WHERE opponent = "Atlanta Thrashers" |
###context:CREATE TABLE table_27501030_7 (game VARCHAR, points VARCHAR)
###human: How many game entries are there when the points are 57?
###assistant: SELECT COUNT(game) FROM table_27501030_7 WHERE points = 57 |
###context:CREATE TABLE table_27501971_2 (año INTEGER)
###human: What is the smallest año?
###assistant: SELECT MIN(año) FROM table_27501971_2 |
###context:CREATE TABLE table_27501971_2 (premio VARCHAR, categoría VARCHAR)
###human: How many premio are there when "Artist of the Year" was the categoria?
###assistant: SELECT COUNT(premio) FROM table_27501971_2 WHERE categoría = "Artist of the Year" |
###context:CREATE TABLE table_27501971_2 (resultado VARCHAR, country VARCHAR)
###human: What was the resultado when E.E.U.U was the country?
###assistant: SELECT resultado FROM table_27501971_2 WHERE country = "E.E.U.U" |
###context:CREATE TABLE table_27501971_2 (categoría VARCHAR, country VARCHAR)
###human: What was the categoria when E.E.U.U was the country?
###assistant: SELECT categoría FROM table_27501971_2 WHERE country = "E.E.U.U" |
###context:CREATE TABLE table_27501971_2 (country VARCHAR, año VARCHAR)
###human: When the año was 2012, who was the county?
###assistant: SELECT country FROM table_27501971_2 WHERE año = 2012 |
###context:CREATE TABLE table_27504682_1 (written_by VARCHAR, directed_by VARCHAR)
###human: Name who wrote the episode by lawrence trilling
###assistant: SELECT written_by FROM table_27504682_1 WHERE directed_by = "Lawrence Trilling" |
###context:CREATE TABLE table_27504682_1 (original_air_date VARCHAR, written_by VARCHAR)
###human: Name the air date for alex taub
###assistant: SELECT original_air_date FROM table_27504682_1 WHERE written_by = "Alex Taub" |
###context:CREATE TABLE table_27501030_8 (opponent VARCHAR, game VARCHAR)
###human: How many games were numbered 69?
###assistant: SELECT COUNT(opponent) FROM table_27501030_8 WHERE game = 69 |
###context:CREATE TABLE table_27501030_8 (march VARCHAR, opponent VARCHAR)
###human: How many times did they play the pittsburgh penguins?
###assistant: SELECT COUNT(march) FROM table_27501030_8 WHERE opponent = "Pittsburgh Penguins" |
###context:CREATE TABLE table_27529608_21 (qtr_final__week_ INTEGER, genre VARCHAR, age_s_ VARCHAR)
###human: What is the earliest quarterfinal week when the genre is dancing and the act is 32?
###assistant: SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE genre = "Dancing" AND age_s_ = "32" |
###context:CREATE TABLE table_27529608_21 (qtr_final__week_ INTEGER, name_name_of_act VARCHAR)
###human: What is the quarterfinal week for Austin Anderson?
###assistant: SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE name_name_of_act = "Austin Anderson" |
###context:CREATE TABLE table_27529608_21 (genre VARCHAR, age_s_ VARCHAR)
###human: What is the genre for the group with ages 29-30?
###assistant: SELECT genre FROM table_27529608_21 WHERE age_s_ = "29-30" |
###context:CREATE TABLE table_27529608_21 (age_s_ VARCHAR, act VARCHAR)
###human: What is the age of the act who is a rapper?
###assistant: SELECT age_s_ FROM table_27529608_21 WHERE act = "Rapper" |
###context:CREATE TABLE table_27529608_21 (hometown VARCHAR, name_name_of_act VARCHAR)
###human: What is the hometown of Plutonic?
###assistant: SELECT hometown FROM table_27529608_21 WHERE name_name_of_act = "PLUtonic" |
###context:CREATE TABLE table_27529608_21 (semi_final__week_ VARCHAR, hometown VARCHAR)
###human: How many semi-final weeks are there for acts from Pittsburgh, Pennsylvania?
###assistant: SELECT COUNT(semi_final__week_) FROM table_27529608_21 WHERE hometown = "Pittsburgh, Pennsylvania" |
###context:CREATE TABLE table_275162_1 (margin_of_victory VARCHAR, location VARCHAR)
###human: What was the margin of victory for the event in lake forest, illinois?
###assistant: SELECT margin_of_victory FROM table_275162_1 WHERE location = "Lake Forest, Illinois" |
###context:CREATE TABLE table_275162_1 (to_par VARCHAR, player VARCHAR)
###human: What was zach johnson's score to par?
###assistant: SELECT to_par FROM table_275162_1 WHERE player = "Zach Johnson" |
###context:CREATE TABLE table_275162_1 (score VARCHAR, course VARCHAR)
###human: What was the winning score at bellerive country club?
###assistant: SELECT score FROM table_275162_1 WHERE course = "Bellerive country Club" |
###context:CREATE TABLE table_275162_1 (course VARCHAR, location VARCHAR)
###human: How many courses are located in carmel, indiana?
###assistant: SELECT COUNT(course) FROM table_275162_1 WHERE location = "Carmel, Indiana" |
###context:CREATE TABLE table_27514362_7 (status VARCHAR, entrant VARCHAR)
###human: How many status figures does James Finch have?
###assistant: SELECT COUNT(status) FROM table_27514362_7 WHERE entrant = "James Finch" |
###context:CREATE TABLE table_27514362_7 (car_make VARCHAR, driver VARCHAR)
###human: What is the car make for Sterling Marlin?
###assistant: SELECT car_make FROM table_27514362_7 WHERE driver = "Sterling Marlin" |
###context:CREATE TABLE table_27514362_7 (pos VARCHAR, car_make VARCHAR, driver VARCHAR)
###human: What is the finish position for cars by Pontiac driven by Bobby Hamilton?
###assistant: SELECT pos FROM table_27514362_7 WHERE car_make = "Pontiac" AND driver = "Bobby Hamilton" |
###context:CREATE TABLE table_27515452_3 (contestant VARCHAR, sizes VARCHAR)
###human: who are the participants that wear clothing in 33-23-36
###assistant: SELECT contestant FROM table_27515452_3 WHERE sizes = "33-23-36" |
###context:CREATE TABLE table_27515452_3 (age INTEGER, hometown VARCHAR)
###human: what is the oldest and lives in veraguas
###assistant: SELECT MAX(age) FROM table_27515452_3 WHERE hometown = "Veraguas" |
###context:CREATE TABLE table_27515452_3 (hometown VARCHAR, contestant VARCHAR)
###human: where is the participant marelissa him from
###assistant: SELECT hometown FROM table_27515452_3 WHERE contestant = "Marelissa Him" |
###context:CREATE TABLE table_27515452_3 (agency VARCHAR, sizes VARCHAR)
###human: which company has a person that can wear clothing in 33-23-36
###assistant: SELECT agency FROM table_27515452_3 WHERE sizes = "33-23-36" |
###context:CREATE TABLE table_27515452_3 (height VARCHAR, sizes VARCHAR)
###human: how tall is someone who is able to wear 33-24-35
###assistant: SELECT height FROM table_27515452_3 WHERE sizes = "33-24-35" |
###context:CREATE TABLE table_27533947_1 (total_points INTEGER, best_winning_average VARCHAR)
###human: If the best winning average is 7.3-71, what are the total points?
###assistant: SELECT MIN(total_points) FROM table_27533947_1 WHERE best_winning_average = "7.3-71" |
###context:CREATE TABLE table_27533947_1 (games_lost VARCHAR, best_run VARCHAR)
###human: if the best run was 138, what is the amount of games lost?
###assistant: SELECT games_lost FROM table_27533947_1 WHERE best_run = 138 |
###context:CREATE TABLE table_27533947_1 (best_winning_average VARCHAR, games_won VARCHAR)
###human: If the games won are 5, what is the best winning average?
###assistant: SELECT best_winning_average FROM table_27533947_1 WHERE games_won = 5 |
###context:CREATE TABLE table_27533947_1 (total_points INTEGER, players VARCHAR)
###human: If the player is William Jakes, what are the total points?
###assistant: SELECT MIN(total_points) FROM table_27533947_1 WHERE players = "William Jakes" |
###context:CREATE TABLE table_27533947_1 (players VARCHAR, grand_average VARCHAR)
###human: If the grand average is 12.76-202, who is the player?
###assistant: SELECT players FROM table_27533947_1 WHERE grand_average = "12.76-202" |
###context:CREATE TABLE table_27533947_1 (games_won VARCHAR, best_winning_average VARCHAR)
###human: How many players had a best winning average of 20?
###assistant: SELECT COUNT(games_won) FROM table_27533947_1 WHERE best_winning_average = "20" |
###context:CREATE TABLE table_27537518_4 (record VARCHAR, date VARCHAR)
###human: What was the October 22 record?
###assistant: SELECT record FROM table_27537518_4 WHERE date = "October 22" |
###context:CREATE TABLE table_27537518_4 (attendance INTEGER, score VARCHAR)
###human: What was the 6-4 score's maximum attendance?
###assistant: SELECT MAX(attendance) FROM table_27537518_4 WHERE score = "6-4" |
###context:CREATE TABLE table_27537518_4 (score VARCHAR, game VARCHAR)
###human: What was the score for game #1?
###assistant: SELECT score FROM table_27537518_4 WHERE game = 1 |
###context:CREATE TABLE table_27537518_4 (record VARCHAR, date VARCHAR)
###human: What was the record for the October 16 game?
###assistant: SELECT record FROM table_27537518_4 WHERE date = "October 16" |
###context:CREATE TABLE table_27537518_6 (record VARCHAR, first_star VARCHAR)
###human: What was the record in the game whose first star was J. Oduya?
###assistant: SELECT record FROM table_27537518_6 WHERE first_star = "J. Oduya" |
###context:CREATE TABLE table_27537518_6 (score VARCHAR, first_star VARCHAR)
###human: What was the score of the game whose first star was O. Pavelec?
###assistant: SELECT score FROM table_27537518_6 WHERE first_star = "O. Pavelec" |
###context:CREATE TABLE table_27537518_6 (decision VARCHAR, date VARCHAR)
###human: Who made the decision in the game played on December 26?
###assistant: SELECT decision FROM table_27537518_6 WHERE date = "December 26" |
###context:CREATE TABLE table_27537518_6 (location VARCHAR, attendance VARCHAR)
###human: Where was the game seen by 10056 people played?
###assistant: SELECT location FROM table_27537518_6 WHERE attendance = 10056 |
###context:CREATE TABLE table_27537518_6 (first_star VARCHAR, record VARCHAR)
###human: Who was the first star of the game with record of 17-11-5?
###assistant: SELECT first_star FROM table_27537518_6 WHERE record = "17-11-5" |
###context:CREATE TABLE table_27537518_6 (decision VARCHAR, first_star VARCHAR)
###human: Who made the decisions in the game whose first star was V. Lecavalier?
###assistant: SELECT decision FROM table_27537518_6 WHERE first_star = "V. Lecavalier" |
###context:CREATE TABLE table_27537518_7 (score VARCHAR, record VARCHAR)
###human: What was the final score the game where the Thrashers over-all record went to 22-16-6?
###assistant: SELECT score FROM table_27537518_7 WHERE record = "22-16-6" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.