training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_75 (outcome VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR)
###human: What is the outcome of the match against Sylvia Hanika on a hard (i) surface?
###assistant: SELECT outcome FROM table_name_75 WHERE opponent_in_the_final = "sylvia hanika" AND surface = "hard (i)" |
###context:CREATE TABLE table_name_67 (player VARCHAR, no_s_ VARCHAR)
###human: What player had numbers of 20
###assistant: SELECT player FROM table_name_67 WHERE no_s_ = "20" |
###context:CREATE TABLE table_name_47 (height_in_ft VARCHAR, years_for_rockets VARCHAR)
###human: Tell me the height in ft for 1999-2004
###assistant: SELECT height_in_ft FROM table_name_47 WHERE years_for_rockets = "1999-2004" |
###context:CREATE TABLE table_name_18 (no_s_ VARCHAR, height_in_ft VARCHAR)
###human: Tell me the number for height in ft of 6-7
###assistant: SELECT no_s_ FROM table_name_18 WHERE height_in_ft = "6-7" |
###context:CREATE TABLE table_name_13 (player VARCHAR, school_club_team_country VARCHAR)
###human: What player had a school of missouri
###assistant: SELECT player FROM table_name_13 WHERE school_club_team_country = "missouri" |
###context:CREATE TABLE table_name_26 (pick__number INTEGER, team_from VARCHAR)
###human: What pick # has a team from Rimouski Océanic?
###assistant: SELECT AVG(pick__number) FROM table_name_26 WHERE team_from = "rimouski océanic" |
###context:CREATE TABLE table_name_45 (player VARCHAR, position VARCHAR, team_from VARCHAR)
###human: Who is the player from Hotchkiss School with a position of d?
###assistant: SELECT player FROM table_name_45 WHERE position = "d" AND team_from = "hotchkiss school" |
###context:CREATE TABLE table_name_23 (type VARCHAR, distance VARCHAR, course VARCHAR)
###human: What type is the sorrento to sapri course with a distance of km (mi)?
###assistant: SELECT type FROM table_name_23 WHERE distance = "km (mi)" AND course = "sorrento to sapri" |
###context:CREATE TABLE table_name_24 (type VARCHAR, course VARCHAR)
###human: What type is the misurina to bassano del grappa course?
###assistant: SELECT type FROM table_name_24 WHERE course = "misurina to bassano del grappa" |
###context:CREATE TABLE table_name_66 (distance VARCHAR, course VARCHAR)
###human: What's the distance for the chieti to macerata course?
###assistant: SELECT distance FROM table_name_66 WHERE course = "chieti to macerata" |
###context:CREATE TABLE table_name_51 (points INTEGER, car__number VARCHAR, make VARCHAR, driver VARCHAR)
###human: Which is the lowest points value that had a Chevrolet car, whose driver was Sterling Marlin, and whose car number was less than 14?
###assistant: SELECT MIN(points) FROM table_name_51 WHERE make = "chevrolet" AND driver = "sterling marlin" AND car__number < 14 |
###context:CREATE TABLE table_name_17 (points INTEGER, winnings VARCHAR, laps VARCHAR, make VARCHAR, car__number VARCHAR)
###human: Which is the lowest point value that had not only a Chevrolet car, but also a car number smaller than 24, total laps of 312, and a winning purse of $122,325?
###assistant: SELECT MIN(points) FROM table_name_17 WHERE make = "chevrolet" AND car__number < 24 AND laps = 312 AND winnings = "$122,325" |
###context:CREATE TABLE table_name_78 (location VARCHAR, result VARCHAR, opponent VARCHAR)
###human: What is the location for the win against Johan Mparmpagiannis?
###assistant: SELECT location FROM table_name_78 WHERE result = "win" AND opponent = "johan mparmpagiannis" |
###context:CREATE TABLE table_name_29 (method VARCHAR, opponent VARCHAR)
###human: What is the method against Björn Bregy?
###assistant: SELECT method FROM table_name_29 WHERE opponent = "björn bregy" |
###context:CREATE TABLE table_name_26 (method VARCHAR, opponent VARCHAR)
###human: What is the method against Paula Mataele?
###assistant: SELECT method FROM table_name_26 WHERE opponent = "paula mataele" |
###context:CREATE TABLE table_name_60 (date VARCHAR, location VARCHAR)
###human: What is the date of the match in Vilnius, Lithuania?
###assistant: SELECT date FROM table_name_60 WHERE location = "vilnius, lithuania" |
###context:CREATE TABLE table_name_81 (result VARCHAR, opponent VARCHAR, date VARCHAR)
###human: What is the result against Errol Zimmerman on 2007-04-07?
###assistant: SELECT result FROM table_name_81 WHERE opponent = "errol zimmerman" AND date = "2007-04-07" |
###context:CREATE TABLE table_name_75 (location VARCHAR, opponent VARCHAR)
###human: What is the location of the match against Martinis Knyzelis?
###assistant: SELECT location FROM table_name_75 WHERE opponent = "martinis knyzelis" |
###context:CREATE TABLE table_name_87 (date VARCHAR, home_team VARCHAR)
###human: What day is st kilda the home side?
###assistant: SELECT date FROM table_name_87 WHERE home_team = "st kilda" |
###context:CREATE TABLE table_name_29 (away_team VARCHAR)
###human: What is melbourne's away score?
###assistant: SELECT away_team AS score FROM table_name_29 WHERE away_team = "melbourne" |
###context:CREATE TABLE table_name_1 (home_team VARCHAR, away_team VARCHAR)
###human: What was the home team's score when Geelong was the away team?
###assistant: SELECT home_team AS score FROM table_name_1 WHERE away_team = "geelong" |
###context:CREATE TABLE table_name_66 (late_1943 VARCHAR, _late_1941 VARCHAR)
###human: What is the 1978 Veteran membership with a late 1941 macedonia and a late 1943 less than 10,000?
###assistant: SELECT SUM(1978 AS _veteran_membership) FROM table_name_66 WHERE NOT _late_1941 = "macedonia" AND late_1943 < 10 OFFSET 000 |
###context:CREATE TABLE table_name_3 (opponent VARCHAR, season VARCHAR)
###human: Which opponent has a Season of 2011/12?
###assistant: SELECT opponent FROM table_name_3 WHERE season = "2011/12" |
###context:CREATE TABLE table_name_7 (opponent VARCHAR, season VARCHAR)
###human: Which opponent has a Season of 2010/11?
###assistant: SELECT opponent FROM table_name_7 WHERE season = "2010/11" |
###context:CREATE TABLE table_name_56 (competition VARCHAR, season VARCHAR)
###human: Which competition has a Season of 2010/11?
###assistant: SELECT competition FROM table_name_56 WHERE season = "2010/11" |
###context:CREATE TABLE table_name_20 (opponent VARCHAR, result VARCHAR)
###human: What Opponent has a Result of –?
###assistant: SELECT opponent FROM table_name_20 WHERE result = "–" |
###context:CREATE TABLE table_name_71 (season VARCHAR, result VARCHAR)
###human: Which season has a Result of 6–9?
###assistant: SELECT season FROM table_name_71 WHERE result = "6–9" |
###context:CREATE TABLE table_name_53 (round VARCHAR, venue VARCHAR, opponent VARCHAR)
###human: Which round has a Venue of nicosia, and a Opponent of levski sofia zapad?
###assistant: SELECT round FROM table_name_53 WHERE venue = "nicosia" AND opponent = "levski sofia zapad" |
###context:CREATE TABLE table_name_27 (result VARCHAR, score VARCHAR)
###human: What resulted in a score of 22-21?
###assistant: SELECT result FROM table_name_27 WHERE score = "22-21" |
###context:CREATE TABLE table_name_97 (competition VARCHAR, date VARCHAR)
###human: What competition was held on the date 6/7/03
###assistant: SELECT competition FROM table_name_97 WHERE date = "6/7/03" |
###context:CREATE TABLE table_name_84 (score VARCHAR, date VARCHAR)
###human: What was the score for the date of 15/6/03
###assistant: SELECT score FROM table_name_84 WHERE date = "15/6/03" |
###context:CREATE TABLE table_name_5 (venue VARCHAR, date VARCHAR)
###human: What venue is on the date of 8/6/03
###assistant: SELECT venue FROM table_name_5 WHERE date = "8/6/03" |
###context:CREATE TABLE table_name_69 (result VARCHAR, score VARCHAR)
###human: What outcome has a score of 12-22?
###assistant: SELECT result FROM table_name_69 WHERE score = "12-22" |
###context:CREATE TABLE table_name_14 (date VARCHAR, venue VARCHAR, result VARCHAR)
###human: What date is for Venue of jjb stadium, and a Result of w?
###assistant: SELECT date FROM table_name_14 WHERE venue = "jjb stadium" AND result = "w" |
###context:CREATE TABLE table_name_71 (laps INTEGER, driver VARCHAR)
###human: What is the high lap total for françois cevert?
###assistant: SELECT MAX(laps) FROM table_name_71 WHERE driver = "françois cevert" |
###context:CREATE TABLE table_name_83 (constructor VARCHAR, driver VARCHAR)
###human: Who constructed rolf stommelen's car?
###assistant: SELECT constructor FROM table_name_83 WHERE driver = "rolf stommelen" |
###context:CREATE TABLE table_name_91 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR)
###human: Who drive the car that retired due to engine failure and a grid of less than 9?
###assistant: SELECT driver FROM table_name_91 WHERE time_retired = "engine" AND grid < 9 |
###context:CREATE TABLE table_name_47 (date VARCHAR, record VARCHAR)
###human: When was the race that set the record for the Izod Indycar Series?
###assistant: SELECT date FROM table_name_47 WHERE record = "izod indycar series" |
###context:CREATE TABLE table_name_61 (driver VARCHAR, record VARCHAR, time VARCHAR)
###human: Which driver set the Qualifying record with a time of 24.761 seconds?
###assistant: SELECT driver FROM table_name_61 WHERE record = "qualifying" AND time = "24.761" |
###context:CREATE TABLE table_name_52 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)
###human: What Utah Jazz guard, played at BYU?
###assistant: SELECT player FROM table_name_52 WHERE position = "guard" AND school_club_team = "byu" |
###context:CREATE TABLE table_name_19 (school_club_team VARCHAR, player VARCHAR)
###human: What college team did Derek Fisher play for?
###assistant: SELECT school_club_team FROM table_name_19 WHERE player = "derek fisher" |
###context:CREATE TABLE table_name_51 (nationality VARCHAR, school_club_team VARCHAR)
###human: The Utah Jazz Player from UTEP was what nationality?
###assistant: SELECT nationality FROM table_name_51 WHERE school_club_team = "utep" |
###context:CREATE TABLE table_name_26 (venue VARCHAR, home_team VARCHAR)
###human: What is the name of the venue when the home team is Richmond?
###assistant: SELECT venue FROM table_name_26 WHERE home_team = "richmond" |
###context:CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)
###human: What is the home team score when the venue is Princes Park?
###assistant: SELECT home_team AS score FROM table_name_40 WHERE venue = "princes park" |
###context:CREATE TABLE table_name_66 (actor VARCHAR, character VARCHAR)
###human: What actor plays glen cole?
###assistant: SELECT actor FROM table_name_66 WHERE character = "glen cole" |
###context:CREATE TABLE table_name_99 (final_episode INTEGER, character VARCHAR)
###human: What is the average number for a final episode featuring maxine valera?
###assistant: SELECT AVG(final_episode) AS Count FROM table_name_99 WHERE character = "maxine valera" |
###context:CREATE TABLE table_name_45 (laps INTEGER, time_retired VARCHAR)
###human: How many laps were driven in 2:54:23.8?
###assistant: SELECT SUM(laps) FROM table_name_45 WHERE time_retired = "2:54:23.8" |
###context:CREATE TABLE table_name_43 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)
###human: Which constructor has laps less than 100 and a time/retired +10 laps?
###assistant: SELECT constructor FROM table_name_43 WHERE laps < 100 AND time_retired = "+10 laps" |
###context:CREATE TABLE table_name_95 (laps INTEGER, grid VARCHAR)
###human: What are the highest number of laps for grid 8?
###assistant: SELECT MAX(laps) FROM table_name_95 WHERE grid = 8 |
###context:CREATE TABLE table_name_11 (grid INTEGER, time_retired VARCHAR)
###human: Which grid is the highest and has a time/retired of +0.3?
###assistant: SELECT MAX(grid) FROM table_name_11 WHERE time_retired = "+0.3" |
###context:CREATE TABLE table_name_61 (driver VARCHAR, grid VARCHAR, constructor VARCHAR, laps VARCHAR)
###human: Which driver for Maserati has more laps than 23 and a grid greater than 7?
###assistant: SELECT driver FROM table_name_61 WHERE constructor = "maserati" AND laps > 23 AND grid > 7 |
###context:CREATE TABLE table_name_7 (points_classification VARCHAR, stage VARCHAR, winner VARCHAR, general_classification VARCHAR, trofeo_fast_team VARCHAR)
###human: Which points classification shares a general classification of Bernard Hinault, a Trofeo Fast Tem of Bianchi, was won by Urs Freuler, and was stage 4?
###assistant: SELECT points_classification FROM table_name_7 WHERE general_classification = "bernard hinault" AND trofeo_fast_team = "bianchi" AND winner = "urs freuler" AND stage = "4" |
###context:CREATE TABLE table_name_71 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, trofeo_fast_team VARCHAR)
###human: Who was the winner that had a Points Classification of Giuseppe Saronni, a Trofeo Fast Team of Bianchi, and was Stage 3?
###assistant: SELECT winner FROM table_name_71 WHERE points_classification = "giuseppe saronni" AND trofeo_fast_team = "bianchi" AND stage = "3" |
###context:CREATE TABLE table_name_57 (stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)
###human: Which stage had a Points Classification of Francesco Moser and a general classification of Bernard Hinault?
###assistant: SELECT stage FROM table_name_57 WHERE points_classification = "francesco moser" AND general_classification = "bernard hinault" |
###context:CREATE TABLE table_name_85 (winner VARCHAR, points_classification VARCHAR, stage VARCHAR)
###human: Who was the winner of Stage 12 with a Points Classification of Francesco Moser?
###assistant: SELECT winner FROM table_name_85 WHERE points_classification = "francesco moser" AND stage = "12" |
###context:CREATE TABLE table_name_51 (stage VARCHAR, winner VARCHAR, points_classification VARCHAR)
###human: Which stage was won by Bernard Hinault and had a Points classification of Francesco Moser?
###assistant: SELECT stage FROM table_name_51 WHERE winner = "bernard hinault" AND points_classification = "francesco moser" |
###context:CREATE TABLE table_name_5 (loser VARCHAR, date VARCHAR, year VARCHAR)
###human: Who was the loser on December 12, 1971?
###assistant: SELECT loser FROM table_name_5 WHERE date = "december 12" AND year = 1971 |
###context:CREATE TABLE table_name_96 (loser VARCHAR, location VARCHAR, year VARCHAR)
###human: Who was the loser at Municipal Stadium after 1970?
###assistant: SELECT loser FROM table_name_96 WHERE location = "municipal stadium" AND year > 1970 |
###context:CREATE TABLE table_name_95 (date VARCHAR, year VARCHAR, winner VARCHAR)
###human: What is the date where the winner was the Oakland Raiders in 1975?
###assistant: SELECT date FROM table_name_95 WHERE year = 1975 AND winner = "oakland raiders" |
###context:CREATE TABLE table_name_23 (result VARCHAR, location VARCHAR, loser VARCHAR)
###human: What is result of the game at Arrowhead Stadium where the loser was the Kansas City Chiefs?
###assistant: SELECT result FROM table_name_23 WHERE location = "arrowhead stadium" AND loser = "kansas city chiefs" |
###context:CREATE TABLE table_name_54 (work VARCHAR, category VARCHAR)
###human: What was nominated for the Best Movie category?
###assistant: SELECT work FROM table_name_54 WHERE category = "best movie" |
###context:CREATE TABLE table_name_27 (award VARCHAR, work VARCHAR, year VARCHAR)
###human: Which award did Scream receive a nomination and/or win for in 1997?
###assistant: SELECT award FROM table_name_27 WHERE work = "scream" AND year = 1997 |
###context:CREATE TABLE table_name_52 (category VARCHAR, work VARCHAR, award VARCHAR)
###human: What category was Scream nominated for at the International Horror Guild?
###assistant: SELECT category FROM table_name_52 WHERE work = "scream" AND award = "international horror guild" |
###context:CREATE TABLE table_name_35 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR)
###human: what is the time/retired when the laps is less than 54 and the driver is mark donohue?
###assistant: SELECT time_retired FROM table_name_35 WHERE laps < 54 AND driver = "mark donohue" |
###context:CREATE TABLE table_name_39 (grid INTEGER, driver VARCHAR, laps VARCHAR)
###human: what is the grid when the driver is mario andretti and the laps is less than 54?
###assistant: SELECT MAX(grid) FROM table_name_39 WHERE driver = "mario andretti" AND laps < 54 |
###context:CREATE TABLE table_name_25 (laps VARCHAR, grid VARCHAR)
###human: how many laps were there when the grid was 24?
###assistant: SELECT COUNT(laps) FROM table_name_25 WHERE grid = 24 |
###context:CREATE TABLE table_name_79 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)
###human: what is the time/retired when the laps is 6, the grid is less than 18 and the driver is clay regazzoni?
###assistant: SELECT time_retired FROM table_name_79 WHERE laps = 6 AND grid < 18 AND driver = "clay regazzoni" |
###context:CREATE TABLE table_name_33 (class VARCHAR, quantity VARCHAR, gwr_nos VARCHAR)
###human: Which class is smaller than 5 and the GWR is 1322–1323?
###assistant: SELECT class FROM table_name_33 WHERE quantity < 5 AND gwr_nos = "1322–1323" |
###context:CREATE TABLE table_name_74 (name VARCHAR, province VARCHAR, term_expires VARCHAR)
###human: Whose term expired in 1996 and was from the province of Central Highlands?
###assistant: SELECT name FROM table_name_74 WHERE province = "central highlands" AND term_expires = 1996 |
###context:CREATE TABLE table_name_79 (province VARCHAR, party VARCHAR, name VARCHAR)
###human: Ken Wright of the National Party was from which province?
###assistant: SELECT province FROM table_name_79 WHERE party = "national" AND name = "ken wright" |
###context:CREATE TABLE table_name_20 (venue VARCHAR, year VARCHAR)
###human: Which venue hosted a race in 1967?
###assistant: SELECT venue FROM table_name_20 WHERE year = 1967 |
###context:CREATE TABLE table_name_73 (tournament VARCHAR, year INTEGER)
###human: Which tournament was held after 1966?
###assistant: SELECT tournament FROM table_name_73 WHERE year > 1966 |
###context:CREATE TABLE table_name_78 (venue VARCHAR, year VARCHAR)
###human: Which venue hosted a tournament in 1965?
###assistant: SELECT venue FROM table_name_78 WHERE year = 1965 |
###context:CREATE TABLE table_name_17 (result VARCHAR, nominee VARCHAR)
###human: What is the result for the best new musical nominee?
###assistant: SELECT result FROM table_name_17 WHERE nominee = "best new musical" |
###context:CREATE TABLE table_name_84 (year VARCHAR, nominee VARCHAR)
###human: How many years does simon baker appear as a nominee?
###assistant: SELECT COUNT(year) FROM table_name_84 WHERE nominee = "simon baker" |
###context:CREATE TABLE table_name_44 (height_in_ft VARCHAR, years_for_rockets VARCHAR)
###human: What is the Height for Years of Rockets of 2005-06?
###assistant: SELECT height_in_ft FROM table_name_44 WHERE years_for_rockets = "2005-06" |
###context:CREATE TABLE table_name_78 (height_in_ft VARCHAR, years_for_rockets VARCHAR)
###human: What is the Height for Years for Rockets of 2005-06?
###assistant: SELECT height_in_ft FROM table_name_78 WHERE years_for_rockets = "2005-06" |
###context:CREATE TABLE table_name_99 (attendance VARCHAR, date VARCHAR)
###human: What is the Attendance on august 15?
###assistant: SELECT attendance FROM table_name_99 WHERE date = "august 15" |
###context:CREATE TABLE table_name_1 (constructor VARCHAR, fastest_lap VARCHAR)
###human: What is the constructor for the race with Nigel Mansell as the fastest lap?
###assistant: SELECT constructor FROM table_name_1 WHERE fastest_lap = "nigel mansell" |
###context:CREATE TABLE table_name_82 (fastest_lap VARCHAR, location VARCHAR)
###human: What is the fastest lap at estoril?
###assistant: SELECT fastest_lap FROM table_name_82 WHERE location = "estoril" |
###context:CREATE TABLE table_name_9 (race VARCHAR, fastest_lap VARCHAR, location VARCHAR)
###human: What is the race in Paul Ricard with Keke Rosberg as the fastest lap?
###assistant: SELECT race FROM table_name_9 WHERE fastest_lap = "keke rosberg" AND location = "paul ricard" |
###context:CREATE TABLE table_name_99 (race VARCHAR, location VARCHAR)
###human: Who was the winner at spa-francorchamps?
###assistant: SELECT race AS Winner FROM table_name_99 WHERE location = "spa-francorchamps" |
###context:CREATE TABLE table_name_11 (venue VARCHAR, result VARCHAR)
###human: Where was the game with result 7-2 played?
###assistant: SELECT venue FROM table_name_11 WHERE result = "7-2" |
###context:CREATE TABLE table_name_54 (score VARCHAR, competition VARCHAR, result VARCHAR)
###human: What was the score of the Friendly competition where the result was 7-2?
###assistant: SELECT score FROM table_name_54 WHERE competition = "friendly" AND result = "7-2" |
###context:CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)
###human: What was the score of the game on 27 January 1996?
###assistant: SELECT score FROM table_name_15 WHERE date = "27 january 1996" |
###context:CREATE TABLE table_name_40 (competition VARCHAR, result VARCHAR)
###human: What is the event with a result of 3-2?
###assistant: SELECT competition FROM table_name_40 WHERE result = "3-2" |
###context:CREATE TABLE table_name_30 (crowd INTEGER, venue VARCHAR)
###human: How big was the crowd size, at the Junction Oval venue?
###assistant: SELECT SUM(crowd) FROM table_name_30 WHERE venue = "junction oval" |
###context:CREATE TABLE table_name_39 (away_team VARCHAR)
###human: What is the visiting team of Melbourne's score?
###assistant: SELECT away_team AS score FROM table_name_39 WHERE away_team = "melbourne" |
###context:CREATE TABLE table_name_78 (crowd INTEGER, home_team VARCHAR)
###human: What is the average crowd size of Fitzroy's home team?
###assistant: SELECT AVG(crowd) FROM table_name_78 WHERE home_team = "fitzroy" |
###context:CREATE TABLE table_name_48 (build_date INTEGER, disposal VARCHAR)
###human: Which railway had the earliest build date and a disposal of "Scrapped 1941?"
###assistant: SELECT MIN(build_date) FROM table_name_48 WHERE disposal = "scrapped 1941" |
###context:CREATE TABLE table_name_68 (railway VARCHAR, build_date VARCHAR, loco_name VARCHAR)
###human: Which railway had a loco name of Pyramus and a build date of 1911?
###assistant: SELECT railway FROM table_name_68 WHERE build_date = 1911 AND loco_name = "pyramus" |
###context:CREATE TABLE table_name_13 (build_date VARCHAR, wheels VARCHAR)
###human: What was the build date of the railway(s) with 0-6-2 t wheels?
###assistant: SELECT build_date FROM table_name_13 WHERE wheels = "0-6-2 t" |
###context:CREATE TABLE table_name_73 (disbanded VARCHAR, league VARCHAR)
###human: Which disbanded is in the ahl league?
###assistant: SELECT disbanded FROM table_name_73 WHERE league = "ahl" |
###context:CREATE TABLE table_name_1 (championships VARCHAR, established INTEGER)
###human: Which championship was established after 2005?
###assistant: SELECT championships FROM table_name_1 WHERE established > 2005 |
###context:CREATE TABLE table_name_62 (year VARCHAR, player VARCHAR)
###human: Which year had J.R. Reid as a player?
###assistant: SELECT year FROM table_name_62 WHERE player = "j.r. reid" |
###context:CREATE TABLE table_name_11 (hometown VARCHAR, player VARCHAR)
###human: Which hometown is the played Dajuan Wagner from?
###assistant: SELECT hometown FROM table_name_11 WHERE player = "dajuan wagner" |
###context:CREATE TABLE table_name_29 (crowd VARCHAR, home_team VARCHAR)
###human: When the home team was carlton how many people were in the crowd?
###assistant: SELECT crowd FROM table_name_29 WHERE home_team = "carlton" |
###context:CREATE TABLE table_name_95 (away_team VARCHAR, crowd INTEGER)
###human: Which away team had a crowd of over 23,000 people?
###assistant: SELECT away_team FROM table_name_95 WHERE crowd > 23 OFFSET 000 |
###context:CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)
###human: What's the home team for the western oval venue?
###assistant: SELECT home_team FROM table_name_39 WHERE venue = "western oval" |
###context:CREATE TABLE table_name_28 (home_team VARCHAR, venue VARCHAR)
###human: What's the home team for the junction oval venue?
###assistant: SELECT home_team AS score FROM table_name_28 WHERE venue = "junction oval" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.