training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_67 (venue VARCHAR, home_team VARCHAR)
###human: what is the venue when the home team is melbourne?
###assistant: SELECT venue FROM table_name_67 WHERE home_team = "melbourne" |
###context:CREATE TABLE table_name_26 (date VARCHAR, home_team VARCHAR)
###human: what is the date when the home team is st kilda?
###assistant: SELECT date FROM table_name_26 WHERE home_team = "st kilda" |
###context:CREATE TABLE table_name_47 (date VARCHAR, venue VARCHAR)
###human: what is the date when the venue is junction oval?
###assistant: SELECT date FROM table_name_47 WHERE venue = "junction oval" |
###context:CREATE TABLE table_name_24 (home_team VARCHAR, venue VARCHAR)
###human: What is the home team score when played at mcg?
###assistant: SELECT home_team AS score FROM table_name_24 WHERE venue = "mcg" |
###context:CREATE TABLE table_name_41 (away_team VARCHAR, venue VARCHAR)
###human: who is the away team when played at junction oval?
###assistant: SELECT away_team FROM table_name_41 WHERE venue = "junction oval" |
###context:CREATE TABLE table_name_84 (top_speed__km_h_ INTEGER, model VARCHAR)
###human: What is the top speed of the model 1.8 20v t?
###assistant: SELECT SUM(top_speed__km_h_) FROM table_name_84 WHERE model = "1.8 20v t" |
###context:CREATE TABLE table_name_82 (max_torque__nm__at_rpm VARCHAR, model VARCHAR)
###human: What is the max torque of model 1.4 16v?
###assistant: SELECT max_torque__nm__at_rpm FROM table_name_82 WHERE model = "1.4 16v" |
###context:CREATE TABLE table_name_64 (rounds VARCHAR, driver VARCHAR)
###human: How many rounds did Ken Wharton go?
###assistant: SELECT rounds FROM table_name_64 WHERE driver = "ken wharton" |
###context:CREATE TABLE table_name_56 (driver VARCHAR, chassis VARCHAR)
###human: What driver has a 166 c 500 chassis?
###assistant: SELECT driver FROM table_name_56 WHERE chassis = "166 c 500" |
###context:CREATE TABLE table_name_17 (name VARCHAR, area VARCHAR, decile VARCHAR, roll VARCHAR)
###human: What is the Onehunga school with a decile 3 and smaller than 310 rolls?
###assistant: SELECT name FROM table_name_17 WHERE decile = "3" AND roll < 310 AND area = "onehunga" |
###context:CREATE TABLE table_name_38 (authority VARCHAR, area VARCHAR, decile VARCHAR)
###human: What is the authority status of the school in Ellerslie with a decile of 7?
###assistant: SELECT authority FROM table_name_38 WHERE area = "ellerslie" AND decile = "7" |
###context:CREATE TABLE table_name_12 (roll INTEGER, authority VARCHAR, name VARCHAR)
###human: What is the biggest roll number of Sylvia Park School, which has a state authority?
###assistant: SELECT MAX(roll) FROM table_name_12 WHERE authority = "state" AND name = "sylvia park school" |
###context:CREATE TABLE table_name_41 (name VARCHAR, area VARCHAR, decile VARCHAR, authority VARCHAR)
###human: What is the name of the school with a decile of 1, a state authority, and located in Otahuhu?
###assistant: SELECT name FROM table_name_41 WHERE decile = "1" AND authority = "state" AND area = "otahuhu" |
###context:CREATE TABLE table_name_56 (special_notes VARCHAR, year INTEGER)
###human: What is the special notes value for years under 2009?
###assistant: SELECT special_notes FROM table_name_56 WHERE year < 2009 |
###context:CREATE TABLE table_name_39 (year VARCHAR, theme VARCHAR, issue_price VARCHAR)
###human: How many years have a theme of Toronto Maple Leafs and an Issue Price of 24.95?
###assistant: SELECT COUNT(year) FROM table_name_39 WHERE theme = "toronto maple leafs" AND issue_price = 24.95 |
###context:CREATE TABLE table_name_51 (winner VARCHAR, circuit VARCHAR)
###human: Who was the winner for the Winton Motor Raceway circuit?
###assistant: SELECT winner FROM table_name_51 WHERE circuit = "winton motor raceway" |
###context:CREATE TABLE table_name_47 (team VARCHAR, race_title VARCHAR)
###human: What was the team that held the race title of Mallala?
###assistant: SELECT team FROM table_name_47 WHERE race_title = "mallala" |
###context:CREATE TABLE table_name_60 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
###human: Name the driver for Laps less than 9 and a grid of 13
###assistant: SELECT driver FROM table_name_60 WHERE laps < 9 AND grid = 13 |
###context:CREATE TABLE table_name_16 (winners VARCHAR, runners_up VARCHAR)
###human: Who was the winner in the competition in which the runner-up was Rosenborg?
###assistant: SELECT winners FROM table_name_16 WHERE runners_up = "rosenborg" |
###context:CREATE TABLE table_name_57 (years VARCHAR, runners_up VARCHAR)
###human: What was the year of the competition in which Odd Grenland was the runner-up?
###assistant: SELECT years FROM table_name_57 WHERE runners_up = "odd grenland" |
###context:CREATE TABLE table_name_44 (winners VARCHAR, runners_up VARCHAR, third VARCHAR)
###human: Who was the winner in the competition in which Lyn took third place and LillestrΓΈm was the runner-up?
###assistant: SELECT winners FROM table_name_44 WHERE runners_up = "lillestrΓΈm" AND third = "lyn" |
###context:CREATE TABLE table_name_98 (report VARCHAR, location VARCHAR)
###human: What was the report in Buenos Aires?
###assistant: SELECT report FROM table_name_98 WHERE location = "buenos aires" |
###context:CREATE TABLE table_name_12 (date VARCHAR, race VARCHAR)
###human: What date was the Italian Grand Prix?
###assistant: SELECT date FROM table_name_12 WHERE race = "italian grand prix" |
###context:CREATE TABLE table_name_54 (report VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)
###human: What was the report when Mario Andretti held pole position and Jean-Pierre Jarier had the fastest lap?
###assistant: SELECT report FROM table_name_54 WHERE pole_position = "mario andretti" AND fastest_lap = "jean-pierre jarier" |
###context:CREATE TABLE table_name_5 (report VARCHAR, race VARCHAR)
###human: What was the report in the Belgian Grand Prix?
###assistant: SELECT report FROM table_name_5 WHERE race = "belgian grand prix" |
###context:CREATE TABLE table_name_48 (race VARCHAR, pole_position VARCHAR)
###human: Who was the winner when Niki Lauda held pole position?
###assistant: SELECT race AS Winner FROM table_name_48 WHERE pole_position = "niki lauda" |
###context:CREATE TABLE table_name_98 (fastest_lap VARCHAR, race VARCHAR)
###human: Who had the fastest lap in the Monaco Grand Prix?
###assistant: SELECT fastest_lap FROM table_name_98 WHERE race = "monaco grand prix" |
###context:CREATE TABLE table_name_58 (object_type VARCHAR, constellation VARCHAR)
###human: Which Object type has a Constellation of cancer?
###assistant: SELECT object_type FROM table_name_58 WHERE constellation = "cancer" |
###context:CREATE TABLE table_name_1 (ngc_number INTEGER, constellation VARCHAR)
###human: Which NGC number has a Constellation of ursa major?
###assistant: SELECT MAX(ngc_number) FROM table_name_1 WHERE constellation = "ursa major" |
###context:CREATE TABLE table_name_3 (constellation VARCHAR, ngc_number VARCHAR, declination___j2000__ VARCHAR)
###human: Which Constellation has a NGC number smaller than 2775, and a Declination (J2000) of Β°05β²07β³?
###assistant: SELECT constellation FROM table_name_3 WHERE ngc_number < 2775 AND declination___j2000__ = "Β°05β²07β³" |
###context:CREATE TABLE table_name_19 (object_type VARCHAR, ngc_number VARCHAR)
###human: Which Object type has a NGC number of 2787?
###assistant: SELECT object_type FROM table_name_19 WHERE ngc_number = 2787 |
###context:CREATE TABLE table_name_46 (venue VARCHAR, away_team VARCHAR)
###human: Where did St KIlda play their away game?
###assistant: SELECT venue FROM table_name_46 WHERE away_team = "st kilda" |
###context:CREATE TABLE table_name_79 (score VARCHAR, visitor VARCHAR, record VARCHAR)
###human: What is the score when Philadelphia was the visitor with a Record of 7β4β0?
###assistant: SELECT score FROM table_name_79 WHERE visitor = "philadelphia" AND record = "7β4β0" |
###context:CREATE TABLE table_name_65 (nominee VARCHAR, category VARCHAR, result VARCHAR)
###human: What was nominee nominated for outstanding featured actor in a musical?
###assistant: SELECT nominee FROM table_name_65 WHERE category = "outstanding featured actor in a musical" AND result = "nominated" |
###context:CREATE TABLE table_name_17 (result VARCHAR, award VARCHAR, nominee VARCHAR)
###human: What is the result of nominee, Patricia McGourty, for the drama desk award?
###assistant: SELECT result FROM table_name_17 WHERE award = "drama desk award" AND nominee = "patricia mcgourty" |
###context:CREATE TABLE table_name_41 (year VARCHAR, nominee VARCHAR, award VARCHAR)
###human: What year was Patricia Mcgourty nominated for a Tony award?
###assistant: SELECT year FROM table_name_41 WHERE nominee = "patricia mcgourty" AND award = "tony award" |
###context:CREATE TABLE table_name_44 (driver VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR)
###human: I want the driver with Laps larger than 16 with a ferrari and grid less than 15
###assistant: SELECT driver FROM table_name_44 WHERE laps > 16 AND constructor = "ferrari" AND grid < 15 |
###context:CREATE TABLE table_name_2 (d_46_β VARCHAR, d_43_β VARCHAR)
###human: What is the D 46 β with a D 43 β with r 3?
###assistant: SELECT d_46_β FROM table_name_2 WHERE d_43_β = "r 3" |
###context:CREATE TABLE table_name_64 (d_43_β VARCHAR, d_49_β VARCHAR)
###human: What is the D 43 β with a D 49 β with d 49 β?
###assistant: SELECT d_43_β FROM table_name_64 WHERE d_49_β = "d 49 β" |
###context:CREATE TABLE table_name_87 (d_48_β VARCHAR, d_46_β VARCHAR)
###human: What is the D 48 β with a D 46 β with r 33 o?
###assistant: SELECT d_48_β FROM table_name_87 WHERE d_46_β = "r 33 o" |
###context:CREATE TABLE table_name_27 (d_48_β VARCHAR, d_49_β VARCHAR)
###human: What is the D 48 β with a D 49 β with r 9?
###assistant: SELECT d_48_β FROM table_name_27 WHERE d_49_β = "r 9" |
###context:CREATE TABLE table_name_94 (d_46_β VARCHAR, d_41_β VARCHAR)
###human: What is the D 46 β with a D 41 β with d 38 β?
###assistant: SELECT d_46_β FROM table_name_94 WHERE d_41_β = "d 38 β" |
###context:CREATE TABLE table_name_99 (d_45_β VARCHAR, d_46_β VARCHAR)
###human: What is the D 45 β with a D 46 β with d 46 β?
###assistant: SELECT d_45_β FROM table_name_99 WHERE d_46_β = "d 46 β" |
###context:CREATE TABLE table_name_31 (constructor VARCHAR, laps VARCHAR)
###human: Which constructor was there for the race with 25 laps?
###assistant: SELECT constructor FROM table_name_31 WHERE laps = 25 |
###context:CREATE TABLE table_name_99 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR)
###human: Which driver had brm as a constructor and a time/retired of engine?
###assistant: SELECT driver FROM table_name_99 WHERE constructor = "brm" AND time_retired = "engine" |
###context:CREATE TABLE table_name_69 (call_sign VARCHAR, class VARCHAR)
###human: What is the call sign for a class of A?
###assistant: SELECT call_sign FROM table_name_69 WHERE class = "a" |
###context:CREATE TABLE table_name_24 (frequency_mhz INTEGER, city_of_license VARCHAR)
###human: What is the average frequency MHz for license of eastville, virginia?
###assistant: SELECT AVG(frequency_mhz) FROM table_name_24 WHERE city_of_license = "eastville, virginia" |
###context:CREATE TABLE table_name_15 (erp_w INTEGER, call_sign VARCHAR)
###human: What is the average ERP W when the call sign is whre?
###assistant: SELECT AVG(erp_w) FROM table_name_15 WHERE call_sign = "whre" |
###context:CREATE TABLE table_name_12 (name VARCHAR, area VARCHAR)
###human: What is the name of the school in Hillcrest?
###assistant: SELECT name FROM table_name_12 WHERE area = "hillcrest" |
###context:CREATE TABLE table_name_58 (years VARCHAR, name VARCHAR, authority VARCHAR, roll VARCHAR)
###human: What are the years available at Bayview School, which has state authority and a roll number larger than 333?
###assistant: SELECT years FROM table_name_58 WHERE authority = "state" AND roll > 333 AND name = "bayview school" |
###context:CREATE TABLE table_name_71 (date_of_birth__age_ VARCHAR, club_province VARCHAR, player VARCHAR)
###human: When was Tomokazu Soma born who plays for the wild knights?
###assistant: SELECT date_of_birth__age_ FROM table_name_71 WHERE club_province = "wild knights" AND player = "tomokazu soma" |
###context:CREATE TABLE table_name_13 (score VARCHAR, date VARCHAR)
###human: On November 19, 2008 what was the score?
###assistant: SELECT score FROM table_name_13 WHERE date = "november 19, 2008" |
###context:CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)
###human: What is the score on February 23, 2005?
###assistant: SELECT score FROM table_name_81 WHERE date = "february 23, 2005" |
###context:CREATE TABLE table_name_75 (result VARCHAR, date VARCHAR)
###human: What is the result foe October 12, 2005?
###assistant: SELECT result FROM table_name_75 WHERE date = "october 12, 2005" |
###context:CREATE TABLE table_name_67 (events INTEGER, rank VARCHAR, player VARCHAR)
###human: How many events for orville moody, ranking below 3?
###assistant: SELECT SUM(events) FROM table_name_67 WHERE rank > 3 AND player = "orville moody" |
###context:CREATE TABLE table_name_65 (rank INTEGER, events VARCHAR, wins VARCHAR, player VARCHAR)
###human: What is the rank for don january with over 2 wins and over 17 events?
###assistant: SELECT MIN(rank) FROM table_name_65 WHERE wins > 2 AND player = "don january" AND events > 17 |
###context:CREATE TABLE table_name_74 (home_team VARCHAR)
###human: What is the score of the Home team of geelong?
###assistant: SELECT home_team AS score FROM table_name_74 WHERE home_team = "geelong" |
###context:CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR)
###human: Which Away team has a Home team of south melbourne?
###assistant: SELECT away_team FROM table_name_63 WHERE home_team = "south melbourne" |
###context:CREATE TABLE table_name_32 (away_team VARCHAR, venue VARCHAR)
###human: Which Away team has a Venue of arden street oval?
###assistant: SELECT away_team FROM table_name_32 WHERE venue = "arden street oval" |
###context:CREATE TABLE table_name_82 (away_team VARCHAR, venue VARCHAR)
###human: Which Away team score has a Venue of scg?
###assistant: SELECT away_team AS score FROM table_name_82 WHERE venue = "scg" |
###context:CREATE TABLE table_name_28 (school VARCHAR, player VARCHAR)
###human: What school has the player of mike rosario?
###assistant: SELECT school FROM table_name_28 WHERE player = "mike rosario" |
###context:CREATE TABLE table_name_53 (nba_draft VARCHAR, player VARCHAR)
###human: What was the nba draft for al-farouq aminu?
###assistant: SELECT nba_draft FROM table_name_53 WHERE player = "al-farouq aminu" |
###context:CREATE TABLE table_name_16 (attendance INTEGER, record VARCHAR)
###human: What was the average attendance of a team with a 38β31β8 record?
###assistant: SELECT AVG(attendance) FROM table_name_16 WHERE record = "38β31β8" |
###context:CREATE TABLE table_name_89 (grid INTEGER, driver VARCHAR)
###human: What is the smallest grid for Bob Anderson?
###assistant: SELECT MIN(grid) FROM table_name_89 WHERE driver = "bob anderson" |
###context:CREATE TABLE table_name_67 (time VARCHAR, score VARCHAR)
###human: What was the time when the score was 0β3?
###assistant: SELECT time FROM table_name_67 WHERE score = "0β3" |
###context:CREATE TABLE table_name_87 (set_1 VARCHAR, set_3 VARCHAR)
###human: What was the first set with a third set of 25β21?
###assistant: SELECT set_1 FROM table_name_87 WHERE set_3 = "25β21" |
###context:CREATE TABLE table_name_84 (total_games VARCHAR, years VARCHAR, pac_12 VARCHAR)
###human: How many total games associated with the Pac-12 of california and 117 years?
###assistant: SELECT total_games FROM table_name_84 WHERE years = 117 AND pac_12 = "california" |
###context:CREATE TABLE table_name_60 (years INTEGER, tied VARCHAR, total_games VARCHAR)
###human: What is the average number of years associated with 51 games tied and over 1184 total games?
###assistant: SELECT AVG(years) FROM table_name_60 WHERE tied = 51 AND total_games > 1184 |
###context:CREATE TABLE table_name_8 (tied INTEGER, pct VARCHAR, lost VARCHAR)
###human: What is the highest number of games tied for teams with under 551 games and a percentage of under 0.5593?
###assistant: SELECT MAX(tied) FROM table_name_8 WHERE pct < 0.5593 AND lost = 551 |
###context:CREATE TABLE table_name_33 (country VARCHAR, airline VARCHAR)
###human: Name the country for airline of gol
###assistant: SELECT country FROM table_name_33 WHERE airline = "gol" |
###context:CREATE TABLE table_name_98 (airline VARCHAR, rank VARCHAR)
###human: Name the airline for rank of 4
###assistant: SELECT airline FROM table_name_98 WHERE rank = 4 |
###context:CREATE TABLE table_name_81 (hot_digital_songs_reaction VARCHAR, hot_100_reaction VARCHAR)
###human: What digital reaction has a hot 100 reaction of 4 (+4)?
###assistant: SELECT hot_digital_songs_reaction FROM table_name_81 WHERE hot_100_reaction = "4 (+4)" |
###context:CREATE TABLE table_name_89 (hot_digital_songs_reaction VARCHAR, hot_100_reaction VARCHAR)
###human: What digital reaction has hot 100 reaction of 2 (+1)?
###assistant: SELECT hot_digital_songs_reaction FROM table_name_89 WHERE hot_100_reaction = "2 (+1)" |
###context:CREATE TABLE table_name_71 (week VARCHAR, hot_100_reaction VARCHAR, performer_s_ VARCHAR)
###human: Which week has hot 100 reaction as did not debut for Natalie Cole?
###assistant: SELECT week FROM table_name_71 WHERE hot_100_reaction = "did not debut" AND performer_s_ = "natalie cole" |
###context:CREATE TABLE table_name_41 (hot_100_reaction VARCHAR, week VARCHAR, performer_s_ VARCHAR)
###human: What is the hot 100 reaction in week of top 13 for Kanye West?
###assistant: SELECT hot_100_reaction FROM table_name_41 WHERE week = "top 13" AND performer_s_ = "kanye west" |
###context:CREATE TABLE table_name_20 (hot_digital_songs_reaction VARCHAR, week VARCHAR, performer_s_ VARCHAR)
###human: What is the digital reaction for week of top 5 for Taylor Hicks?
###assistant: SELECT hot_digital_songs_reaction FROM table_name_20 WHERE week = "top 5" AND performer_s_ = "taylor hicks" |
###context:CREATE TABLE table_name_78 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)
###human: Which Time/Retired had a grid number bigger than 1 and whose driver was Damon Hill?
###assistant: SELECT time_retired FROM table_name_78 WHERE grid > 1 AND driver = "damon hill" |
###context:CREATE TABLE table_name_98 (laps VARCHAR, driver VARCHAR)
###human: Which lap number had Olivier Panis as a driver?
###assistant: SELECT laps FROM table_name_98 WHERE driver = "olivier panis" |
###context:CREATE TABLE table_name_15 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
###human: what is the grid when the time/retired is oil pressure and the laps are more than 50?
###assistant: SELECT AVG(grid) FROM table_name_15 WHERE time_retired = "oil pressure" AND laps > 50 |
###context:CREATE TABLE table_name_61 (grid INTEGER, time_retired VARCHAR)
###human: what is the grid when the time/retired is 1:46:42.3?
###assistant: SELECT SUM(grid) FROM table_name_61 WHERE time_retired = "1:46:42.3" |
###context:CREATE TABLE table_name_76 (crowd VARCHAR, away_team VARCHAR)
###human: What was the attendance when Fitzroy played as the away team?
###assistant: SELECT COUNT(crowd) FROM table_name_76 WHERE away_team = "fitzroy" |
###context:CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)
###human: What did the home team score at Western Oval?
###assistant: SELECT home_team AS score FROM table_name_4 WHERE venue = "western oval" |
###context:CREATE TABLE table_name_5 (home_team VARCHAR, crowd INTEGER)
###human: Who was the home team when the attendance was more than 20,283?
###assistant: SELECT home_team FROM table_name_5 WHERE crowd > 20 OFFSET 283 |
###context:CREATE TABLE table_name_25 (high_points VARCHAR, game VARCHAR, date VARCHAR)
###human: On April 29, with a game larger than 2, what is the high points?
###assistant: SELECT high_points FROM table_name_25 WHERE game > 2 AND date = "april 29" |
###context:CREATE TABLE table_name_18 (score VARCHAR, game VARCHAR)
###human: What was the score for Game 3?
###assistant: SELECT score FROM table_name_18 WHERE game = 3 |
###context:CREATE TABLE table_name_60 (grid INTEGER, laps VARCHAR)
###human: What is the grid total for cars that went 17 laps?
###assistant: SELECT SUM(grid) FROM table_name_60 WHERE laps = 17 |
###context:CREATE TABLE table_name_80 (gold INTEGER, rank VARCHAR, bronze VARCHAR)
###human: How many golds for the nation ranked below 5 and over 1 bronze medals?
###assistant: SELECT MAX(gold) FROM table_name_80 WHERE rank > 5 AND bronze < 1 |
###context:CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)
###human: During footscray's home match, who was the away team?
###assistant: SELECT away_team AS score FROM table_name_33 WHERE home_team = "footscray" |
###context:CREATE TABLE table_name_92 (format VARCHAR, region VARCHAR, date VARCHAR)
###human: Which format had a United States region and a date of August 11, 2009?
###assistant: SELECT format FROM table_name_92 WHERE region = "united states" AND date = "august 11, 2009" |
###context:CREATE TABLE table_name_76 (date VARCHAR, region VARCHAR)
###human: Which date had a Japan region?
###assistant: SELECT date FROM table_name_76 WHERE region = "japan" |
###context:CREATE TABLE table_name_89 (region VARCHAR, catalogue VARCHAR)
###human: Which region had a catalogue number of 9362482872?
###assistant: SELECT region FROM table_name_89 WHERE catalogue = "9362482872" |
###context:CREATE TABLE table_name_41 (region VARCHAR, date VARCHAR)
###human: Which region had the date of November 18, 2002?
###assistant: SELECT region FROM table_name_41 WHERE date = "november 18, 2002" |
###context:CREATE TABLE table_name_53 (label VARCHAR, region VARCHAR, date VARCHAR)
###human: Which label had a Japan region and a date of November 3, 2004?
###assistant: SELECT label FROM table_name_53 WHERE region = "japan" AND date = "november 3, 2004" |
###context:CREATE TABLE table_name_38 (label VARCHAR, format VARCHAR, date VARCHAR)
###human: Which label had a CD format and a date of June 25, 2002?
###assistant: SELECT label FROM table_name_38 WHERE format = "cd" AND date = "june 25, 2002" |
###context:CREATE TABLE table_name_76 (award VARCHAR, result VARCHAR, year VARCHAR)
###human: What award was nominated in 2007?
###assistant: SELECT award FROM table_name_76 WHERE result = "nominated" AND year = 2007 |
###context:CREATE TABLE table_name_41 (year INTEGER, result VARCHAR, award VARCHAR)
###human: What year did was the Inside Soap Awards won?
###assistant: SELECT AVG(year) FROM table_name_41 WHERE result = "won" AND award = "inside soap awards" |
###context:CREATE TABLE table_name_9 (record VARCHAR, date VARCHAR)
###human: What was the record for the game on April 9, 2008?
###assistant: SELECT record FROM table_name_9 WHERE date = "april 9, 2008" |
###context:CREATE TABLE table_name_34 (leading_scorer VARCHAR, date VARCHAR)
###human: Who was the leading scorer on April 9, 2008?
###assistant: SELECT leading_scorer FROM table_name_34 WHERE date = "april 9, 2008" |
###context:CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)
###human: in a game against st kilda, what was the away team's score?
###assistant: SELECT away_team FROM table_name_33 WHERE home_team = "st kilda" |
###context:CREATE TABLE table_name_46 (home_team VARCHAR, away_team VARCHAR)
###human: In the match where geelong was the away team, who was the home team?
###assistant: SELECT home_team FROM table_name_46 WHERE away_team = "geelong" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.