text
stringlengths 114
1.06k
|
---|
### question: When Richmond was the Home team, who was the away team? ### answer: SELECT away_team FROM table_name_97 WHERE home_team = "richmond" ### context: CREATE TABLE table_name_97 (away_team VARCHAR, home_team VARCHAR) |
### question: Which home team plays in the Corio Oval venue? ### answer: SELECT home_team FROM table_name_29 WHERE venue = "corio oval" ### context: CREATE TABLE table_name_29 (home_team VARCHAR, venue VARCHAR) |
### question: When the game was played at the EMCG venue, who was the away team? ### answer: SELECT away_team FROM table_name_60 WHERE venue = "emcg" ### context: CREATE TABLE table_name_60 (away_team VARCHAR, venue VARCHAR) |
### question: who is the constructor when the driver is jenson button? ### answer: SELECT constructor FROM table_name_55 WHERE driver = "jenson button" ### context: CREATE TABLE table_name_55 (constructor VARCHAR, driver VARCHAR) |
### question: what is the grid when the time/retired is +27.112? ### answer: SELECT grid FROM table_name_79 WHERE time_retired = "+27.112" ### context: CREATE TABLE table_name_79 (grid VARCHAR, time_retired VARCHAR) |
### question: I want the fewest Laps for Huub Rothengatter and grid less than 24 ### answer: SELECT MIN(laps) FROM table_name_88 WHERE driver = "huub rothengatter" AND grid < 24 ### context: CREATE TABLE table_name_88 (laps INTEGER, driver VARCHAR, grid VARCHAR) |
### question: Tell me the time/retired with Laps of 47 and driver of rené arnoux ### answer: SELECT time_retired FROM table_name_47 WHERE laps = 47 AND driver = "rené arnoux" ### context: CREATE TABLE table_name_47 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR) |
### question: Which Oricon has a Romaji title of nakitakunalu? ### answer: SELECT MAX(oricon) FROM table_name_17 WHERE romaji_title = "nakitakunalu" ### context: CREATE TABLE table_name_17 (oricon INTEGER, romaji_title VARCHAR) |
### question: Which Reference has a Release date of 1996/10/10? ### answer: SELECT reference FROM table_name_92 WHERE release_date = "1996/10/10" ### context: CREATE TABLE table_name_92 (reference VARCHAR, release_date VARCHAR) |
### question: What is the occupation of the candidate that resides in Windsor Junction? ### answer: SELECT occupation FROM table_name_38 WHERE residence = "windsor junction" ### context: CREATE TABLE table_name_38 (occupation VARCHAR, residence VARCHAR) |
### question: How many votes did 3rd ranking candidate Mary Louise Lorefice receive? ### answer: SELECT COUNT(votes) FROM table_name_48 WHERE rank = "3rd" AND candidate = "mary louise lorefice" ### context: CREATE TABLE table_name_48 (votes VARCHAR, rank VARCHAR, candidate VARCHAR) |
### question: What occupation does Mary Louise Lorefice have? ### answer: SELECT occupation FROM table_name_35 WHERE candidate = "mary louise lorefice" ### context: CREATE TABLE table_name_35 (occupation VARCHAR, candidate VARCHAR) |
### question: When was the game at Essendon? ### answer: SELECT date FROM table_name_83 WHERE away_team = "essendon" ### context: CREATE TABLE table_name_83 (date VARCHAR, away_team VARCHAR) |
### question: Who is the constructor with the grid of 8? ### answer: SELECT constructor FROM table_name_25 WHERE grid = 8 ### context: CREATE TABLE table_name_25 (constructor VARCHAR, grid VARCHAR) |
### question: what is the time/retired when the grid is less than 3 and 45 laps? ### answer: SELECT time_retired FROM table_name_95 WHERE grid < 3 AND laps = 45 ### context: CREATE TABLE table_name_95 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR) |
### question: what is the most laps for driver jackie stewart? ### answer: SELECT MAX(laps) FROM table_name_43 WHERE driver = "jackie stewart" ### context: CREATE TABLE table_name_43 (laps INTEGER, driver VARCHAR) |
### question: what is the time/retired for driver richard attwood? ### answer: SELECT time_retired FROM table_name_56 WHERE driver = "richard attwood" ### context: CREATE TABLE table_name_56 (time_retired VARCHAR, driver VARCHAR) |
### question: Tell me the D 41 and R 51 of r 11 ### answer: SELECT d_41 FROM table_name_33 WHERE r_51 = "r 11" ### context: CREATE TABLE table_name_33 (d_41 VARCHAR, r_51 VARCHAR) |
### question: I want the D 46 which has a D 44 of r 17 ### answer: SELECT d_46 FROM table_name_35 WHERE d_44 = "r 17" ### context: CREATE TABLE table_name_35 (d_46 VARCHAR, d_44 VARCHAR) |
### question: Tell me the D 41 for D 43 of d 18 ### answer: SELECT d_41 FROM table_name_63 WHERE d_43 = "d 18" ### context: CREATE TABLE table_name_63 (d_41 VARCHAR, d_43 VARCHAR) |
### question: Tell me the D 47 for D 46 of r 35 ### answer: SELECT d_47 FROM table_name_44 WHERE d_46 = "r 35" ### context: CREATE TABLE table_name_44 (d_47 VARCHAR, d_46 VARCHAR) |
### question: I want the D 42 with R 51 of r 11 ### answer: SELECT d_42 FROM table_name_41 WHERE r_51 = "r 11" ### context: CREATE TABLE table_name_41 (d_42 VARCHAR, r_51 VARCHAR) |
### question: I want the R 53 of D 41 of r 21 ### answer: SELECT r_53 FROM table_name_95 WHERE d_41 = "r 21" ### context: CREATE TABLE table_name_95 (r_53 VARCHAR, d_41 VARCHAR) |
### question: What is the low silver total for switzerland with over 0 golds? ### answer: SELECT MIN(silver) FROM table_name_30 WHERE gold > 0 AND nation = "switzerland" ### context: CREATE TABLE table_name_30 (silver INTEGER, gold VARCHAR, nation VARCHAR) |
### question: What is the silver total for nations with 10 bronze medals? ### answer: SELECT SUM(silver) FROM table_name_93 WHERE bronze = 10 ### context: CREATE TABLE table_name_93 (silver INTEGER, bronze VARCHAR) |
### question: What is the gold total for lithuania with under 2 silvers? ### answer: SELECT SUM(gold) FROM table_name_5 WHERE nation = "lithuania" AND silver < 2 ### context: CREATE TABLE table_name_5 (gold INTEGER, nation VARCHAR, silver VARCHAR) |
### question: What was the score for the home team that played at Moorabbin Oval? ### answer: SELECT home_team AS score FROM table_name_68 WHERE venue = "moorabbin oval" ### context: CREATE TABLE table_name_68 (home_team VARCHAR, venue VARCHAR) |
### question: Name the size of the screen that came out in 2006 and is iliad ### answer: SELECT screen_size__inch_ FROM table_name_73 WHERE intro_year = "2006" AND model = "iliad" ### context: CREATE TABLE table_name_73 (screen_size__inch_ VARCHAR, intro_year VARCHAR, model VARCHAR) |
### question: Which Report includes the Belgian Grand Prix Race? ### answer: SELECT report FROM table_name_25 WHERE race = "belgian grand prix" ### context: CREATE TABLE table_name_25 (report VARCHAR, race VARCHAR) |
### question: Which Report includes Monaco? ### answer: SELECT report FROM table_name_95 WHERE location = "monaco" ### context: CREATE TABLE table_name_95 (report VARCHAR, location VARCHAR) |
### question: On what date did Gunnar Nilsson make the fastest lap? ### answer: SELECT date FROM table_name_38 WHERE fastest_lap = "gunnar nilsson" ### context: CREATE TABLE table_name_38 (date VARCHAR, fastest_lap VARCHAR) |
### question: Who had the fastest lap for the German Grand Prix? ### answer: SELECT fastest_lap FROM table_name_71 WHERE race = "german grand prix" ### context: CREATE TABLE table_name_71 (fastest_lap VARCHAR, race VARCHAR) |
### question: What is the format for the album under the label, luaka bop, that had a catalog number of 3645 and dated after 1981? ### answer: SELECT format FROM table_name_15 WHERE catalog = "3645" AND date > 1981 AND label = "luaka bop" ### context: CREATE TABLE table_name_15 (format VARCHAR, label VARCHAR, catalog VARCHAR, date VARCHAR) |
### question: what is the earliest date for the album that had a catalog number of 3645, was formatted as a cd and was under the luaka bop label? ### answer: SELECT MIN(date) FROM table_name_2 WHERE catalog = "3645" AND format = "cd" AND label = "luaka bop" ### context: CREATE TABLE table_name_2 (date INTEGER, label VARCHAR, catalog VARCHAR, format VARCHAR) |
### question: Under what label was the album with the catalog of 3645 and came out later than 1987? ### answer: SELECT label FROM table_name_42 WHERE catalog = "3645" AND date > 1987 ### context: CREATE TABLE table_name_42 (label VARCHAR, catalog VARCHAR, date VARCHAR) |
### question: What is the points where Toronto was the home team and the game number was larger than 63? ### answer: SELECT MAX(points) FROM table_name_59 WHERE home = "toronto" AND game__number > 63 ### context: CREATE TABLE table_name_59 (points INTEGER, home VARCHAR, game__number VARCHAR) |
### question: How many laps did mike spence complete grids above 12? ### answer: SELECT COUNT(laps) FROM table_name_85 WHERE driver = "mike spence" AND grid > 12 ### context: CREATE TABLE table_name_85 (laps VARCHAR, driver VARCHAR, grid VARCHAR) |
### question: How many average laps did brm complete in grids larger than 12? ### answer: SELECT AVG(laps) FROM table_name_70 WHERE constructor = "brm" AND grid = 12 ### context: CREATE TABLE table_name_70 (laps INTEGER, constructor VARCHAR, grid VARCHAR) |
### question: Who drove in grids more than 3 and exited in an accident? ### answer: SELECT driver FROM table_name_17 WHERE grid > 3 AND time_retired = "accident" ### context: CREATE TABLE table_name_17 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR) |
### question: In what grid did jim clark drive in? ### answer: SELECT grid FROM table_name_21 WHERE driver = "jim clark" ### context: CREATE TABLE table_name_21 (grid VARCHAR, driver VARCHAR) |
### question: Which opponent has a date 21 jul 2007? ### answer: SELECT opponent FROM table_name_3 WHERE date = "21 jul 2007" ### context: CREATE TABLE table_name_3 (opponent VARCHAR, date VARCHAR) |
### question: What was the venue of the Melbourne team? ### answer: SELECT venue FROM table_name_91 WHERE home_team = "melbourne" ### context: CREATE TABLE table_name_91 (venue VARCHAR, home_team VARCHAR) |
### question: What was the race that featured stirling moss winning with a maserati at aintree? ### answer: SELECT race_name FROM table_name_45 WHERE constructor = "maserati" AND circuit = "aintree" AND winning_driver = "stirling moss" ### context: CREATE TABLE table_name_45 (race_name VARCHAR, winning_driver VARCHAR, constructor VARCHAR, circuit VARCHAR) |
### question: What does the Circuit of caen report? ### answer: SELECT report FROM table_name_98 WHERE circuit = "caen" ### context: CREATE TABLE table_name_98 (report VARCHAR, circuit VARCHAR) |
### question: Who is the winning drive of iv grand prix de caen? ### answer: SELECT winning_driver FROM table_name_51 WHERE race_name = "iv grand prix de caen" ### context: CREATE TABLE table_name_51 (winning_driver VARCHAR, race_name VARCHAR) |
### question: What types of ships were made at the Froemming Brothers ship yard? ### answer: SELECT ship_types_delivered FROM table_name_32 WHERE yard_name = "froemming brothers" ### context: CREATE TABLE table_name_32 (ship_types_delivered VARCHAR, yard_name VARCHAR) |
### question: What is the amount of apperances of the person who had 36 goals? ### answer: SELECT appearances FROM table_name_5 WHERE goals = 36 ### context: CREATE TABLE table_name_5 (appearances VARCHAR, goals VARCHAR) |
### question: Tell me the name with points of 151.66 ### answer: SELECT name FROM table_name_7 WHERE points = 151.66 ### context: CREATE TABLE table_name_7 (name VARCHAR, points VARCHAR) |
### question: Tell me the total number of rank for places less than 94 and points less than 169.8 for japan ### answer: SELECT COUNT(rank) FROM table_name_98 WHERE places < 94 AND points < 169.8 AND nation = "japan" ### context: CREATE TABLE table_name_98 (rank VARCHAR, nation VARCHAR, places VARCHAR, points VARCHAR) |
### question: Tell me the total number of SP+FS with rank more than 8 for the netherlands and points more than 127.26 ### answer: SELECT COUNT(sp) + fs FROM table_name_75 WHERE rank > 8 AND nation = "netherlands" AND points > 127.26 ### context: CREATE TABLE table_name_75 (fs VARCHAR, sp VARCHAR, points VARCHAR, rank VARCHAR, nation VARCHAR) |
### question: Name the total number of SP+FS for places of 60 and points more than 151.66 ### answer: SELECT COUNT(sp) + fs FROM table_name_28 WHERE places = 60 AND points > 151.66 ### context: CREATE TABLE table_name_28 (fs VARCHAR, sp VARCHAR, places VARCHAR, points VARCHAR) |
### question: Name the average SP+FS with places less tha 94 for renata baierova ### answer: SELECT AVG(sp) + fs FROM table_name_2 WHERE places < 94 AND name = "renata baierova" ### context: CREATE TABLE table_name_2 (fs VARCHAR, sp INTEGER, places VARCHAR, name VARCHAR) |
### question: What color is model # pd-kb400w? ### answer: SELECT color FROM table_name_14 WHERE model__number = "pd-kb400w" ### context: CREATE TABLE table_name_14 (color VARCHAR, model__number VARCHAR) |
### question: What's the lowest average for a swimsuit over 6.89, evening gown over 7.76, and an interview over 8.57 in illinois? ### answer: SELECT MIN(average) FROM table_name_29 WHERE swimsuit > 6.89 AND evening_gown > 7.76 AND state = "illinois" AND interview > 8.57 ### context: CREATE TABLE table_name_29 (average INTEGER, interview VARCHAR, state VARCHAR, swimsuit VARCHAR, evening_gown VARCHAR) |
### question: What's the highest swimsuit for an average less than 8.073, evening gown less than 8.31, and an interview over 8.23 in georgia? ### answer: SELECT MAX(swimsuit) FROM table_name_13 WHERE average < 8.073 AND evening_gown < 8.31 AND interview > 8.23 AND state = "georgia" ### context: CREATE TABLE table_name_13 (swimsuit INTEGER, state VARCHAR, interview VARCHAR, average VARCHAR, evening_gown VARCHAR) |
### question: What's utah's lowest swimsuit with an interview over 8.53? ### answer: SELECT MIN(swimsuit) FROM table_name_43 WHERE state = "utah" AND interview > 8.53 ### context: CREATE TABLE table_name_43 (swimsuit INTEGER, state VARCHAR, interview VARCHAR) |
### question: What week was October 9, 1938? ### answer: SELECT COUNT(week) FROM table_name_66 WHERE date = "october 9, 1938" ### context: CREATE TABLE table_name_66 (week VARCHAR, date VARCHAR) |
### question: What home team played Collingwood as the away team? ### answer: SELECT home_team FROM table_name_42 WHERE away_team = "collingwood" ### context: CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR) |
### question: What was the score of the away team at Junction Oval? ### answer: SELECT away_team AS score FROM table_name_77 WHERE venue = "junction oval" ### context: CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR) |
### question: Who built giancarlo fisichella's car? ### answer: SELECT constructor FROM table_name_96 WHERE driver = "giancarlo fisichella" ### context: CREATE TABLE table_name_96 (constructor VARCHAR, driver VARCHAR) |
### question: What is the high lap total for mika salo with a grid greater than 17? ### answer: SELECT MAX(laps) FROM table_name_66 WHERE driver = "mika salo" AND grid > 17 ### context: CREATE TABLE table_name_66 (laps INTEGER, driver VARCHAR, grid VARCHAR) |
### question: Where was the location with Muirfield in Scotland? ### answer: SELECT location FROM table_name_4 WHERE country = "scotland" AND name = "muirfield" ### context: CREATE TABLE table_name_4 (location VARCHAR, country VARCHAR, name VARCHAR) |
### question: Name the country for pieroni ### answer: SELECT country FROM table_name_46 WHERE name = "pieroni" ### context: CREATE TABLE table_name_46 (country VARCHAR, name VARCHAR) |
### question: Name the country for 6-month loan and moving from of lens ### answer: SELECT country FROM table_name_90 WHERE type = "6-month loan" AND moving_from = "lens" ### context: CREATE TABLE table_name_90 (country VARCHAR, type VARCHAR, moving_from VARCHAR) |
### question: Name the transfer fee with a transfer window of summer for schollen ### answer: SELECT transfer_fee FROM table_name_88 WHERE transfer_window = "summer" AND name = "schollen" ### context: CREATE TABLE table_name_88 (transfer_fee VARCHAR, transfer_window VARCHAR, name VARCHAR) |
### question: Name the name that has moving of 1. fc nürnberg. ### answer: SELECT name FROM table_name_9 WHERE moving_from = "1. fc nürnberg" ### context: CREATE TABLE table_name_9 (name VARCHAR, moving_from VARCHAR) |
### question: Name the country with polák ### answer: SELECT country FROM table_name_4 WHERE name = "polák" ### context: CREATE TABLE table_name_4 (country VARCHAR, name VARCHAR) |
### question: What was the home team score at North Melbourne's away game? ### answer: SELECT home_team AS score FROM table_name_11 WHERE away_team = "north melbourne" ### context: CREATE TABLE table_name_11 (home_team VARCHAR, away_team VARCHAR) |
### question: What was Collingwood's score at the home match against Richmond? ### answer: SELECT home_team AS score FROM table_name_47 WHERE away_team = "richmond" ### context: CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR) |
### question: What is the lowest number of laps with a grid larger than 24? ### answer: SELECT MIN(laps) FROM table_name_14 WHERE grid > 24 ### context: CREATE TABLE table_name_14 (laps INTEGER, grid INTEGER) |
### question: For Jo Siffert, what was the highest grid with the number of laps above 12? ### answer: SELECT MAX(grid) FROM table_name_5 WHERE driver = "jo siffert" AND laps > 12 ### context: CREATE TABLE table_name_5 (grid INTEGER, driver VARCHAR, laps VARCHAR) |
### question: What is the average number of laps when Gerhard Berger is the driver? ### answer: SELECT AVG(laps) FROM table_name_23 WHERE driver = "gerhard berger" ### context: CREATE TABLE table_name_23 (laps INTEGER, driver VARCHAR) |
### question: What is the name of the constructor who has more than 50 laps and a grid of 7? ### answer: SELECT constructor FROM table_name_9 WHERE laps > 50 AND grid = 7 ### context: CREATE TABLE table_name_9 (constructor VARCHAR, laps VARCHAR, grid VARCHAR) |
### question: What is the title of the episode with a production code of ad1b04? ### answer: SELECT title FROM table_name_50 WHERE production_code = "ad1b04" ### context: CREATE TABLE table_name_50 (title VARCHAR, production_code VARCHAR) |
### question: Name the time for event of tfc 21 ### answer: SELECT time FROM table_name_22 WHERE event = "tfc 21" ### context: CREATE TABLE table_name_22 (time VARCHAR, event VARCHAR) |
### question: What sport has a Gold larger than 0, and a Silver of 2? ### answer: SELECT sport FROM table_name_7 WHERE gold > 0 AND silver = 2 ### context: CREATE TABLE table_name_7 (sport VARCHAR, gold VARCHAR, silver VARCHAR) |
### question: What is the lowest Bronze that has a Total larger than 18 and a Silver smaller than 143? ### answer: SELECT MIN(bronze) FROM table_name_29 WHERE "total" > 18 AND sport = "total" AND silver < 143 ### context: CREATE TABLE table_name_29 (bronze INTEGER, silver VARCHAR, sport VARCHAR) |
### question: How many total Silver has a Bronze larger than 19 and a Total smaller than 125? ### answer: SELECT SUM(silver) FROM table_name_13 WHERE bronze > 19 AND total < 125 ### context: CREATE TABLE table_name_13 (silver INTEGER, bronze VARCHAR, total VARCHAR) |
### question: What is the highest total Bronze larger than 10, Silver larger than 28, and a Gold of 58? ### answer: SELECT MAX(total) FROM table_name_7 WHERE bronze > 10 AND silver > 28 AND gold = 58 ### context: CREATE TABLE table_name_7 (total INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR) |
### question: What is the lowest Total that has a Gold larger than 0, Silver smaller than 4, Sport of football, and a Bronze larger than 1? ### answer: SELECT MIN(total) FROM table_name_97 WHERE gold > 0 AND silver < 4 AND sport = "football" AND bronze > 1 ### context: CREATE TABLE table_name_97 (total INTEGER, bronze VARCHAR, sport VARCHAR, gold VARCHAR, silver VARCHAR) |
### question: what is the time/retired when the grid is 9? ### answer: SELECT time_retired FROM table_name_77 WHERE grid = 9 ### context: CREATE TABLE table_name_77 (time_retired VARCHAR, grid VARCHAR) |
### question: what is the number of laps when the driver is ron flockhart? ### answer: SELECT COUNT(laps) FROM table_name_5 WHERE driver = "ron flockhart" ### context: CREATE TABLE table_name_5 (laps VARCHAR, driver VARCHAR) |
### question: What Engine has a Power of 114hp (85kw)? ### answer: SELECT engine FROM table_name_72 WHERE power = "114hp (85kw)" ### context: CREATE TABLE table_name_72 (engine VARCHAR, power VARCHAR) |
### question: What Torque has an AMC Power Tech I6 Engine? ### answer: SELECT torque FROM table_name_68 WHERE engine = "amc power tech i6" ### context: CREATE TABLE table_name_68 (torque VARCHAR, engine VARCHAR) |
### question: What Displacement has 185hp (138kw) Power o ### answer: SELECT displacement FROM table_name_57 WHERE power = "185hp (138kw)" ### context: CREATE TABLE table_name_57 (displacement VARCHAR, power VARCHAR) |
### question: What venue features collingwood as the home side? ### answer: SELECT venue FROM table_name_47 WHERE home_team = "collingwood" ### context: CREATE TABLE table_name_47 (venue VARCHAR, home_team VARCHAR) |
### question: What's the attendance numbers for veterans stadium? ### answer: SELECT attendance FROM table_name_17 WHERE game_site = "veterans stadium" ### context: CREATE TABLE table_name_17 (attendance VARCHAR, game_site VARCHAR) |
### question: What is the name of the school that has a player named Michael Dunigan? ### answer: SELECT school FROM table_name_79 WHERE player = "michael dunigan" ### context: CREATE TABLE table_name_79 (school VARCHAR, player VARCHAR) |
### question: Name the religion for Former Experience of commissioner of health and assumed office before 2005 ### answer: SELECT religion FROM table_name_73 WHERE assumed_office < 2005 AND former_experience = "commissioner of health" ### context: CREATE TABLE table_name_73 (religion VARCHAR, assumed_office VARCHAR, former_experience VARCHAR) |
### question: Tell me the loewst assume office for madeleine bordallo ### answer: SELECT MIN(assumed_office) FROM table_name_60 WHERE name = "madeleine bordallo" ### context: CREATE TABLE table_name_60 (assumed_office INTEGER, name VARCHAR) |
### question: Which team had a game of 82? ### answer: SELECT team FROM table_name_60 WHERE game = 82 ### context: CREATE TABLE table_name_60 (team VARCHAR, game VARCHAR) |
### question: How many people attended the game at Junction Oval? ### answer: SELECT crowd FROM table_name_77 WHERE venue = "junction oval" ### context: CREATE TABLE table_name_77 (crowd VARCHAR, venue VARCHAR) |
### question: What was the score for Boston's Home game that had Gerber as the decision? ### answer: SELECT score FROM table_name_34 WHERE decision = "gerber" AND home = "boston" ### context: CREATE TABLE table_name_34 (score VARCHAR, decision VARCHAR, home VARCHAR) |
### question: What was the record for the game on March 25? ### answer: SELECT record FROM table_name_27 WHERE date = "march 25" ### context: CREATE TABLE table_name_27 (record VARCHAR, date VARCHAR) |
### question: Who was the Decision at Anaheim's home game? ### answer: SELECT decision FROM table_name_51 WHERE home = "anaheim" ### context: CREATE TABLE table_name_51 (decision VARCHAR, home VARCHAR) |
### question: Who is the driver of the chassis that is tg183b tg184? ### answer: SELECT driver FROM table_name_79 WHERE chassis = "tg183b tg184" ### context: CREATE TABLE table_name_79 (driver VARCHAR, chassis VARCHAR) |
### question: What was the engine belonging to Pierluigi Martini with a Tyre of P? ### answer: SELECT engine FROM table_name_20 WHERE tyres = "p" AND driver = "pierluigi martini" ### context: CREATE TABLE table_name_20 (engine VARCHAR, tyres VARCHAR, driver VARCHAR) |
### question: What was the featured in Engine through rounds 10-13? ### answer: SELECT engine FROM table_name_85 WHERE rounds = "10-13" ### context: CREATE TABLE table_name_85 (engine VARCHAR, rounds VARCHAR) |
### question: Nigel Mansell was the driver in what Entrant? ### answer: SELECT entrant FROM table_name_22 WHERE driver = "nigel mansell" ### context: CREATE TABLE table_name_22 (entrant VARCHAR, driver VARCHAR) |
### question: What Date does the Name (location) Belyanitsky, Ivanovo, and Balino have? ### answer: SELECT date FROM table_name_28 WHERE name__location_ = "belyanitsky, ivanovo, and balino" ### context: CREATE TABLE table_name_28 (date VARCHAR, name__location_ VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.