training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_63 (field VARCHAR, date VARCHAR)
###human: On which field was the game played on July 12?
###assistant: SELECT field FROM table_name_63 WHERE date = "july 12" |
###context:CREATE TABLE table_name_53 (venue VARCHAR, scored VARCHAR, competition VARCHAR)
###human: At what venue did Sigurd Rushfeldt score 1 point in the 2006 FIFA World Cup Qualification competition?
###assistant: SELECT venue FROM table_name_53 WHERE scored = 1 AND competition = "2006 fifa world cup qualification" |
###context:CREATE TABLE table_name_24 (date VARCHAR, scored VARCHAR, competition VARCHAR)
###human: What date did Sigurd Rushfeldt score less than 2 points in the UEFA Euro 2004 qualifying competition?
###assistant: SELECT date FROM table_name_24 WHERE scored < 2 AND competition = "uefa euro 2004 qualifying" |
###context:CREATE TABLE table_name_21 (tournament VARCHAR, date VARCHAR)
###human: What is the tournament on February 17, 2002?
###assistant: SELECT tournament FROM table_name_21 WHERE date = "february 17, 2002" |
###context:CREATE TABLE table_name_87 (goals INTEGER, player VARCHAR)
###human: How many goals does mitsuo kato have?
###assistant: SELECT MAX(goals) FROM table_name_87 WHERE player = "mitsuo kato" |
###context:CREATE TABLE table_name_99 (engine VARCHAR, entrant VARCHAR, driver VARCHAR)
###human: Which engine has the entrant scuderia ferrari and is driven by Raymond Sommer?
###assistant: SELECT engine FROM table_name_99 WHERE entrant = "scuderia ferrari" AND driver = "raymond sommer" |
###context:CREATE TABLE table_name_51 (chassis VARCHAR, driver VARCHAR)
###human: What Chassis does Reg Parnell drive?
###assistant: SELECT chassis FROM table_name_51 WHERE driver = "reg parnell" |
###context:CREATE TABLE table_name_65 (speed VARCHAR, rank VARCHAR, rider VARCHAR)
###human: What is Ryan McCay's speed that has a rank better than 8?
###assistant: SELECT speed FROM table_name_65 WHERE rank > 8 AND rider = "ryan mccay" |
###context:CREATE TABLE table_name_18 (team VARCHAR, speed VARCHAR)
###human: What's the name of the team that went 113.316mph?
###assistant: SELECT team FROM table_name_18 WHERE speed = "113.316mph" |
###context:CREATE TABLE table_name_81 (team VARCHAR, rank VARCHAR, rider VARCHAR)
###human: What's Matts Nilsson's team that's ranked better than 7?
###assistant: SELECT team FROM table_name_81 WHERE rank < 7 AND rider = "matts nilsson" |
###context:CREATE TABLE table_name_22 (drop_zone INTEGER, troop_carrier_group VARCHAR)
###human: What is the average drop zone time in the N drop zone for the 1st Pathfinder Prov.?
###assistant: SELECT AVG(drop_zone) AS Time FROM table_name_22 WHERE drop_zone = "n" AND troop_carrier_group = "1st pathfinder prov." |
###context:CREATE TABLE table_name_42 (uk_base VARCHAR, airborne_unit VARCHAR)
###human: Which UK Base has an airborne unit of Pathfinders?
###assistant: SELECT uk_base FROM table_name_42 WHERE airborne_unit = "pathfinders" |
###context:CREATE TABLE table_name_94 (high_assists VARCHAR, game VARCHAR)
###human: What was the number of high assists for game 1?
###assistant: SELECT high_assists FROM table_name_94 WHERE game = 1 |
###context:CREATE TABLE table_name_35 (chief_judge VARCHAR, reason_for_termination VARCHAR)
###human: Tell me the chief judge which has reason for termination of retirement
###assistant: SELECT chief_judge FROM table_name_35 WHERE reason_for_termination = "retirement" |
###context:CREATE TABLE table_name_41 (high_assists VARCHAR, high_rebounds VARCHAR)
###human: For boozer (13) what is the high assists and high rebounds?
###assistant: SELECT high_assists FROM table_name_41 WHERE high_rebounds = "boozer (13)" |
###context:CREATE TABLE table_name_40 (score VARCHAR, game VARCHAR, high_points VARCHAR)
###human: What is the score for the game that is less than 4 and a high points of williams (28)?
###assistant: SELECT score FROM table_name_40 WHERE game < 4 AND high_points = "williams (28)" |
###context:CREATE TABLE table_name_1 (athlete VARCHAR, round_3 VARCHAR, event VARCHAR)
###human: Which athlete in the 76 kg class, did not advance at the end of Round 3.
###assistant: SELECT athlete FROM table_name_1 WHERE round_3 = "did not advance" AND event = "76 kg" |
###context:CREATE TABLE table_name_99 (owner VARCHAR, post_position VARCHAR, jockey VARCHAR)
###human: Who owns the horse with a post position of less than 4 with jockey todd pletcher?
###assistant: SELECT owner FROM table_name_99 WHERE post_position < 4 AND jockey = "todd pletcher" |
###context:CREATE TABLE table_name_50 (jockey VARCHAR, horse_name VARCHAR)
###human: What jockey is on hard spun?
###assistant: SELECT jockey FROM table_name_50 WHERE horse_name = "hard spun" |
###context:CREATE TABLE table_name_84 (horse_name VARCHAR, jockey VARCHAR, post_time_odds VARCHAR)
###human: What horse does todd pletcher ride with odds of 14.20-1?
###assistant: SELECT horse_name FROM table_name_84 WHERE jockey = "todd pletcher" AND post_time_odds = "14.20-1" |
###context:CREATE TABLE table_name_87 (owner VARCHAR, lengths_behind VARCHAR)
###human: Who the Owner that has a Lengths Behind of 5½?
###assistant: SELECT owner FROM table_name_87 WHERE lengths_behind = "5½" |
###context:CREATE TABLE table_name_57 (date_of_birth__age_ VARCHAR, caps VARCHAR, name VARCHAR)
###human: What is the date of birth and age of Gabriel Quak Jun Yi with 3 caps?
###assistant: SELECT date_of_birth__age_ FROM table_name_57 WHERE caps = "3" AND name = "gabriel quak jun yi" |
###context:CREATE TABLE table_name_80 (club VARCHAR, name VARCHAR)
###human: Which club is associated with Hafiz Abu Sujad?
###assistant: SELECT club FROM table_name_80 WHERE name = "hafiz abu sujad" |
###context:CREATE TABLE table_name_45 (rank INTEGER, nation VARCHAR, bronze VARCHAR)
###human: What is the sum of a rank whose nation is West Germany and has bronze larger than 0?
###assistant: SELECT SUM(rank) FROM table_name_45 WHERE nation = "west germany" AND bronze > 0 |
###context:CREATE TABLE table_name_52 (bronze VARCHAR, rank VARCHAR, total VARCHAR, nation VARCHAR)
###human: What is the total of Bronze with a total smaller than 3, and a nation of Poland, and a rank larger than 4?
###assistant: SELECT COUNT(bronze) FROM table_name_52 WHERE total < 3 AND nation = "poland" AND rank > 4 |
###context:CREATE TABLE table_name_69 (money_spent VARCHAR, _2q VARCHAR, total_receipts VARCHAR)
###human: How much money was spent in 2Q when the total receipts were $1,117,566?
###assistant: SELECT money_spent, _2q FROM table_name_69 WHERE total_receipts = "$1,117,566" |
###context:CREATE TABLE table_name_28 (money_raised VARCHAR, _2q VARCHAR, total_receipts VARCHAR)
###human: How much money was raised in the 2Q when the total receipts were $63,075,927?
###assistant: SELECT money_raised, _2q FROM table_name_28 WHERE total_receipts = "$63,075,927" |
###context:CREATE TABLE table_name_4 (laps INTEGER, driver VARCHAR, grid VARCHAR)
###human: When the driver peter gethin has a grid less than 25, what is the average number of laps?
###assistant: SELECT AVG(laps) FROM table_name_4 WHERE driver = "peter gethin" AND grid < 25 |
###context:CREATE TABLE table_name_96 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, driver VARCHAR)
###human: When the driver mike hailwood has a grid greater than 12 and a Time/Retired of + 2 laps, what is the average number of laps?
###assistant: SELECT AVG(laps) FROM table_name_96 WHERE time_retired = "+ 2 laps" AND driver = "mike hailwood" AND grid > 12 |
###context:CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR)
###human: Which team was the home team when playing South Melbourne?
###assistant: SELECT home_team AS score FROM table_name_43 WHERE away_team = "south melbourne" |
###context:CREATE TABLE table_name_48 (home_team VARCHAR, away_team VARCHAR)
###human: What did the home team when they played Richmond?
###assistant: SELECT home_team AS score FROM table_name_48 WHERE away_team = "richmond" |
###context:CREATE TABLE table_name_23 (stage_reached VARCHAR, venue VARCHAR)
###human: What is the stage reached for venue edmonton green?
###assistant: SELECT stage_reached FROM table_name_23 WHERE venue = "edmonton green" |
###context:CREATE TABLE table_name_64 (round INTEGER, club_team VARCHAR)
###human: What is the average round for Club team of garmisch-partenkirchen riessersee sc (germany 2)?
###assistant: SELECT AVG(round) FROM table_name_64 WHERE club_team = "garmisch-partenkirchen riessersee sc (germany 2)" |
###context:CREATE TABLE table_name_15 (player VARCHAR, opponent VARCHAR, team VARCHAR)
###human: What richmond player played against st kilda?
###assistant: SELECT player FROM table_name_15 WHERE opponent = "st kilda" AND team = "richmond" |
###context:CREATE TABLE table_name_66 (player VARCHAR, year VARCHAR)
###human: What player played in 2000?
###assistant: SELECT player FROM table_name_66 WHERE year = 2000 |
###context:CREATE TABLE table_name_77 (year VARCHAR, opponent VARCHAR, player VARCHAR)
###human: What year for geelong player john roberts?
###assistant: SELECT year FROM table_name_77 WHERE opponent = "geelong" AND player = "john roberts" |
###context:CREATE TABLE table_name_7 (authority VARCHAR, roll VARCHAR)
###human: What's the authority when the roll is 40?
###assistant: SELECT authority FROM table_name_7 WHERE roll = 40 |
###context:CREATE TABLE table_name_79 (authority VARCHAR, roll VARCHAR, area VARCHAR)
###human: What's the authority when the roll is less than 234 for the massey east area?
###assistant: SELECT authority FROM table_name_79 WHERE roll < 234 AND area = "massey east" |
###context:CREATE TABLE table_name_66 (roll VARCHAR, decile VARCHAR, name VARCHAR)
###human: What's the roll for summerland primary when decile is over 6?
###assistant: SELECT roll FROM table_name_66 WHERE decile > 6 AND name = "summerland primary" |
###context:CREATE TABLE table_name_22 (name VARCHAR, delivered VARCHAR)
###human: What is the name where the delivered date is 1839/08?
###assistant: SELECT name FROM table_name_22 WHERE delivered = "1839/08" |
###context:CREATE TABLE table_name_80 (original_us_air_date VARCHAR, original_canadian_air_date VARCHAR)
###human: What is the Original U.S. air-date for the Original Canadian air-date of december 9, 2007?
###assistant: SELECT original_us_air_date FROM table_name_80 WHERE original_canadian_air_date = "december 9, 2007" |
###context:CREATE TABLE table_name_98 (original_canadian_air_date VARCHAR, director VARCHAR)
###human: What is the Original Canadian air-date that was directed by Michael Tolkin?
###assistant: SELECT original_canadian_air_date FROM table_name_98 WHERE director = "michael tolkin" |
###context:CREATE TABLE table_name_25 (original_canadian_air_date VARCHAR, director VARCHAR)
###human: What was the Original Canadian air-date for the episode directed by mark rydell?
###assistant: SELECT original_canadian_air_date FROM table_name_25 WHERE director = "mark rydell" |
###context:CREATE TABLE table_name_71 (home_team VARCHAR, venue VARCHAR)
###human: Which home team's venue is junction oval?
###assistant: SELECT home_team FROM table_name_71 WHERE venue = "junction oval" |
###context:CREATE TABLE table_name_56 (venue VARCHAR, away_team VARCHAR)
###human: Which venue was melbourne the away team of?
###assistant: SELECT venue FROM table_name_56 WHERE away_team = "melbourne" |
###context:CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR)
###human: What was the home teams score against the away team footscray?
###assistant: SELECT home_team AS score FROM table_name_39 WHERE away_team = "footscray" |
###context:CREATE TABLE table_name_18 (long INTEGER, player VARCHAR, avg VARCHAR)
###human: What is the average long that Ramon Richardson played and an average greater than 5.5?
###assistant: SELECT AVG(long) FROM table_name_18 WHERE player = "ramon richardson" AND avg > 5.5 |
###context:CREATE TABLE table_name_56 (yards INTEGER, avg INTEGER)
###human: Which has and average less than 3 and the lowest yards?
###assistant: SELECT MIN(yards) FROM table_name_56 WHERE avg < 3 |
###context:CREATE TABLE table_name_2 (rec INTEGER, yards VARCHAR, avg VARCHAR)
###human: What is the average rec that is greater than 10 and has 40 yards?
###assistant: SELECT AVG(rec) FROM table_name_2 WHERE yards = 40 AND avg > 10 |
###context:CREATE TABLE table_name_52 (high_assists VARCHAR, game VARCHAR)
###human: What was the high assists for game 31?
###assistant: SELECT high_assists FROM table_name_52 WHERE game = 31 |
###context:CREATE TABLE table_name_79 (team VARCHAR, game VARCHAR)
###human: What team played in game 39?
###assistant: SELECT team FROM table_name_79 WHERE game = 39 |
###context:CREATE TABLE table_name_30 (location_attendance VARCHAR, game VARCHAR)
###human: How many people attended game 42?
###assistant: SELECT location_attendance FROM table_name_30 WHERE game = 42 |
###context:CREATE TABLE table_name_40 (total INTEGER, sport VARCHAR, bronze VARCHAR)
###human: What is the highest Shooting Total with a Bronze less than 0?
###assistant: SELECT MAX(total) FROM table_name_40 WHERE sport = "shooting" AND bronze < 0 |
###context:CREATE TABLE table_name_77 (silver INTEGER, gold VARCHAR, bronze VARCHAR, sport VARCHAR)
###human: What is the lowest Silver in the Total Sport has less than 1 Gold and more than 1 Bronze?
###assistant: SELECT MIN(silver) FROM table_name_77 WHERE bronze > 1 AND sport = "total" AND gold < 1 |
###context:CREATE TABLE table_name_9 (bronze INTEGER, sport VARCHAR, silver VARCHAR)
###human: What is the football Bronze with more than 1 Silver?
###assistant: SELECT AVG(bronze) FROM table_name_9 WHERE sport = "football" AND silver > 1 |
###context:CREATE TABLE table_name_74 (silver INTEGER, bronze VARCHAR, total VARCHAR, gold VARCHAR)
###human: With 1 Gold, more than 2 Bronze and Total greater than 1, what is the Silver?
###assistant: SELECT AVG(silver) FROM table_name_74 WHERE total > 1 AND gold = 1 AND bronze > 2 |
###context:CREATE TABLE table_name_86 (total INTEGER, gold VARCHAR, silver VARCHAR, sport VARCHAR)
###human: With more than 1 Gold and Silver and Total Sport, what is the Total?
###assistant: SELECT AVG(total) FROM table_name_86 WHERE silver > 1 AND sport = "total" AND gold > 1 |
###context:CREATE TABLE table_name_78 (year VARCHAR, distance_duration VARCHAR, driver VARCHAR)
###human: What year does robin buck go 44 laps?
###assistant: SELECT year FROM table_name_78 WHERE distance_duration = "44 laps" AND driver = "robin buck" |
###context:CREATE TABLE table_name_94 (year VARCHAR, team VARCHAR)
###human: How many years does Team wal-mart / tide participate?
###assistant: SELECT COUNT(year) FROM table_name_94 WHERE team = "wal-mart / tide" |
###context:CREATE TABLE table_name_65 (score VARCHAR, result VARCHAR)
###human: Which score has a Result of 11–0?
###assistant: SELECT score FROM table_name_65 WHERE result = "11–0" |
###context:CREATE TABLE table_name_23 (result VARCHAR, score VARCHAR)
###human: Which result has a Score of 1–1?
###assistant: SELECT result FROM table_name_23 WHERE score = "1–1" |
###context:CREATE TABLE table_name_73 (score VARCHAR, result VARCHAR)
###human: Which score has a Result of 11–0?
###assistant: SELECT score FROM table_name_73 WHERE result = "11–0" |
###context:CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR)
###human: What is the score of the game with an 11-32-11 record?
###assistant: SELECT score FROM table_name_40 WHERE record = "11-32-11" |
###context:CREATE TABLE table_name_33 (home VARCHAR, visitor VARCHAR, record VARCHAR)
###human: What is the home team of the game where New Jersey was the visitor team and the record was 11-35-12?
###assistant: SELECT home FROM table_name_33 WHERE visitor = "new jersey" AND record = "11-35-12" |
###context:CREATE TABLE table_name_74 (visitor VARCHAR, home VARCHAR)
###human: What is the visitor team of the game with Chicago as the home team?
###assistant: SELECT visitor FROM table_name_74 WHERE home = "chicago" |
###context:CREATE TABLE table_name_25 (score VARCHAR, visitor VARCHAR, date VARCHAR)
###human: What is the score of the game on February 27 with New Jersey as the visitor team?
###assistant: SELECT score FROM table_name_25 WHERE visitor = "new jersey" AND date = "february 27" |
###context:CREATE TABLE table_name_72 (home VARCHAR, date VARCHAR)
###human: What is the home team of the game on February 3?
###assistant: SELECT home FROM table_name_72 WHERE date = "february 3" |
###context:CREATE TABLE table_name_29 (visitor VARCHAR, home VARCHAR)
###human: Who is the visitor team of the game where Buffalo was the home team?
###assistant: SELECT visitor FROM table_name_29 WHERE home = "buffalo" |
###context:CREATE TABLE table_name_98 (driver VARCHAR, grid VARCHAR)
###human: What driver has grid number 18?
###assistant: SELECT driver FROM table_name_98 WHERE grid = 18 |
###context:CREATE TABLE table_name_72 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)
###human: What is the time or retired time for timo glock with under 70 laps and a grid number greater than 15?
###assistant: SELECT time_retired FROM table_name_72 WHERE laps < 70 AND grid > 15 AND driver = "timo glock" |
###context:CREATE TABLE table_name_68 (area_in_km² INTEGER, original_name VARCHAR, number_of_settlements_and_villages VARCHAR)
###human: Kecamatan Bogor Timur has more than 6 villages, what is the area in km²?
###assistant: SELECT SUM(area_in_km²) FROM table_name_68 WHERE original_name = "kecamatan bogor timur" AND number_of_settlements_and_villages > 6 |
###context:CREATE TABLE table_name_78 (area_in_km² INTEGER, original_name VARCHAR, number_of_settlements_and_villages VARCHAR)
###human: There are less than 11 settlements in Kecamatan Bogor Tengah, what is the area in km²?
###assistant: SELECT SUM(area_in_km²) FROM table_name_78 WHERE original_name = "kecamatan bogor tengah" AND number_of_settlements_and_villages < 11 |
###context:CREATE TABLE table_name_9 (gold INTEGER, nation VARCHAR)
###human: Luxembourg received how many gold medals?
###assistant: SELECT AVG(gold) FROM table_name_9 WHERE nation = "luxembourg" |
###context:CREATE TABLE table_name_73 (tonnage INTEGER, type_of_ship VARCHAR, date_entered_service VARCHAR)
###human: what is the sum of tonnage when the type of ship is twin screw ro-ro motorship and the date entered service is 11 february 1983?
###assistant: SELECT SUM(tonnage) FROM table_name_73 WHERE type_of_ship = "twin screw ro-ro motorship" AND date_entered_service = "11 february 1983" |
###context:CREATE TABLE table_name_21 (tonnage INTEGER, date_entered_service VARCHAR)
###human: what is the least tonnage for the ship(s) that entered service on 11 february 1983?
###assistant: SELECT MIN(tonnage) FROM table_name_21 WHERE date_entered_service = "11 february 1983" |
###context:CREATE TABLE table_name_17 (gold INTEGER, silver VARCHAR, total VARCHAR)
###human: What's the sum of gold where silver is more than 2 and the total is 12?
###assistant: SELECT SUM(gold) FROM table_name_17 WHERE silver > 2 AND total = 12 |
###context:CREATE TABLE table_name_16 (gold INTEGER, silver VARCHAR, total VARCHAR, nation VARCHAR)
###human: What's the lowest gold with a total of 4 and less than 2 silver for liechtenstein?
###assistant: SELECT MIN(gold) FROM table_name_16 WHERE total = 4 AND nation = "liechtenstein" AND silver < 2 |
###context:CREATE TABLE table_name_96 (gold VARCHAR, total VARCHAR, rank VARCHAR)
###human: What's the total number of gold where the total is less than 23 and the rank is over 10?
###assistant: SELECT COUNT(gold) FROM table_name_96 WHERE total < 23 AND rank > 10 |
###context:CREATE TABLE table_name_58 (total VARCHAR, rank VARCHAR, gold VARCHAR)
###human: What's the sum of total where the rank is over 9 and the gold is less than 1?
###assistant: SELECT COUNT(total) FROM table_name_58 WHERE rank > 9 AND gold < 1 |
###context:CREATE TABLE table_name_69 (location_attendance INTEGER, team VARCHAR)
###human: What was the attendance number for the Timberwolves game?
###assistant: SELECT SUM(location_attendance) FROM table_name_69 WHERE team = "timberwolves" |
###context:CREATE TABLE table_name_91 (crowd VARCHAR, home_team VARCHAR)
###human: What is the combined of Crowd when richmond played at home?
###assistant: SELECT COUNT(crowd) FROM table_name_91 WHERE home_team = "richmond" |
###context:CREATE TABLE table_name_74 (opponent VARCHAR, result VARCHAR)
###human: What opponent has a result of 3–6, 6–2, 4–6?
###assistant: SELECT opponent FROM table_name_74 WHERE result = "3–6, 6–2, 4–6" |
###context:CREATE TABLE table_name_2 (date VARCHAR, edition VARCHAR, opponent VARCHAR)
###human: When was the 1991 world group I with the opponent of Li Fang?
###assistant: SELECT date FROM table_name_2 WHERE edition = "1991 world group i" AND opponent = "li fang" |
###context:CREATE TABLE table_name_15 (surface VARCHAR, date VARCHAR)
###human: On July 15, 1984 what surface was used?
###assistant: SELECT surface FROM table_name_15 WHERE date = "july 15, 1984" |
###context:CREATE TABLE table_name_95 (round VARCHAR, opponent VARCHAR, result VARCHAR)
###human: For what round was the opponent mercedes paz with a result of 4–6, 6–1, 6–3?
###assistant: SELECT round FROM table_name_95 WHERE opponent = "mercedes paz" AND result = "4–6, 6–1, 6–3" |
###context:CREATE TABLE table_name_30 (surface VARCHAR, date VARCHAR)
###human: What surface was used on July 17, 1983?
###assistant: SELECT surface FROM table_name_30 WHERE date = "july 17, 1983" |
###context:CREATE TABLE table_name_58 (result VARCHAR, date VARCHAR)
###human: What was the result on October 8, 1985?
###assistant: SELECT result FROM table_name_58 WHERE date = "october 8, 1985" |
###context:CREATE TABLE table_name_28 (pick__number INTEGER, pl_gp INTEGER)
###human: Name the highest pick number for PI GP more than 55
###assistant: SELECT MAX(pick__number) FROM table_name_28 WHERE pl_gp > 55 |
###context:CREATE TABLE table_name_13 (rd__number INTEGER, pl_gp VARCHAR, pick__number VARCHAR)
###human: Name the least RD number that has PI GP more than 0 and pick # more than 51
###assistant: SELECT MIN(rd__number) FROM table_name_13 WHERE pl_gp > 0 AND pick__number > 51 |
###context:CREATE TABLE table_name_34 (date VARCHAR, away_team VARCHAR)
###human: What day did Footscray play as the away team?
###assistant: SELECT date FROM table_name_34 WHERE away_team = "footscray" |
###context:CREATE TABLE table_name_40 (away_team VARCHAR, home_team VARCHAR)
###human: What was Hawthorn's away teams opponents score?
###assistant: SELECT away_team AS score FROM table_name_40 WHERE home_team = "hawthorn" |
###context:CREATE TABLE table_name_83 (attendance INTEGER, date VARCHAR)
###human: What was the attendance of april 17?
###assistant: SELECT SUM(attendance) FROM table_name_83 WHERE date = "april 17" |
###context:CREATE TABLE table_name_98 (loss VARCHAR, record VARCHAR)
###human: What was the loss of the Mariners game when they had a record of 21-34?
###assistant: SELECT loss FROM table_name_98 WHERE record = "21-34" |
###context:CREATE TABLE table_name_30 (opponent VARCHAR, record VARCHAR)
###human: Who did the Mariners play when they had a record of 33-45?
###assistant: SELECT opponent FROM table_name_30 WHERE record = "33-45" |
###context:CREATE TABLE table_name_96 (loss VARCHAR, record VARCHAR)
###human: What was the loss of the Mariners game when they had a record of 22-35?
###assistant: SELECT loss FROM table_name_96 WHERE record = "22-35" |
###context:CREATE TABLE table_name_65 (record VARCHAR, attendance VARCHAR)
###human: What was the record for the game attended by 35,614 spectators?
###assistant: SELECT record FROM table_name_65 WHERE attendance = "35,614" |
###context:CREATE TABLE table_name_5 (record VARCHAR, date VARCHAR)
###human: What is the record for April 8?
###assistant: SELECT record FROM table_name_5 WHERE date = "april 8" |
###context:CREATE TABLE table_name_53 (attendance VARCHAR, record VARCHAR)
###human: What was the attendance for the game that has a record of 1-1?
###assistant: SELECT attendance FROM table_name_53 WHERE record = "1-1" |
###context:CREATE TABLE table_name_79 (record VARCHAR, attendance VARCHAR)
###human: What is the record for the game with an attendance of 35,305?
###assistant: SELECT record FROM table_name_79 WHERE attendance = "35,305" |
###context:CREATE TABLE table_name_39 (grid INTEGER, driver VARCHAR, laps VARCHAR)
###human: what is the grid when the driver is louis rosier and the laps is more than 78?
###assistant: SELECT MIN(grid) FROM table_name_39 WHERE driver = "louis rosier" AND laps > 78 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.