training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_37 (date INTEGER, building VARCHAR)
###human: Name the least date for the place which has a building of victoria hall
###assistant: SELECT MIN(date) FROM table_name_37 WHERE building = "victoria hall" |
###context:CREATE TABLE table_name_94 (size VARCHAR, date INTEGER)
###human: Name the size which is past 2000
###assistant: SELECT size FROM table_name_94 WHERE date > 2000 |
###context:CREATE TABLE table_name_2 (country VARCHAR, place VARCHAR)
###human: Name the country that has mänttä
###assistant: SELECT country FROM table_name_2 WHERE place = "mänttä" |
###context:CREATE TABLE table_name_32 (round VARCHAR, player VARCHAR)
###human: What round was Nick Gillis?
###assistant: SELECT round FROM table_name_32 WHERE player = "nick gillis" |
###context:CREATE TABLE table_name_85 (distance__km_ VARCHAR, station VARCHAR)
###human: What is the distance to funao?
###assistant: SELECT distance__km_ FROM table_name_85 WHERE station = "funao" |
###context:CREATE TABLE table_name_91 (station VARCHAR, japanese VARCHAR, rapid VARCHAR, distance__km_ VARCHAR)
###human: What station has a Rapid of ↑, is 3.4 km away, and has a Japanese title of 下鴨生?
###assistant: SELECT station FROM table_name_91 WHERE rapid = "↑" AND distance__km_ > 3.4 AND japanese = "下鴨生" |
###context:CREATE TABLE table_name_77 (location VARCHAR, distance__km_ VARCHAR, rapid VARCHAR)
###human: What location is less than 7.1 km away, and has a Rapid of ●?
###assistant: SELECT location FROM table_name_77 WHERE distance__km_ < 7.1 AND rapid = "●" |
###context:CREATE TABLE table_name_89 (father VARCHAR, spouse VARCHAR, birth VARCHAR)
###human: What is the name of the father who was born in 1204 and married ottokar ii?
###assistant: SELECT father FROM table_name_89 WHERE spouse = "ottokar ii" AND birth = "1204" |
###context:CREATE TABLE table_name_47 (birth VARCHAR, ceased_to_be_queen VARCHAR)
###human: What is the birth date of the woman who ceased to be Queen on 18 Jun 1297?
###assistant: SELECT birth FROM table_name_47 WHERE ceased_to_be_queen = "18 jun 1297" |
###context:CREATE TABLE table_name_26 (spouse VARCHAR, father VARCHAR)
###human: Leopold VI, Duke of Austria is the father-in-law of which person?
###assistant: SELECT spouse FROM table_name_26 WHERE father = "leopold vi, duke of austria" |
###context:CREATE TABLE table_name_94 (birth VARCHAR, death VARCHAR)
###human: What is the birth date of the person who died on 18 October 1335?
###assistant: SELECT birth FROM table_name_94 WHERE death = "18 october 1335" |
###context:CREATE TABLE table_name_59 (marriage VARCHAR, death VARCHAR)
###human: When did the person who died on 6 Dec 1240 get married?
###assistant: SELECT marriage FROM table_name_59 WHERE death = "6 dec 1240" |
###context:CREATE TABLE table_name_38 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR, manufacturer VARCHAR)
###human: What time/retired for a grid less than 19, under 21 laps, and made by aprilia?
###assistant: SELECT time_retired FROM table_name_38 WHERE grid < 19 AND manufacturer = "aprilia" AND laps < 21 |
###context:CREATE TABLE table_name_25 (grid INTEGER, rider VARCHAR)
###human: What is the grid for dirk heidolf?
###assistant: SELECT SUM(grid) FROM table_name_25 WHERE rider = "dirk heidolf" |
###context:CREATE TABLE table_name_60 (away_team VARCHAR, venue VARCHAR)
###human: What away team plays at Victoria Park?
###assistant: SELECT away_team FROM table_name_60 WHERE venue = "victoria park" |
###context:CREATE TABLE table_name_96 (caps INTEGER, player VARCHAR)
###human: How many caps does stephen hoiles have?
###assistant: SELECT SUM(caps) FROM table_name_96 WHERE player = "stephen hoiles" |
###context:CREATE TABLE table_name_19 (date VARCHAR, home_team VARCHAR)
###human: Which Date has a Home team of st kilda?
###assistant: SELECT date FROM table_name_19 WHERE home_team = "st kilda" |
###context:CREATE TABLE table_name_6 (venue VARCHAR, away_team VARCHAR)
###human: Which Venue has an Away team of footscray?
###assistant: SELECT venue FROM table_name_6 WHERE away_team = "footscray" |
###context:CREATE TABLE table_name_86 (crowd VARCHAR, home_team VARCHAR)
###human: Which Crowd has a Home team of geelong?
###assistant: SELECT crowd FROM table_name_86 WHERE home_team = "geelong" |
###context:CREATE TABLE table_name_13 (silver INTEGER, total VARCHAR, bronze VARCHAR)
###human: What is the most silver medals a team with 3 total medals and less than 1 bronze has?
###assistant: SELECT MAX(silver) FROM table_name_13 WHERE total = 3 AND bronze < 1 |
###context:CREATE TABLE table_name_68 (silver INTEGER, gold INTEGER)
###human: What is the least amount of silver medals a team with less than 0 gold medals has?
###assistant: SELECT MIN(silver) FROM table_name_68 WHERE gold < 0 |
###context:CREATE TABLE table_name_22 (bronze INTEGER, silver INTEGER)
###human: What is the most bronze a team with more than 2 silvers has?
###assistant: SELECT MAX(bronze) FROM table_name_22 WHERE silver > 2 |
###context:CREATE TABLE table_name_67 (bronze INTEGER, gold VARCHAR, silver VARCHAR)
###human: What is the total amount of bronze medals a team with 1 gold and more than 3 silver medals has?
###assistant: SELECT SUM(bronze) FROM table_name_67 WHERE gold = 1 AND silver > 3 |
###context:CREATE TABLE table_name_86 (draw INTEGER, points VARCHAR)
###human: What is the draw number that has 59 points?
###assistant: SELECT AVG(draw) FROM table_name_86 WHERE points = 59 |
###context:CREATE TABLE table_name_62 (place VARCHAR, artist VARCHAR)
###human: What place for roger pontare?
###assistant: SELECT place FROM table_name_62 WHERE artist = "roger pontare" |
###context:CREATE TABLE table_name_41 (song VARCHAR, draw INTEGER)
###human: What song has draw number less than 2?
###assistant: SELECT song FROM table_name_41 WHERE draw < 2 |
###context:CREATE TABLE table_name_42 (crowd VARCHAR, home_team VARCHAR)
###human: What was the attendance when Essendon played as the home team?
###assistant: SELECT COUNT(crowd) FROM table_name_42 WHERE home_team = "essendon" |
###context:CREATE TABLE table_name_3 (home_team VARCHAR, venue VARCHAR)
###human: Who played the home team at Windy Hill?
###assistant: SELECT home_team FROM table_name_3 WHERE venue = "windy hill" |
###context:CREATE TABLE table_name_41 (date VARCHAR, decision VARCHAR)
###human: What was the date of the game that had a decision of wall?
###assistant: SELECT date FROM table_name_41 WHERE decision = "wall" |
###context:CREATE TABLE table_name_84 (circuit VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)
###human: What is the name of the circuit when Jack Brabham is in the pole position and Graham Hill has the fastest lap?
###assistant: SELECT circuit FROM table_name_84 WHERE pole_position = "jack brabham" AND fastest_lap = "graham hill" |
###context:CREATE TABLE table_name_90 (race VARCHAR, circuit VARCHAR)
###human: What race contains the Monaco circuit?
###assistant: SELECT race FROM table_name_90 WHERE circuit = "monaco" |
###context:CREATE TABLE table_name_43 (date VARCHAR, pole_position VARCHAR, circuit VARCHAR)
###human: What is the date of the race when Jack Brabham is in the pole position and the circuit is Spa-Francorchamps?
###assistant: SELECT date FROM table_name_43 WHERE pole_position = "jack brabham" AND circuit = "spa-francorchamps" |
###context:CREATE TABLE table_name_1 (circuit VARCHAR, fastest_lap VARCHAR)
###human: What is the name of the circuit when Phil Hill has the fastest lap?
###assistant: SELECT circuit FROM table_name_1 WHERE fastest_lap = "phil hill" |
###context:CREATE TABLE table_name_28 (reg_gp INTEGER, player VARCHAR, pick__number VARCHAR)
###human: What is the sum of every REG GP that Peter Andersson played as a pick# less than 143?
###assistant: SELECT SUM(reg_gp) FROM table_name_28 WHERE player = "peter andersson" AND pick__number < 143 |
###context:CREATE TABLE table_name_73 (pl_gp VARCHAR, player VARCHAR, reg_gp VARCHAR)
###human: What is the total of PI GP played by Anton Rodin with a Reg GP less than 0?
###assistant: SELECT COUNT(pl_gp) FROM table_name_73 WHERE player = "anton rodin" AND reg_gp < 0 |
###context:CREATE TABLE table_name_32 (pick__number VARCHAR, player VARCHAR, reg_gp VARCHAR)
###human: What is the total pick# played by Anton Rodin with a Reg GP over 0?
###assistant: SELECT COUNT(pick__number) FROM table_name_32 WHERE player = "anton rodin" AND reg_gp > 0 |
###context:CREATE TABLE table_name_52 (grid INTEGER, laps VARCHAR, driver VARCHAR)
###human: What is the lowest grid that has over 67 laps with stefan bellof driving?
###assistant: SELECT MIN(grid) FROM table_name_52 WHERE laps > 67 AND driver = "stefan bellof" |
###context:CREATE TABLE table_name_2 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)
###human: How many laps have a grid under 14 and a time/retired of out of fuel?
###assistant: SELECT SUM(laps) FROM table_name_2 WHERE grid < 14 AND time_retired = "out of fuel" |
###context:CREATE TABLE table_name_21 (driver VARCHAR, laps VARCHAR, grid VARCHAR, constructor VARCHAR)
###human: Who drove the renault that went over 23 laps and had a grid under 11?
###assistant: SELECT driver FROM table_name_21 WHERE grid < 11 AND constructor = "renault" AND laps > 23 |
###context:CREATE TABLE table_name_59 (ngc_number INTEGER, apparent_magnitude INTEGER)
###human: What is the average NGC number that has a Apparent magnitude greater than 14.2?
###assistant: SELECT AVG(ngc_number) FROM table_name_59 WHERE apparent_magnitude > 14.2 |
###context:CREATE TABLE table_name_5 (ngc_number INTEGER, declination___j2000__ VARCHAR, apparent_magnitude VARCHAR)
###human: What is the highest NGC number that has a Declination ( J2000 ) of °04′58″ and a Apparent magnitude larger than 7.3?
###assistant: SELECT MAX(ngc_number) FROM table_name_5 WHERE declination___j2000__ = "°04′58″" AND apparent_magnitude > 7.3 |
###context:CREATE TABLE table_name_17 (constellation VARCHAR, object_type VARCHAR, ngc_number VARCHAR)
###human: What Constellation has a Object type of globular cluster and a NGC number of 5986?
###assistant: SELECT constellation FROM table_name_17 WHERE object_type = "globular cluster" AND ngc_number = 5986 |
###context:CREATE TABLE table_name_43 (bronze INTEGER, points VARCHAR, gold VARCHAR)
###human: For clubs that have 0 gold and less than 5 points, what is the average amount of bronze medals?
###assistant: SELECT AVG(bronze) FROM table_name_43 WHERE points < 5 AND gold < 0 |
###context:CREATE TABLE table_name_78 (points INTEGER, bronze VARCHAR, small_silver VARCHAR, club VARCHAR)
###human: Club aik had over 9 small silver medals and more than 8 bronze medals, how many total points did they have?
###assistant: SELECT AVG(points) FROM table_name_78 WHERE small_silver > 9 AND club = "aik" AND bronze > 8 |
###context:CREATE TABLE table_name_68 (points VARCHAR, club VARCHAR, rank VARCHAR)
###human: How many points did landskrona bois get when they were ranked below 18?
###assistant: SELECT COUNT(points) FROM table_name_68 WHERE club = "landskrona bois" AND rank < 18 |
###context:CREATE TABLE table_name_29 (opponent VARCHAR, game VARCHAR)
###human: Who was the opponent for game 5?
###assistant: SELECT opponent FROM table_name_29 WHERE game = 5 |
###context:CREATE TABLE table_name_28 (team VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR)
###human: Name the team for pick more than 30 and position of c with round more than 4
###assistant: SELECT team FROM table_name_28 WHERE pick > 30 AND position = "c" AND round > 4 |
###context:CREATE TABLE table_name_26 (number_of_decimal_digits VARCHAR, total_bits VARCHAR, exponent VARCHAR)
###human: What's the number of decimal digits when the total bits is more than 32 and the exponent is less than 15?
###assistant: SELECT number_of_decimal_digits FROM table_name_26 WHERE total_bits > 32 AND exponent < 15 |
###context:CREATE TABLE table_name_41 (significand VARCHAR, number_of_decimal_digits VARCHAR, total_bits VARCHAR)
###human: What's the total number of signicand with ~34.0 decimal digits and more than 128 total bits?
###assistant: SELECT COUNT(significand) FROM table_name_41 WHERE number_of_decimal_digits = "~34.0" AND total_bits > 128 |
###context:CREATE TABLE table_name_98 (sign INTEGER, total_bits VARCHAR, bits_precision VARCHAR, type VARCHAR)
###human: What's the sum of sign with more than 53 bits precision, double extended (80-bit) type, and more than 80 total bits?
###assistant: SELECT SUM(sign) FROM table_name_98 WHERE bits_precision > 53 AND type = "double extended (80-bit)" AND total_bits > 80 |
###context:CREATE TABLE table_name_32 (bits_precision INTEGER, total_bits INTEGER)
###human: What's the lowest bits precision when the total bits are less than 16?
###assistant: SELECT MIN(bits_precision) FROM table_name_32 WHERE total_bits < 16 |
###context:CREATE TABLE table_name_28 (years_played INTEGER, singles_win_loss VARCHAR, first_year_played VARCHAR)
###human: How many years did the team that has a Singles win-Loss of 4-9 and first played before 1999?
###assistant: SELECT SUM(years_played) FROM table_name_28 WHERE singles_win_loss = "4-9" AND first_year_played < 1999 |
###context:CREATE TABLE table_name_29 (game INTEGER, record VARCHAR)
###human: What is the highest game number with a record of 12-8-1?
###assistant: SELECT MAX(game) FROM table_name_29 WHERE record = "12-8-1" |
###context:CREATE TABLE table_name_46 (record VARCHAR, decision VARCHAR, november VARCHAR)
###human: What is the record when the decision was valiquette on November 23?
###assistant: SELECT record FROM table_name_46 WHERE decision = "valiquette" AND november = 23 |
###context:CREATE TABLE table_name_45 (driver VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR)
###human: I want the driver for Laps more than 8 and ferrari with Grid of 8
###assistant: SELECT driver FROM table_name_45 WHERE laps > 8 AND constructor = "ferrari" AND grid = 8 |
###context:CREATE TABLE table_name_28 (title VARCHAR, translation VARCHAR)
###human: Which title has the Translation of vesoul?
###assistant: SELECT title FROM table_name_28 WHERE translation = "vesoul" |
###context:CREATE TABLE table_name_56 (original_title VARCHAR, year VARCHAR, winner_and_nominees VARCHAR)
###human: What was the orignal title for the winner and nominee, Breaking the Waves, in 1996 (11th)?
###assistant: SELECT original_title FROM table_name_56 WHERE year = "1996 (11th)" AND winner_and_nominees = "breaking the waves" |
###context:CREATE TABLE table_name_25 (original_title VARCHAR, winner_and_nominees VARCHAR)
###human: What is the original title for the winner and nominees 'Secrets & Lies'?
###assistant: SELECT original_title FROM table_name_25 WHERE winner_and_nominees = "secrets & lies" |
###context:CREATE TABLE table_name_69 (country VARCHAR, winner_and_nominees VARCHAR)
###human: The winner and nominee 'Hidden Agenda' is from which country?
###assistant: SELECT country FROM table_name_69 WHERE winner_and_nominees = "hidden agenda" |
###context:CREATE TABLE table_name_49 (total_produced VARCHAR, service VARCHAR, builder’s_model VARCHAR)
###human: What is the total amount of freight produced of u28c?
###assistant: SELECT total_produced FROM table_name_49 WHERE service = "freight" AND builder’s_model = "u28c" |
###context:CREATE TABLE table_name_80 (build_date VARCHAR, prr_class VARCHAR)
###human: What is the build date for PRR Class gf30a?
###assistant: SELECT build_date FROM table_name_80 WHERE prr_class = "gf30a" |
###context:CREATE TABLE table_name_80 (prr_class VARCHAR, wheel_arrangement VARCHAR, total_produced VARCHAR)
###human: What is the PRR class for wheel arrangement c-c and total less than 15?
###assistant: SELECT prr_class FROM table_name_80 WHERE wheel_arrangement = "c-c" AND total_produced < 15 |
###context:CREATE TABLE table_name_61 (builder’s_model VARCHAR, service VARCHAR, prr_class VARCHAR)
###human: What was the model for PRR class of gf28a freight?
###assistant: SELECT builder’s_model FROM table_name_61 WHERE service = "freight" AND prr_class = "gf28a" |
###context:CREATE TABLE table_name_21 (queens VARCHAR, manhattan VARCHAR)
###human: Who got 189,524 votes?
###assistant: SELECT queens FROM table_name_21 WHERE manhattan = "189,524" |
###context:CREATE TABLE table_name_51 (owner VARCHAR, frequency VARCHAR)
###human: Which owner has the frequency of 103.3 FM?
###assistant: SELECT owner FROM table_name_51 WHERE frequency = "103.3 fm" |
###context:CREATE TABLE table_name_25 (call_sign VARCHAR, format VARCHAR)
###human: What is the call sign of the Classic Country Music station?
###assistant: SELECT call_sign FROM table_name_25 WHERE format = "classic country" |
###context:CREATE TABLE table_name_88 (name VARCHAR, call_sign VARCHAR)
###human: Which owner has the call sign of KDSU?
###assistant: SELECT name FROM table_name_88 WHERE call_sign = "kdsu" |
###context:CREATE TABLE table_name_62 (call_sign VARCHAR, name VARCHAR)
###human: What is the call sign for Thunder 106.1?
###assistant: SELECT call_sign FROM table_name_62 WHERE name = "thunder 106.1" |
###context:CREATE TABLE table_name_45 (name VARCHAR, format VARCHAR, frequency VARCHAR)
###human: Which owner has a Contemporary Christian music station on 97.9 FM?
###assistant: SELECT name FROM table_name_45 WHERE format = "contemporary christian music" AND frequency = "97.9 fm" |
###context:CREATE TABLE table_name_35 (leading_scorer VARCHAR, visitor VARCHAR)
###human: Who was the leading scorer in the game where the visiting team was the Pistons?
###assistant: SELECT leading_scorer FROM table_name_35 WHERE visitor = "pistons" |
###context:CREATE TABLE table_name_96 (attendance INTEGER, leading_scorer VARCHAR, home VARCHAR)
###human: How many people attended the game where the leading scorer was Tim Duncan (24), and the home team was the Spurs?
###assistant: SELECT MIN(attendance) FROM table_name_96 WHERE leading_scorer = "tim duncan (24)" AND home = "spurs" |
###context:CREATE TABLE table_name_53 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)
###human: What is the mean number of laps where Time/retired was a water leak and the grid number was bigger than 12?
###assistant: SELECT AVG(laps) FROM table_name_53 WHERE time_retired = "water leak" AND grid > 12 |
###context:CREATE TABLE table_name_60 (laps INTEGER, time_retired VARCHAR, driver VARCHAR)
###human: What is the mean number of laps when time/retired was spun off and the driver was Nick Heidfeld?
###assistant: SELECT AVG(laps) FROM table_name_60 WHERE time_retired = "spun off" AND driver = "nick heidfeld" |
###context:CREATE TABLE table_name_55 (grid VARCHAR, driver VARCHAR)
###human: What is the sum grid number when the driver was Luciano Burti?
###assistant: SELECT COUNT(grid) FROM table_name_55 WHERE driver = "luciano burti" |
###context:CREATE TABLE table_name_5 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)
###human: Which constructor had a laps number bigger than 3 when the driver was Jarno Trulli?
###assistant: SELECT constructor FROM table_name_5 WHERE laps > 3 AND driver = "jarno trulli" |
###context:CREATE TABLE table_name_32 (head_of_household VARCHAR, married_filing_jointly_or_qualified_widow_er_ VARCHAR)
###human: Name the head of household for married filing jointly or qualified widow(er) being $137,051–$208,850
###assistant: SELECT head_of_household FROM table_name_32 WHERE married_filing_jointly_or_qualified_widow_er_ = "$137,051–$208,850" |
###context:CREATE TABLE table_name_61 (married_filing_jointly_or_qualified_widow_er_ VARCHAR, head_of_household VARCHAR)
###human: Name the married filing jointly or qualified widow(er) with head of household being $117,451–$190,200
###assistant: SELECT married_filing_jointly_or_qualified_widow_er_ FROM table_name_61 WHERE head_of_household = "$117,451–$190,200" |
###context:CREATE TABLE table_name_77 (married_filing_separately VARCHAR, single VARCHAR)
###human: Name the married filing separately for single of $0–$8,350
###assistant: SELECT married_filing_separately FROM table_name_77 WHERE single = "$0–$8,350" |
###context:CREATE TABLE table_name_89 (head_of_household VARCHAR, married_filing_separately VARCHAR)
###human: Name the head of household that has married filing separately of $104,426–$186,475
###assistant: SELECT head_of_household FROM table_name_89 WHERE married_filing_separately = "$104,426–$186,475" |
###context:CREATE TABLE table_name_40 (marginal_ordinary_income_tax_rate VARCHAR, head_of_household VARCHAR)
###human: Name the marginal ordinary income tax rate that has a head of household of $372,951+
###assistant: SELECT marginal_ordinary_income_tax_rate FROM table_name_40 WHERE head_of_household = "$372,951+" |
###context:CREATE TABLE table_name_48 (points INTEGER, fgm___fga VARCHAR, number VARCHAR)
###human: What is the point average for the game that has FGM-FGA of 11-28 and a number smaller than 7?
###assistant: SELECT AVG(points) FROM table_name_48 WHERE fgm___fga = "11-28" AND number < 7 |
###context:CREATE TABLE table_name_82 (floors INTEGER, name VARCHAR)
###human: What is the lowest number of floors recorded for buildings built by Dubai Marriott Harbour Hotel & Suites?
###assistant: SELECT MIN(floors) FROM table_name_82 WHERE name = "dubai marriott harbour hotel & suites" |
###context:CREATE TABLE table_name_55 (name VARCHAR, year VARCHAR, floors VARCHAR)
###human: What is the name of the building housing more than 101 floors, that was built after 2006?
###assistant: SELECT name FROM table_name_55 WHERE year > 2006 AND floors > 101 |
###context:CREATE TABLE table_name_41 (crowd VARCHAR, date VARCHAR, away_team VARCHAR)
###human: What was the crowd size on 4 july 1981, and a Away team of essendon?
###assistant: SELECT crowd FROM table_name_41 WHERE date = "4 july 1981" AND away_team = "essendon" |
###context:CREATE TABLE table_name_53 (date VARCHAR, away_team VARCHAR)
###human: When did essendon play away?
###assistant: SELECT date FROM table_name_53 WHERE away_team = "essendon" |
###context:CREATE TABLE table_name_95 (category VARCHAR, award VARCHAR, result VARCHAR, year VARCHAR)
###human: Which category won the Sundance Film Festival award in 1998?
###assistant: SELECT category FROM table_name_95 WHERE result = "won" AND year = 1998 AND award = "sundance film festival" |
###context:CREATE TABLE table_name_20 (category VARCHAR, year VARCHAR, result VARCHAR, film_or_series VARCHAR)
###human: Which award category was the film series The Wire nominated for after 2005?
###assistant: SELECT category FROM table_name_20 WHERE result = "nominated" AND film_or_series = "the wire" AND year > 2005 |
###context:CREATE TABLE table_name_43 (result VARCHAR, category VARCHAR, year VARCHAR)
###human: What was the result for the nominee for Outstanding Supporting Actress in a Drama Series in 2009?
###assistant: SELECT result FROM table_name_43 WHERE category = "outstanding supporting actress in a drama series" AND year = 2009 |
###context:CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR)
###human: When st kilda played as the away team, what date was that?
###assistant: SELECT date FROM table_name_67 WHERE away_team = "st kilda" |
###context:CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR)
###human: On what date did Fitzroy play as the home team?
###assistant: SELECT date FROM table_name_74 WHERE home_team = "fitzroy" |
###context:CREATE TABLE table_name_24 (antonio_thomas VARCHAR, hikaru_sato VARCHAR)
###human: Name the antonio thomas for Hikaru Sato of tanaka (8:09)
###assistant: SELECT antonio_thomas FROM table_name_24 WHERE hikaru_sato = "tanaka (8:09)" |
###context:CREATE TABLE table_name_85 (block_a VARCHAR, antonio_thomas VARCHAR)
###human: Tell me the block A for antonio thomas of kondo (13:24)
###assistant: SELECT block_a FROM table_name_85 WHERE antonio_thomas = "kondo (13:24)" |
###context:CREATE TABLE table_name_22 (minoru VARCHAR, hikaru_sato VARCHAR, super_crazy VARCHAR)
###human: Name the minoru that has a hikaru sato of x and super crazy of yang (8:36)
###assistant: SELECT minoru FROM table_name_22 WHERE hikaru_sato = "x" AND super_crazy = "yang (8:36)" |
###context:CREATE TABLE table_name_68 (record VARCHAR, visitor VARCHAR)
###human: Atlanta was a visitor on December 8, what was their record?
###assistant: SELECT record FROM table_name_68 WHERE visitor = "atlanta" |
###context:CREATE TABLE table_name_43 (team VARCHAR, matches VARCHAR)
###human: Tell me the team which has matches of 13
###assistant: SELECT team FROM table_name_43 WHERE matches = 13 |
###context:CREATE TABLE table_name_55 (win__percentage INTEGER, drawn INTEGER)
###human: Tell me the sum of win % for drawn being larger than 35
###assistant: SELECT SUM(win__percentage) FROM table_name_55 WHERE drawn > 35 |
###context:CREATE TABLE table_name_91 (win__percentage INTEGER, drawn VARCHAR)
###human: Name the most win % for 13 drawn
###assistant: SELECT MAX(win__percentage) FROM table_name_91 WHERE drawn = 13 |
###context:CREATE TABLE table_name_53 (lost INTEGER, matches VARCHAR)
###human: Name the average lost for matches of 6
###assistant: SELECT AVG(lost) FROM table_name_53 WHERE matches = 6 |
###context:CREATE TABLE table_name_89 (time_retired VARCHAR, grid VARCHAR)
###human: What was the time recorded for grid 18?
###assistant: SELECT time_retired FROM table_name_89 WHERE grid = 18 |
###context:CREATE TABLE table_name_83 (catalogue VARCHAR, song_title VARCHAR, track VARCHAR, recorded VARCHAR)
###human: What catalogue has a track less than 16 and 2/3/56 recorded with a song titled Lawdy Miss Clawdy?
###assistant: SELECT catalogue FROM table_name_83 WHERE track < 16 AND recorded = "2/3/56" AND song_title = "lawdy miss clawdy" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.