training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_2 (opponent VARCHAR, date VARCHAR)
###human: Who did the team play on april 19?
###assistant: SELECT opponent FROM table_name_2 WHERE date = "april 19" |
###context:CREATE TABLE table_name_23 (aspect VARCHAR, channel VARCHAR)
###human: What is the Aspect of Channel 26.5?
###assistant: SELECT aspect FROM table_name_23 WHERE channel = 26.5 |
###context:CREATE TABLE table_name_98 (programming VARCHAR, channel VARCHAR)
###human: Which Programming is on Channel 26.5?
###assistant: SELECT programming FROM table_name_98 WHERE channel = 26.5 |
###context:CREATE TABLE table_name_89 (programming VARCHAR, psip_short_name VARCHAR, channel VARCHAR, video VARCHAR)
###human: Which Programming is on a channel less than 26.5, has a Video of 480i and a PSIP Short Name of jtv?
###assistant: SELECT programming FROM table_name_89 WHERE channel < 26.5 AND video = "480i" AND psip_short_name = "jtv" |
###context:CREATE TABLE table_name_56 (laps VARCHAR, driver VARCHAR)
###human: What number of laps were done by driver Ronnie Peterson?
###assistant: SELECT laps FROM table_name_56 WHERE driver = "ronnie peterson" |
###context:CREATE TABLE table_name_2 (driver VARCHAR, time_retired VARCHAR)
###human: Which driver had a time/retired of fuel system?
###assistant: SELECT driver FROM table_name_2 WHERE time_retired = "fuel system" |
###context:CREATE TABLE table_name_27 (grid INTEGER, driver VARCHAR, time_retired VARCHAR, laps VARCHAR)
###human: What is the sum of grids with an engine in Time/Retired with less than 45 laps for Giancarlo Baghetti?
###assistant: SELECT SUM(grid) FROM table_name_27 WHERE time_retired = "engine" AND laps < 45 AND driver = "giancarlo baghetti" |
###context:CREATE TABLE table_name_97 (grid VARCHAR, laps VARCHAR)
###human: I want the Grid for Laps of 35
###assistant: SELECT grid FROM table_name_97 WHERE laps = 35 |
###context:CREATE TABLE table_name_95 (batting_style VARCHAR, player VARCHAR)
###human: What is Jonty Rhodes's batting style?
###assistant: SELECT batting_style FROM table_name_95 WHERE player = "jonty rhodes" |
###context:CREATE TABLE table_name_52 (bowling_style VARCHAR, first_class_team VARCHAR)
###human: What bowling style does First Class Team, Griqualand West have?
###assistant: SELECT bowling_style FROM table_name_52 WHERE first_class_team = "griqualand west" |
###context:CREATE TABLE table_name_85 (batting_style VARCHAR, player VARCHAR)
###human: What is the batting style of Makhaya Ntini?
###assistant: SELECT batting_style FROM table_name_85 WHERE player = "makhaya ntini" |
###context:CREATE TABLE table_name_1 (region VARCHAR, host VARCHAR)
###human: What region is the host university of southern california located?
###assistant: SELECT region FROM table_name_1 WHERE host = "university of southern california" |
###context:CREATE TABLE table_name_81 (state VARCHAR, city VARCHAR)
###human: In which state is the city of knoxville?
###assistant: SELECT state FROM table_name_81 WHERE city = "knoxville" |
###context:CREATE TABLE table_name_58 (city VARCHAR, state VARCHAR, venue VARCHAR)
###human: Which city in Texas hosts the Frank Erwin center?
###assistant: SELECT city FROM table_name_58 WHERE state = "texas" AND venue = "frank erwin center" |
###context:CREATE TABLE table_name_36 (region VARCHAR, city VARCHAR)
###human: In what region is the city of Austin?
###assistant: SELECT region FROM table_name_36 WHERE city = "austin" |
###context:CREATE TABLE table_name_97 (chuck_devore VARCHAR, other VARCHAR)
###human: What is the polling result for Chuck DeVore which has a corresponding polling result of 4% for Other?
###assistant: SELECT chuck_devore FROM table_name_97 WHERE other = "4%" |
###context:CREATE TABLE table_name_82 (total VARCHAR, silver VARCHAR, rank VARCHAR)
###human: What is the total when silver is less than 1 and rank larger than 3?
###assistant: SELECT COUNT(total) FROM table_name_82 WHERE silver < 1 AND rank > 3 |
###context:CREATE TABLE table_name_72 (bronze INTEGER, nation VARCHAR, silver VARCHAR)
###human: What is the number of bronze for Canada and silver is less than 0?
###assistant: SELECT SUM(bronze) FROM table_name_72 WHERE nation = "canada" AND silver < 0 |
###context:CREATE TABLE table_name_48 (gold INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR)
###human: What is the largest gold when silver is less than 1 for Canada and bronze is less than 0?
###assistant: SELECT MAX(gold) FROM table_name_48 WHERE silver < 1 AND nation = "canada" AND bronze < 0 |
###context:CREATE TABLE table_name_64 (silver INTEGER, nation VARCHAR, rank VARCHAR)
###human: What is the silver for Germany and less than 2?
###assistant: SELECT AVG(silver) FROM table_name_64 WHERE nation = "germany" AND rank < 2 |
###context:CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR)
###human: Tell me the score for december 3
###assistant: SELECT score FROM table_name_4 WHERE date = "december 3" |
###context:CREATE TABLE table_name_47 (record VARCHAR, date VARCHAR)
###human: Tell me the record for december 3
###assistant: SELECT record FROM table_name_47 WHERE date = "december 3" |
###context:CREATE TABLE table_name_86 (record VARCHAR, visitor VARCHAR)
###human: Name the record for dallas visitor
###assistant: SELECT record FROM table_name_86 WHERE visitor = "dallas" |
###context:CREATE TABLE table_name_36 (score VARCHAR, date VARCHAR)
###human: Name the score for december 5
###assistant: SELECT score FROM table_name_36 WHERE date = "december 5" |
###context:CREATE TABLE table_name_6 (home_team VARCHAR, venue VARCHAR)
###human: Who is Princes Park's home team?
###assistant: SELECT home_team FROM table_name_6 WHERE venue = "princes park" |
###context:CREATE TABLE table_name_30 (home_team VARCHAR, away_team VARCHAR)
###human: Who is North Melbourne's home team?
###assistant: SELECT home_team FROM table_name_30 WHERE away_team = "north melbourne" |
###context:CREATE TABLE table_name_67 (year_8_1st_quad VARCHAR, year_9_2nd_quad VARCHAR, crew VARCHAR)
###human: In the Crews beyond 2006 what was the Year 8 1st Quads that exists in the same row that had the year 9 2nd Quads of BGGS?
###assistant: SELECT year_8_1st_quad FROM table_name_67 WHERE year_9_2nd_quad = "bggs" AND crew > 2006 |
###context:CREATE TABLE table_name_5 (year_8_1st_quad VARCHAR, year_8_3rd_quad VARCHAR, year_9_2nd_quad VARCHAR, year_9_1st_quad VARCHAR)
###human: For the Crew with Year 9 2nd Quads of STM, Year 9 1st Quads of SOM, and a Year 8 3rd Quads of STA what was the Year 8 1st Quads?
###assistant: SELECT year_8_1st_quad FROM table_name_5 WHERE year_9_2nd_quad = "stm" AND year_9_1st_quad = "som" AND year_8_3rd_quad = "sta" |
###context:CREATE TABLE table_name_59 (character VARCHAR, category VARCHAR, award VARCHAR)
###human: Which character was in the sexiest female category of the British Soap Awards?
###assistant: SELECT character FROM table_name_59 WHERE category = "sexiest female" AND award = "british soap awards" |
###context:CREATE TABLE table_name_2 (film_or_series VARCHAR, result VARCHAR, category VARCHAR)
###human: Which film or series was nominated in the category of best fansite?
###assistant: SELECT film_or_series FROM table_name_2 WHERE result = "nominated" AND category = "best fansite" |
###context:CREATE TABLE table_name_38 (venue VARCHAR, home_team VARCHAR)
###human: Where does Essendon play their home games?
###assistant: SELECT venue FROM table_name_38 WHERE home_team = "essendon" |
###context:CREATE TABLE table_name_30 (home_team VARCHAR, venue VARCHAR)
###human: What team plays their home games in Victoria Park?
###assistant: SELECT home_team FROM table_name_30 WHERE venue = "victoria park" |
###context:CREATE TABLE table_name_22 (attendance INTEGER, date VARCHAR, report VARCHAR, score VARCHAR)
###human: What is the total attendance with a Report of sd.hr, and a Score of 3–1, and a Date of 14 apr 2001?
###assistant: SELECT SUM(attendance) FROM table_name_22 WHERE report = "sd.hr" AND score = "3–1" AND date = "14 apr 2001" |
###context:CREATE TABLE table_name_6 (production_code INTEGER, written_by VARCHAR, season__number VARCHAR)
###human: What is the highest production code when the writer was brian egeston after season 5?
###assistant: SELECT MAX(production_code) FROM table_name_6 WHERE written_by = "brian egeston" AND season__number > 5 |
###context:CREATE TABLE table_name_63 (record VARCHAR, home VARCHAR)
###human: What was the record when chicago was the home team?
###assistant: SELECT record FROM table_name_63 WHERE home = "chicago" |
###context:CREATE TABLE table_name_58 (crowd INTEGER, home_team VARCHAR)
###human: How many people were in the crowd when the Home Team was Hawthorn?
###assistant: SELECT SUM(crowd) FROM table_name_58 WHERE home_team = "hawthorn" |
###context:CREATE TABLE table_name_66 (grid INTEGER, laps VARCHAR)
###human: What's the average Grid with Laps of 88?
###assistant: SELECT AVG(grid) FROM table_name_66 WHERE laps = 88 |
###context:CREATE TABLE table_name_21 (driver VARCHAR, time_retired VARCHAR)
###human: Which driver has a Time/Retired of +6 laps?
###assistant: SELECT driver FROM table_name_21 WHERE time_retired = "+6 laps" |
###context:CREATE TABLE table_name_21 (home_team VARCHAR)
###human: What did Hawthorn score as the home team?
###assistant: SELECT home_team AS score FROM table_name_21 WHERE home_team = "hawthorn" |
###context:CREATE TABLE table_name_22 (away_team VARCHAR, home_team VARCHAR)
###human: What team played South Melbourne at their home game?
###assistant: SELECT away_team FROM table_name_22 WHERE home_team = "south melbourne" |
###context:CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR)
###human: What team played Geelong at their away game?
###assistant: SELECT home_team FROM table_name_59 WHERE away_team = "geelong" |
###context:CREATE TABLE table_name_60 (Id VARCHAR)
###human: What is the 1989 result of the tournament in which Katerina Maleeva finished 4r in 1991?
###assistant: SELECT 1989 FROM table_name_60 WHERE 1991 = "4r" |
###context:CREATE TABLE table_name_94 (Id VARCHAR)
###human: What is the 1989 result of the tournament in which Katerina finished nh in 1986?
###assistant: SELECT 1989 FROM table_name_94 WHERE 1986 = "nh" |
###context:CREATE TABLE table_name_88 (total VARCHAR, rank VARCHAR)
###human: What is the total of the ranks that did not participate?
###assistant: SELECT total FROM table_name_88 WHERE rank = "did not participate" |
###context:CREATE TABLE table_name_55 (decile VARCHAR, authority VARCHAR, name VARCHAR)
###human: What is the decile for Westminster Christian School with a state integrated authority?
###assistant: SELECT decile FROM table_name_55 WHERE authority = "state integrated" AND name = "westminster christian school" |
###context:CREATE TABLE table_name_45 (years VARCHAR, authority VARCHAR, decile VARCHAR)
###human: What are the years when the authority was state integrated and a decile of 9?
###assistant: SELECT years FROM table_name_45 WHERE authority = "state integrated" AND decile = "9" |
###context:CREATE TABLE table_name_30 (away_team VARCHAR, venue VARCHAR)
###human: What did the team score while away in moorabbin oval?
###assistant: SELECT away_team AS score FROM table_name_30 WHERE venue = "moorabbin oval" |
###context:CREATE TABLE table_name_66 (date VARCHAR, tournament VARCHAR)
###human: When was the general foods pga seniors' championship tournament?
###assistant: SELECT date FROM table_name_66 WHERE tournament = "general foods pga seniors' championship" |
###context:CREATE TABLE table_name_86 (location_attendance VARCHAR, record VARCHAR)
###human: What was the attendance on location when the record was 3–16?
###assistant: SELECT location_attendance FROM table_name_86 WHERE record = "3–16" |
###context:CREATE TABLE table_name_3 (date VARCHAR, high_rebounds VARCHAR)
###human: On what date was a two-way tie (8) the high rebound?
###assistant: SELECT date FROM table_name_3 WHERE high_rebounds = "two-way tie (8)" |
###context:CREATE TABLE table_name_20 (home_team VARCHAR, away_team VARCHAR)
###human: What is the home team score with Away team Richmond?
###assistant: SELECT home_team AS score FROM table_name_20 WHERE away_team = "richmond" |
###context:CREATE TABLE table_name_89 (crowd INTEGER, venue VARCHAR)
###human: What is the smallest crowd for victoria park?
###assistant: SELECT MIN(crowd) FROM table_name_89 WHERE venue = "victoria park" |
###context:CREATE TABLE table_name_92 (_jerk VARCHAR, clean_ INTEGER, total__kg_ VARCHAR, snatch VARCHAR)
###human: what is the highest clean & jerk when total (kg) is 200.0 and snatch is more than 87.5?
###assistant: SELECT MAX(clean_) & _jerk FROM table_name_92 WHERE total__kg_ = "200.0" AND snatch > 87.5 |
###context:CREATE TABLE table_name_89 (bodyweight INTEGER, snatch VARCHAR)
###human: what is the average bodyweight when snatch is 80?
###assistant: SELECT AVG(bodyweight) FROM table_name_89 WHERE snatch = 80 |
###context:CREATE TABLE table_name_92 (home_team VARCHAR, venue VARCHAR)
###human: What did the home team score at Windy Hill?
###assistant: SELECT home_team AS score FROM table_name_92 WHERE venue = "windy hill" |
###context:CREATE TABLE table_name_49 (crowd INTEGER, home_team VARCHAR)
###human: When the home team was Richmond, what was the largest crowd?
###assistant: SELECT MAX(crowd) FROM table_name_49 WHERE home_team = "richmond" |
###context:CREATE TABLE table_name_55 (location VARCHAR)
###human: Tell me the average 1st prize for tennessee
###assistant: SELECT AVG(1 AS st_prize__) AS $__ FROM table_name_55 WHERE location = "tennessee" |
###context:CREATE TABLE table_name_97 (winner VARCHAR, tournament VARCHAR)
###human: Tell me the winner of the comfort classic
###assistant: SELECT winner FROM table_name_97 WHERE tournament = "comfort classic" |
###context:CREATE TABLE table_name_13 (pct VARCHAR, losses VARCHAR, finals VARCHAR)
###human: How many percentages have losses fewer than 1 with finals appearances of 4?
###assistant: SELECT COUNT(pct) FROM table_name_13 WHERE losses < 1 AND finals = 4 |
###context:CREATE TABLE table_name_28 (minimum_age_at_1st_dose VARCHAR, number_of_doses VARCHAR, dose VARCHAR)
###human: Name the least age for the 1st dose for 3 doses of 2-3 drops
###assistant: SELECT minimum_age_at_1st_dose FROM table_name_28 WHERE number_of_doses = "3 doses" AND dose = "2-3 drops" |
###context:CREATE TABLE table_name_13 (number_of_doses VARCHAR, vaccine VARCHAR)
###human: How many doses for the bacillus calmette-guérin?
###assistant: SELECT number_of_doses FROM table_name_13 WHERE vaccine = "bacillus calmette-guérin" |
###context:CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR)
###human: What team did team carlton play while away?
###assistant: SELECT home_team FROM table_name_42 WHERE away_team = "carlton" |
###context:CREATE TABLE table_name_77 (home_team VARCHAR, venue VARCHAR)
###human: What home team plays at Windy Hill?
###assistant: SELECT home_team FROM table_name_77 WHERE venue = "windy hill" |
###context:CREATE TABLE table_name_66 (election VARCHAR)
###human: What was the 2nd Party in the 1918 Election?
###assistant: SELECT 2 AS nd_party FROM table_name_66 WHERE election = "1918" |
###context:CREATE TABLE table_name_35 (election VARCHAR)
###human: What was the 3rd Party in the Election of 1922?
###assistant: SELECT 3 AS rd_party FROM table_name_35 WHERE election = "1922" |
###context:CREATE TABLE table_name_6 (erp_w INTEGER, frequency_mhz INTEGER)
###human: What is the ERP W number where the frequency is smaller than 91.1?
###assistant: SELECT MAX(erp_w) FROM table_name_6 WHERE frequency_mhz < 91.1 |
###context:CREATE TABLE table_name_69 (home_team VARCHAR)
###human: What was the score of Collingwood?
###assistant: SELECT home_team AS score FROM table_name_69 WHERE home_team = "collingwood" |
###context:CREATE TABLE table_name_83 (venue VARCHAR, away_team VARCHAR)
###human: Where did South Melbourne play?
###assistant: SELECT venue FROM table_name_83 WHERE away_team = "south melbourne" |
###context:CREATE TABLE table_name_79 (venue VARCHAR, home_team VARCHAR)
###human: What is the venue of North Melbourne?
###assistant: SELECT venue FROM table_name_79 WHERE home_team = "north melbourne" |
###context:CREATE TABLE table_name_20 (loss VARCHAR, opponent VARCHAR)
###human: What was the loss from the coyotes as opponents?
###assistant: SELECT loss FROM table_name_20 WHERE opponent = "coyotes" |
###context:CREATE TABLE table_name_93 (final_episode VARCHAR, actor VARCHAR)
###human: What was the last episode featuring Rob Estes?
###assistant: SELECT final_episode FROM table_name_93 WHERE actor = "rob estes" |
###context:CREATE TABLE table_name_23 (block VARCHAR, cospar_id VARCHAR)
###human: What block has a COSPAR ID of 1995-060a?
###assistant: SELECT block FROM table_name_23 WHERE cospar_id = "1995-060a" |
###context:CREATE TABLE table_name_41 (rocket VARCHAR, block VARCHAR, cospar_id VARCHAR)
###human: What rocket has a Block of block i and a COSPAR ID of 1995-060a?
###assistant: SELECT rocket FROM table_name_41 WHERE block = "block i" AND cospar_id = "1995-060a" |
###context:CREATE TABLE table_name_2 (name VARCHAR, rocket VARCHAR, block VARCHAR)
###human: What name has a Rocket of titan iv(401)b and a Block of block i/ii hybrid?
###assistant: SELECT name FROM table_name_2 WHERE rocket = "titan iv(401)b" AND block = "block i/ii hybrid" |
###context:CREATE TABLE table_name_30 (rocket VARCHAR, block VARCHAR)
###human: What rocket has a block i/ii hybrid?
###assistant: SELECT rocket FROM table_name_30 WHERE block = "block i/ii hybrid" |
###context:CREATE TABLE table_name_31 (rocket VARCHAR, cospar_id VARCHAR)
###human: What rocket has a COSPAR ID of 2002-001a?
###assistant: SELECT rocket FROM table_name_31 WHERE cospar_id = "2002-001a" |
###context:CREATE TABLE table_name_40 (cospar_id VARCHAR, launch_date_time__utc_ VARCHAR)
###human: What COSPAR ID has a Launch date/time (UTC) of 1995-11-06, 05:15:01?
###assistant: SELECT cospar_id FROM table_name_40 WHERE launch_date_time__utc_ = "1995-11-06, 05:15:01" |
###context:CREATE TABLE table_name_94 (score VARCHAR, competition VARCHAR, date VARCHAR)
###human: On 15/04/07 in the competition Super League XII, what was the score?
###assistant: SELECT score FROM table_name_94 WHERE competition = "super league xii" AND date = "15/04/07" |
###context:CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR)
###human: On 21/07/07, what was the score?
###assistant: SELECT score FROM table_name_12 WHERE date = "21/07/07" |
###context:CREATE TABLE table_name_48 (venue VARCHAR, season VARCHAR)
###human: What was the venue of season 1907?
###assistant: SELECT venue FROM table_name_48 WHERE season = "1907" |
###context:CREATE TABLE table_name_23 (bowling VARCHAR, season VARCHAR)
###human: What is the bowling score of season 1907?
###assistant: SELECT bowling FROM table_name_23 WHERE season = "1907" |
###context:CREATE TABLE table_name_62 (season VARCHAR, player VARCHAR, opponent VARCHAR)
###human: Which season did Tich Freeman play against opponent V Warwickshire?
###assistant: SELECT season FROM table_name_62 WHERE player = "tich freeman" AND opponent = "v warwickshire" |
###context:CREATE TABLE table_name_45 (home_team VARCHAR)
###human: What was South Melbourne's score as the home team?
###assistant: SELECT home_team AS score FROM table_name_45 WHERE home_team = "south melbourne" |
###context:CREATE TABLE table_name_4 (home_team VARCHAR)
###human: How many points did the home team Essendon score?
###assistant: SELECT home_team AS score FROM table_name_4 WHERE home_team = "essendon" |
###context:CREATE TABLE table_name_91 (character VARCHAR, episodes INTEGER)
###human: What character is in over 22 episodes?
###assistant: SELECT character FROM table_name_91 WHERE episodes > 22 |
###context:CREATE TABLE table_name_35 (episodes INTEGER, actor VARCHAR)
###human: What is the lowest number of episodes for anabel barnston?
###assistant: SELECT MIN(episodes) FROM table_name_35 WHERE actor = "anabel barnston" |
###context:CREATE TABLE table_name_51 (character VARCHAR, episodes VARCHAR, actor VARCHAR)
###human: What character is played by dani harmer for under 23 episodes?
###assistant: SELECT character FROM table_name_51 WHERE episodes < 23 AND actor = "dani harmer" |
###context:CREATE TABLE table_name_35 (episodes VARCHAR, duration VARCHAR)
###human: How many episodes have a duration of 3?
###assistant: SELECT COUNT(episodes) FROM table_name_35 WHERE duration = "3" |
###context:CREATE TABLE table_name_7 (away_team VARCHAR, home_team VARCHAR)
###human: What is the name of the away team who play Collingwood?
###assistant: SELECT away_team FROM table_name_7 WHERE home_team = "collingwood" |
###context:CREATE TABLE table_name_75 (date VARCHAR, home_team VARCHAR)
###human: What date did Collingwood play as the home team?
###assistant: SELECT date FROM table_name_75 WHERE home_team = "collingwood" |
###context:CREATE TABLE table_name_31 (year_of_disaffiliation INTEGER, station VARCHAR, year_of_affiliation VARCHAR)
###human: What is the most recent year of disaffiliation of a CHCH-TV station that affiliated after 2001?
###assistant: SELECT MAX(year_of_disaffiliation) FROM table_name_31 WHERE station = "chch-tv" AND year_of_affiliation > 2001 |
###context:CREATE TABLE table_name_74 (year_of_disaffiliation INTEGER, city_of_license_market VARCHAR)
###human: What is the earliest year of disaffiliation of a CHCH-TV station, licensed in Hamilton, Ontario?
###assistant: SELECT MIN(year_of_disaffiliation) FROM table_name_74 WHERE city_of_license_market = "hamilton, ontario" |
###context:CREATE TABLE table_name_29 (bronze INTEGER, nation VARCHAR, silver VARCHAR)
###human: How many bronze medals did west germany win when they had less than 2 silver medals?
###assistant: SELECT SUM(bronze) FROM table_name_29 WHERE nation = "west germany" AND silver < 2 |
###context:CREATE TABLE table_name_70 (bronze INTEGER, total VARCHAR, gold VARCHAR)
###human: How many bronze medals were won when the total was larger than 2 and the more than 2 gold medals were won?
###assistant: SELECT SUM(bronze) FROM table_name_70 WHERE total > 2 AND gold > 2 |
###context:CREATE TABLE table_name_62 (gold INTEGER, bronze INTEGER)
###human: How many gold medals were won when more than 2 bronze medals were won?
###assistant: SELECT SUM(gold) FROM table_name_62 WHERE bronze > 2 |
###context:CREATE TABLE table_name_18 (pl_gp INTEGER, pick__number VARCHAR, rd__number VARCHAR)
###human: What was the PI GP fpr pick# 235 for Rd# larger than 12?
###assistant: SELECT MIN(pl_gp) FROM table_name_18 WHERE pick__number = 235 AND rd__number > 12 |
###context:CREATE TABLE table_name_89 (crowd INTEGER, away_team VARCHAR)
###human: What was the largest crowd when South Melbourne was the away team?
###assistant: SELECT MAX(crowd) FROM table_name_89 WHERE away_team = "south melbourne" |
###context:CREATE TABLE table_name_53 (home_team VARCHAR)
###human: What is richmond's scores when they are the home team?
###assistant: SELECT home_team AS score FROM table_name_53 WHERE home_team = "richmond" |
###context:CREATE TABLE table_name_32 (away_team VARCHAR)
###human: What is south melbourne's scores when they are the away team?
###assistant: SELECT away_team AS score FROM table_name_32 WHERE away_team = "south melbourne" |
###context:CREATE TABLE table_name_1 (date VARCHAR, venue VARCHAR)
###human: What dates were the matches at windy hill?
###assistant: SELECT date FROM table_name_1 WHERE venue = "windy hill" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.