text stringlengths 114 1.06k |
|---|
### question: Which league has 12 goals? ### answer: SELECT league FROM table_name_66 WHERE goals = 12 ### context: CREATE TABLE table_name_66 (league VARCHAR, goals VARCHAR) |
### question: Which league has less than 15 apps and 0 goals with sparta prague? ### answer: SELECT league FROM table_name_41 WHERE apps < 15 AND goals = 0 AND club = "sparta prague" ### context: CREATE TABLE table_name_41 (league VARCHAR, club VARCHAR, apps VARCHAR, goals VARCHAR) |
### question: How many runners up for the team that won in 1993? ### answer: SELECT MIN(runners_up) FROM table_name_66 WHERE years_won = "1993" ### context: CREATE TABLE table_name_66 (runners_up INTEGER, years_won VARCHAR) |
### question: How many runners up for the team with under 1 win and a Years runner-up of 1985 , 1996? ### answer: SELECT runners_up FROM table_name_9 WHERE winners < 1 AND years_runner_up = "1985 , 1996" ### context: CREATE TABLE table_name_9 (runners_up VARCHAR, winners VARCHAR, years_runner_up VARCHAR) |
### question: On what circuit was the iii Reims Grand Prix held? ### answer: SELECT circuit FROM table_name_43 WHERE race_name = "iii reims grand prix" ### context: CREATE TABLE table_name_43 (circuit VARCHAR, race_name VARCHAR) |
### question: On what circuit was the i mexican grand prix held? ### answer: SELECT circuit FROM table_name_5 WHERE race_name = "i mexican grand prix" ### context: CREATE TABLE table_name_5 (circuit VARCHAR, race_name VARCHAR) |
### question: What is the largest start for a player with 14 conv, 10 tries and more than 22 pens? ### answer: SELECT MAX(start) FROM table_name_29 WHERE conv = 14 AND tries = 10 AND pens > 22 ### context: CREATE TABLE table_name_29 (start INTEGER, pens VARCHAR, conv VARCHAR, tries VARCHAR) |
### question: What is the total of tries for a player with conv smaller than 45, 19 starts and pens fewer than 22? ### answer: SELECT COUNT(tries) FROM table_name_83 WHERE conv < 45 AND start = 19 AND pens < 22 ### context: CREATE TABLE table_name_83 (tries VARCHAR, pens VARCHAR, conv VARCHAR, start VARCHAR) |
### question: When the united states has 22 wins and a rank greater than 2, what is the total earnings? ### answer: SELECT SUM(earnings__) AS $__ FROM table_name_82 WHERE country = "united states" AND wins = 22 AND rank > 2 ### context: CREATE TABLE table_name_82 (earnings__ INTEGER, rank VARCHAR, country VARCHAR, wins... |
### question: What is the smallest rank for new zealand? ### answer: SELECT MIN(rank) FROM table_name_23 WHERE country = "new zealand" ### context: CREATE TABLE table_name_23 (rank INTEGER, country VARCHAR) |
### question: What is Richmond's away team score versus Geelong? ### answer: SELECT away_team AS score FROM table_name_96 WHERE away_team = "richmond" ### context: CREATE TABLE table_name_96 (away_team VARCHAR) |
### question: When the share of votes equals 21.8%, what's the sum of the total amount of seats? ### answer: SELECT SUM(total_seats) FROM table_name_61 WHERE share_of_votes = "21.8%" ### context: CREATE TABLE table_name_61 (total_seats INTEGER, share_of_votes VARCHAR) |
### question: If the total number of seats is under 144, and the seats won is 32, which election is this? ### answer: SELECT election FROM table_name_37 WHERE total_seats < 144 AND seats = 32 ### context: CREATE TABLE table_name_37 (election VARCHAR, total_seats VARCHAR, seats VARCHAR) |
### question: When the share of votes is 33.9%, what's the highest total amount of seats? ### answer: SELECT MAX(total_seats) FROM table_name_4 WHERE share_of_votes = "33.9%" ### context: CREATE TABLE table_name_4 (total_seats INTEGER, share_of_votes VARCHAR) |
### question: What was the home team's score when North Melbourne was the away team? ### answer: SELECT home_team AS score FROM table_name_39 WHERE away_team = "north melbourne" ### context: CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR) |
### question: Who was the away team when Geelong was the home team? ### answer: SELECT away_team FROM table_name_41 WHERE home_team = "geelong" ### context: CREATE TABLE table_name_41 (away_team VARCHAR, home_team VARCHAR) |
### question: What is the score of away team, North Melbourne? ### answer: SELECT away_team AS score FROM table_name_37 WHERE away_team = "north melbourne" ### context: CREATE TABLE table_name_37 (away_team VARCHAR) |
### question: What is the fewest number of attendees at Kardinia Park? ### answer: SELECT MIN(crowd) FROM table_name_36 WHERE venue = "kardinia park" ### context: CREATE TABLE table_name_36 (crowd INTEGER, venue VARCHAR) |
### question: What is the home team score when the away team was fitzroy? ### answer: SELECT home_team AS score FROM table_name_93 WHERE away_team = "fitzroy" ### context: CREATE TABLE table_name_93 (home_team VARCHAR, away_team VARCHAR) |
### question: Who was the home team at the game with a decision of Mason and a visiting team of Dallas? ### answer: SELECT home FROM table_name_96 WHERE decision = "mason" AND visitor = "dallas" ### context: CREATE TABLE table_name_96 (home VARCHAR, decision VARCHAR, visitor VARCHAR) |
### question: Name the highest laps for time/retired of engine and grid of 5 ### answer: SELECT MAX(laps) FROM table_name_37 WHERE time_retired = "engine" AND grid = 5 ### context: CREATE TABLE table_name_37 (laps INTEGER, time_retired VARCHAR, grid VARCHAR) |
### question: Name the highest laps for maserati and +6 laps for grid more than 11 ### answer: SELECT MAX(laps) FROM table_name_33 WHERE constructor = "maserati" AND time_retired = "+6 laps" AND grid > 11 ### context: CREATE TABLE table_name_33 (laps INTEGER, grid VARCHAR, constructor VARCHAR, time_retired VARCHAR) |
### question: Tell me the time/retired for grid 4 ### answer: SELECT time_retired FROM table_name_41 WHERE grid = 4 ### context: CREATE TABLE table_name_41 (time_retired VARCHAR, grid VARCHAR) |
### question: Tell me the driver for 58 laps ### answer: SELECT driver FROM table_name_18 WHERE laps = 58 ### context: CREATE TABLE table_name_18 (driver VARCHAR, laps VARCHAR) |
### question: What is the score of the home team aginst Essendon? ### answer: SELECT home_team AS score FROM table_name_89 WHERE away_team = "essendon" ### context: CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR) |
### question: When is the Geelong game? ### answer: SELECT date FROM table_name_26 WHERE home_team = "geelong" ### context: CREATE TABLE table_name_26 (date VARCHAR, home_team VARCHAR) |
### question: Which Original Broadway production has a First US National Tour of roger bart? ### answer: SELECT original_broadway_production FROM table_name_52 WHERE first_us_national_tour = "roger bart" ### context: CREATE TABLE table_name_52 (original_broadway_production VARCHAR, first_us_national_tour VARCHAR) |
### question: Which Original Broadway production has a Role of dr. victor von frankenstein? ### answer: SELECT original_broadway_production FROM table_name_1 WHERE role = "dr. victor von frankenstein" ### context: CREATE TABLE table_name_1 (original_broadway_production VARCHAR, role VARCHAR) |
### question: Which Role has a First US National Tour of roger bart? ### answer: SELECT role FROM table_name_19 WHERE first_us_national_tour = "roger bart" ### context: CREATE TABLE table_name_19 (role VARCHAR, first_us_national_tour VARCHAR) |
### question: Which Original Italian production has a First US National Tour of joanna glushak? ### answer: SELECT original_italian_production FROM table_name_4 WHERE first_us_national_tour = "joanna glushak" ### context: CREATE TABLE table_name_4 (original_italian_production VARCHAR, first_us_national_tour VARCHAR) |
### question: At what venue was the game played where the away team was South Melbourne ### answer: SELECT venue FROM table_name_49 WHERE away_team = "south melbourne" ### context: CREATE TABLE table_name_49 (venue VARCHAR, away_team VARCHAR) |
### question: Who directed the eula goodnight movie after 1949? ### answer: SELECT director FROM table_name_97 WHERE year > 1949 AND role = "eula goodnight" ### context: CREATE TABLE table_name_97 (director VARCHAR, year VARCHAR, role VARCHAR) |
### question: What role does she play before 1942 with dorothy arzner directing? ### answer: SELECT role FROM table_name_97 WHERE year < 1942 AND director = "dorothy arzner" ### context: CREATE TABLE table_name_97 (role VARCHAR, year VARCHAR, director VARCHAR) |
### question: What drama role does she play in 1973? ### answer: SELECT role FROM table_name_57 WHERE genre = "drama" AND year = 1973 ### context: CREATE TABLE table_name_57 (role VARCHAR, genre VARCHAR, year VARCHAR) |
### question: What is the date of the 1986 FIFA World Cup? ### answer: SELECT date FROM table_name_19 WHERE competition = "1986 fifa world cup" ### context: CREATE TABLE table_name_19 (date VARCHAR, competition VARCHAR) |
### question: Name the least floor exercise for parallel bars more than 9.687 and pommel horse less than 8.45 ### answer: SELECT MIN(floor_exercise) FROM table_name_58 WHERE pommel_horse < 8.45 AND parallel_bars > 9.687 ### context: CREATE TABLE table_name_58 (floor_exercise INTEGER, pommel_horse VARCHAR, parallel_bars... |
### question: Name the total number of pommel horses for vault of 9.475 and rank more than 16 ### answer: SELECT COUNT(pommel_horse) FROM table_name_65 WHERE rank > 16 AND vault = 9.475 ### context: CREATE TABLE table_name_65 (pommel_horse VARCHAR, rank VARCHAR, vault VARCHAR) |
### question: When lake oval is the venue, what's the score of the home team? ### answer: SELECT home_team AS score FROM table_name_4 WHERE venue = "lake oval" ### context: CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR) |
### question: Who did the cubs play on june 3? ### answer: SELECT opponent FROM table_name_60 WHERE date = "june 3" ### context: CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR) |
### question: Tell me the place of action for sergeant rank and 5th company, 2nd marines unit ### answer: SELECT place_of_action FROM table_name_80 WHERE rank = "sergeant" AND unit = "5th company, 2nd marines" ### context: CREATE TABLE table_name_80 (place_of_action VARCHAR, rank VARCHAR, unit VARCHAR) |
### question: Name the service for 7th marines rank of sergeant ### answer: SELECT service FROM table_name_20 WHERE unit = "7th marines" AND rank = "sergeant" ### context: CREATE TABLE table_name_20 (service VARCHAR, unit VARCHAR, rank VARCHAR) |
### question: How far is the olbia to sassari route? ### answer: SELECT distance FROM table_name_99 WHERE course = "olbia to sassari" ### context: CREATE TABLE table_name_99 (distance VARCHAR, course VARCHAR) |
### question: What day is miami the venue with 38 goals? ### answer: SELECT date FROM table_name_67 WHERE venue = "miami" AND goal = 38 ### context: CREATE TABLE table_name_67 (date VARCHAR, venue VARCHAR, goal VARCHAR) |
### question: What competition has 41 goals? ### answer: SELECT competition FROM table_name_63 WHERE goal = 41 ### context: CREATE TABLE table_name_63 (competition VARCHAR, goal VARCHAR) |
### question: What day has 34 goals? ### answer: SELECT date FROM table_name_76 WHERE goal = 34 ### context: CREATE TABLE table_name_76 (date VARCHAR, goal VARCHAR) |
### question: What driver had under 22 laps and a Time/Retired of ignition? ### answer: SELECT driver FROM table_name_93 WHERE laps < 22 AND time_retired = "ignition" ### context: CREATE TABLE table_name_93 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR) |
### question: What is the highest number of laps for chris amon? ### answer: SELECT MAX(laps) FROM table_name_51 WHERE driver = "chris amon" ### context: CREATE TABLE table_name_51 (laps INTEGER, driver VARCHAR) |
### question: What is the crowd with Away team of hawthorn? ### answer: SELECT AVG(crowd) FROM table_name_94 WHERE away_team = "hawthorn" ### context: CREATE TABLE table_name_94 (crowd INTEGER, away_team VARCHAR) |
### question: What away team score has carlton home team? ### answer: SELECT away_team AS score FROM table_name_85 WHERE home_team = "carlton" ### context: CREATE TABLE table_name_85 (away_team VARCHAR, home_team VARCHAR) |
### question: What is the away team score at vfl park? ### answer: SELECT away_team AS score FROM table_name_19 WHERE venue = "vfl park" ### context: CREATE TABLE table_name_19 (away_team VARCHAR, venue VARCHAR) |
### question: When did St Kilda play a home game? ### answer: SELECT date FROM table_name_91 WHERE home_team = "st kilda" ### context: CREATE TABLE table_name_91 (date VARCHAR, home_team VARCHAR) |
### question: When was the game played at Moorabbin Oval? ### answer: SELECT date FROM table_name_59 WHERE venue = "moorabbin oval" ### context: CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR) |
### question: Tell me the name for kelston with roll less than 322 ### answer: SELECT name FROM table_name_27 WHERE area = "kelston" AND roll < 322 ### context: CREATE TABLE table_name_27 (name VARCHAR, area VARCHAR, roll VARCHAR) |
### question: Who was the opponent on September 8? ### answer: SELECT opponent FROM table_name_24 WHERE date = "september 8" ### context: CREATE TABLE table_name_24 (opponent VARCHAR, date VARCHAR) |
### question: I want the Grand Final Date for season 1988 ### answer: SELECT grand_finaldate FROM table_name_40 WHERE season = 1988 ### context: CREATE TABLE table_name_40 (grand_finaldate VARCHAR, season VARCHAR) |
### question: What Gaelic Athletic Association stadium is located in Carrick-on-Shannon? ### answer: SELECT stadium FROM table_name_72 WHERE location = "carrick-on-shannon" ### context: CREATE TABLE table_name_72 (stadium VARCHAR, location VARCHAR) |
### question: What is the Gaelic Football Stadium at McHale Park's ranking in total capacity? ### answer: SELECT COUNT(rank) FROM table_name_30 WHERE stadium = "mchale park" ### context: CREATE TABLE table_name_30 (rank VARCHAR, stadium VARCHAR) |
### question: Which Away team score has a Crowd larger than 6,000? ### answer: SELECT away_team AS score FROM table_name_21 WHERE crowd > 6 OFFSET 000 ### context: CREATE TABLE table_name_21 (away_team VARCHAR, crowd INTEGER) |
### question: Which average Crowd has a Home team of south melbourne? ### answer: SELECT AVG(crowd) FROM table_name_72 WHERE home_team = "south melbourne" ### context: CREATE TABLE table_name_72 (crowd INTEGER, home_team VARCHAR) |
### question: On what date was the Record of 43–35? ### answer: SELECT date FROM table_name_25 WHERE record = "43–35" ### context: CREATE TABLE table_name_25 (date VARCHAR, record VARCHAR) |
### question: What record occurred on April 3? ### answer: SELECT record FROM table_name_17 WHERE date = "april 3" ### context: CREATE TABLE table_name_17 (record VARCHAR, date VARCHAR) |
### question: Who led the score on April 9? ### answer: SELECT leading_scorer FROM table_name_54 WHERE date = "april 9" ### context: CREATE TABLE table_name_54 (leading_scorer VARCHAR, date VARCHAR) |
### question: What is the record for the game that shows the Rose Garden 20,126 as attendance? ### answer: SELECT record FROM table_name_96 WHERE attendance = "rose garden 20,126" ### context: CREATE TABLE table_name_96 (record VARCHAR, attendance VARCHAR) |
### question: What is the record for the game when the Dallas Mavericks was the home team? ### answer: SELECT record FROM table_name_24 WHERE home = "dallas mavericks" ### context: CREATE TABLE table_name_24 (record VARCHAR, home VARCHAR) |
### question: What is the record that has the Rose Garden 20,126 as the attendance? ### answer: SELECT record FROM table_name_44 WHERE attendance = "rose garden 20,126" ### context: CREATE TABLE table_name_44 (record VARCHAR, attendance VARCHAR) |
### question: What was the score when 43,746 attended? ### answer: SELECT score FROM table_name_50 WHERE attendance = "43,746" ### context: CREATE TABLE table_name_50 (score VARCHAR, attendance VARCHAR) |
### question: What was the score when the record 56-46 was met? ### answer: SELECT score FROM table_name_7 WHERE record = "56-46" ### context: CREATE TABLE table_name_7 (score VARCHAR, record VARCHAR) |
### question: What did Richmond score as the home team? ### answer: SELECT home_team AS score FROM table_name_43 WHERE home_team = "richmond" ### context: CREATE TABLE table_name_43 (home_team VARCHAR) |
### question: Which model has a 2521 cm displacement and b5254 t2 engine? ### answer: SELECT model_name FROM table_name_45 WHERE displacement__cm³_ = 2521 AND engine_code = "b5254 t2" ### context: CREATE TABLE table_name_45 (model_name VARCHAR, displacement__cm³_ VARCHAR, engine_code VARCHAR) |
### question: Which engine has a 2435 cm displacement and is named 2.4 (2001-2007)? ### answer: SELECT engine_code FROM table_name_84 WHERE displacement__cm³_ = 2435 AND model_name = "2.4 (2001-2007)" ### context: CREATE TABLE table_name_84 (engine_code VARCHAR, displacement__cm³_ VARCHAR, model_name VARCHAR) |
### question: What was the venue for the game on 10-09-2012? ### answer: SELECT venue FROM table_name_71 WHERE date = "10-09-2012" ### context: CREATE TABLE table_name_71 (venue VARCHAR, date VARCHAR) |
### question: Which competition was played on 13-11-2012? ### answer: SELECT competition FROM table_name_22 WHERE date = "13-11-2012" ### context: CREATE TABLE table_name_22 (competition VARCHAR, date VARCHAR) |
### question: Which opponent is friendly and played on 15-08-2012? ### answer: SELECT opponent FROM table_name_38 WHERE competition = "friendly" AND date = "15-08-2012" ### context: CREATE TABLE table_name_38 (opponent VARCHAR, competition VARCHAR, date VARCHAR) |
### question: What is the result of game played on 10-05-2012? ### answer: SELECT result FROM table_name_23 WHERE date = "10-05-2012" ### context: CREATE TABLE table_name_23 (result VARCHAR, date VARCHAR) |
### question: What opponent played on 07-09-2012? ### answer: SELECT opponent FROM table_name_26 WHERE date = "07-09-2012" ### context: CREATE TABLE table_name_26 (opponent VARCHAR, date VARCHAR) |
### question: What is the location of the game that was friendly and resulted in 2-3? ### answer: SELECT venue FROM table_name_6 WHERE competition = "friendly" AND result = "2-3" ### context: CREATE TABLE table_name_6 (venue VARCHAR, competition VARCHAR, result VARCHAR) |
### question: What was the home team score for the game played at Western Oval? ### answer: SELECT home_team AS score FROM table_name_75 WHERE venue = "western oval" ### context: CREATE TABLE table_name_75 (home_team VARCHAR, venue VARCHAR) |
### question: What was the crowd number when the home team was Carlton? ### answer: SELECT MIN(crowd) FROM table_name_23 WHERE home_team = "carlton" ### context: CREATE TABLE table_name_23 (crowd INTEGER, home_team VARCHAR) |
### question: What is the largest capacity for the stadium for Treviso club? ### answer: SELECT MAX(capacity) FROM table_name_44 WHERE club = "treviso" ### context: CREATE TABLE table_name_44 (capacity INTEGER, club VARCHAR) |
### question: Is there Loci in the Cinderella software? ### answer: SELECT loci FROM table_name_77 WHERE software = "cinderella" ### context: CREATE TABLE table_name_77 (loci VARCHAR, software VARCHAR) |
### question: Are the there macros in the Tabula software? ### answer: SELECT macros FROM table_name_65 WHERE software = "tabula" ### context: CREATE TABLE table_name_65 (macros VARCHAR, software VARCHAR) |
### question: Are there proofs in the Tabulae software? ### answer: SELECT proofs FROM table_name_88 WHERE software = "tabulae" ### context: CREATE TABLE table_name_88 (proofs VARCHAR, software VARCHAR) |
### question: What is the year total for teams with under 37 games tied, over 33 games, and 15 losses? ### answer: SELECT SUM(years) FROM table_name_7 WHERE tied < 37 AND total_games > 33 AND lost = 15 ### context: CREATE TABLE table_name_7 (years INTEGER, lost VARCHAR, tied VARCHAR, total_games VARCHAR) |
### question: What is the low loss total for teams with under 3 years and a less than 0.625% winning percentage? ### answer: SELECT MIN(lost) FROM table_name_44 WHERE pct < 0.625 AND years < 3 ### context: CREATE TABLE table_name_44 (lost INTEGER, pct VARCHAR, years VARCHAR) |
### question: How many CLASS P14 trains were made? ### answer: SELECT quantity_made FROM table_name_2 WHERE class = "p14" ### context: CREATE TABLE table_name_2 (quantity_made VARCHAR, class VARCHAR) |
### question: In what year(s) were the CLASS T14 trains withdrawn from service? ### answer: SELECT year_s__withdrawn FROM table_name_86 WHERE class = "t14" ### context: CREATE TABLE table_name_86 (year_s__withdrawn VARCHAR, class VARCHAR) |
### question: What year was the 4-6-0 Wheel model train from 1908 withdrawn? ### answer: SELECT year_s__withdrawn FROM table_name_61 WHERE wheel_arrangement = "4-6-0" AND year_made = "1908" ### context: CREATE TABLE table_name_61 (year_s__withdrawn VARCHAR, wheel_arrangement VARCHAR, year_made VARCHAR) |
### question: What was the away team at collingwood? ### answer: SELECT away_team AS score FROM table_name_95 WHERE home_team = "collingwood" ### context: CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR) |
### question: What is the home team at windy hill? ### answer: SELECT home_team FROM table_name_39 WHERE venue = "windy hill" ### context: CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR) |
### question: What is the greatest capacity when the largest number in attendance is 6,192? ### answer: SELECT MAX(capacity) FROM table_name_91 WHERE highest > 6 OFFSET 192 ### context: CREATE TABLE table_name_91 (capacity INTEGER, highest INTEGER) |
### question: What is the highest average number in attendance when the most in attendance is 5,078? ### answer: SELECT MAX(average) FROM table_name_87 WHERE highest = 5 OFFSET 078 ### context: CREATE TABLE table_name_87 (average INTEGER, highest VARCHAR) |
### question: What is the route that has a rank higher than 63, and Separation Summit as its mountain pass? ### answer: SELECT SUM(route) FROM table_name_33 WHERE rank > 63 AND mountain_pass = "separation summit" ### context: CREATE TABLE table_name_33 (route INTEGER, rank VARCHAR, mountain_pass VARCHAR) |
### question: Which player plays for Illinois? ### answer: SELECT player FROM table_name_1 WHERE school_club_team_country = "illinois" ### context: CREATE TABLE table_name_1 (player VARCHAR, school_club_team_country VARCHAR) |
### question: Which player played for the Rockets in 2002-03? ### answer: SELECT player FROM table_name_41 WHERE years_for_rockets = "2002-03" ### context: CREATE TABLE table_name_41 (player VARCHAR, years_for_rockets VARCHAR) |
### question: What is the height in feet of number 10? ### answer: SELECT height_in_ft FROM table_name_77 WHERE no_s_ = "10" ### context: CREATE TABLE table_name_77 (height_in_ft VARCHAR, no_s_ VARCHAR) |
### question: What is the height in feet of the Illinois player? ### answer: SELECT height_in_ft FROM table_name_11 WHERE school_club_team_country = "illinois" ### context: CREATE TABLE table_name_11 (height_in_ft VARCHAR, school_club_team_country VARCHAR) |
### question: Tell me the time/retired for Laps larger than 63 and has a grid of 20 ### answer: SELECT time_retired FROM table_name_97 WHERE laps > 63 AND grid = 20 ### context: CREATE TABLE table_name_97 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR) |
### question: I want the sum of Laps for wolfgang von trips, and a grid larger than 5 ### answer: SELECT SUM(laps) FROM table_name_5 WHERE driver = "wolfgang von trips" AND grid > 5 ### context: CREATE TABLE table_name_5 (laps INTEGER, driver VARCHAR, grid VARCHAR) |
### question: When fitzroy what was the home team score? ### answer: SELECT home_team AS score FROM table_name_85 WHERE home_team = "fitzroy" ### context: CREATE TABLE table_name_85 (home_team VARCHAR) |
### question: When st kilda played as the Away team which date was that? ### answer: SELECT date FROM table_name_10 WHERE away_team = "st kilda" ### context: CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.