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