output
stringlengths
18
557
instruction
stringlengths
22
540
SELECT event FROM table_name_26 WHERE championship = "nascar featherlite modified series"
CREATE TABLE table_name_26 (event VARCHAR, championship VARCHAR), What race even has NASCAR Featherlite Modified Series as the championship?
SELECT session FROM table_name_41 WHERE circuit = "milwaukee mile"
CREATE TABLE table_name_41 (session VARCHAR, circuit VARCHAR), The Milwaukee Mile circuit has what type of session?
SELECT circuit FROM table_name_16 WHERE championship = "2001 nascar winston cup series"
CREATE TABLE table_name_16 (circuit VARCHAR, championship VARCHAR), The 2001 NASCAR Winston Cup Series championship has what has a circuit?
SELECT semifinalists FROM table_name_23 WHERE tournament = "stockholm"
CREATE TABLE table_name_23 (semifinalists VARCHAR, tournament VARCHAR), Which Semifinalist has a Tournament of stockholm?
SELECT tournament FROM table_name_33 WHERE winner_and_score = "goran ivanišević 6–4, 6–2, 7–6(2)"
CREATE TABLE table_name_33 (tournament VARCHAR, winner_and_score VARCHAR), Which Tournament has a Winner and score of goran ivanišević 6–4, 6–2, 7–6(2)?
SELECT finalist FROM table_name_17 WHERE week = "may 3"
CREATE TABLE table_name_17 (finalist VARCHAR, week VARCHAR), Which Finalist has a Week of may 3?
SELECT surface FROM table_name_95 WHERE week = "march 1"
CREATE TABLE table_name_95 (surface VARCHAR, week VARCHAR), Which Surface has a Week of march 1?
SELECT semifinalists FROM table_name_28 WHERE tournament = "rome"
CREATE TABLE table_name_28 (semifinalists VARCHAR, tournament VARCHAR), Which Semifinalists have a Tournament of rome?
SELECT surface FROM table_name_98 WHERE semifinalists = "stefan edberg thomas muster"
CREATE TABLE table_name_98 (surface VARCHAR, semifinalists VARCHAR), Which Surface has a Semifinalist of stefan edberg thomas muster?
SELECT drawn FROM table_name_78 WHERE played = "20" AND club = "rhigos rfc"
CREATE TABLE table_name_78 (drawn VARCHAR, played VARCHAR, club VARCHAR), Which Drawn has a Played of 20, and a Club of rhigos rfc?
SELECT points_for FROM table_name_33 WHERE losing_bonus = "2" AND club = "bridgend sports rfc"
CREATE TABLE table_name_33 (points_for VARCHAR, losing_bonus VARCHAR, club VARCHAR), Which Points for has a Losing bonus of 2, and a Club of bridgend sports rfc?
SELECT points_against FROM table_name_97 WHERE "lost" = "lost"
CREATE TABLE table_name_97 (points_against VARCHAR), Which Points against has a Lost of lost?
SELECT points FROM table_name_34 WHERE points_for = "381"
CREATE TABLE table_name_34 (points VARCHAR, points_for VARCHAR), Which Points has a Points for of 381?
SELECT tries_against FROM table_name_7 WHERE points_for = "564"
CREATE TABLE table_name_7 (tries_against VARCHAR, points_for VARCHAR), Which Tries against has Points for of 564?
SELECT club FROM table_name_11 WHERE drawn = "0" AND points = "26"
CREATE TABLE table_name_11 (club VARCHAR, drawn VARCHAR, points VARCHAR), Which Club has a Drawn of 0, and Points of 26?
SELECT country FROM table_name_74 WHERE year_s__won = "2004"
CREATE TABLE table_name_74 (country VARCHAR, year_s__won VARCHAR), What country won in 2004?
SELECT COUNT(year) FROM table_name_51 WHERE name = "tour quartier des spectacles" AND floors < 31
CREATE TABLE table_name_51 (year VARCHAR, name VARCHAR, floors VARCHAR), How many years have a Name of tour quartier des spectacles, and Floors smaller than 31?
SELECT date FROM table_name_16 WHERE away_team = "aldershot"
CREATE TABLE table_name_16 (date VARCHAR, away_team VARCHAR), what is the date that the away team is aldershot?
SELECT home_team FROM table_name_12 WHERE away_team = "bolton wanderers"
CREATE TABLE table_name_12 (home_team VARCHAR, away_team VARCHAR), who is the home team when the away team is bolton wanderers?
SELECT MAX(assists) FROM table_name_30 WHERE name = "juan ignacio sánchez"
CREATE TABLE table_name_30 (assists INTEGER, name VARCHAR), What's the largest amount of assists juan ignacio sánchez ever had?
SELECT name FROM table_name_20 WHERE games > 37 AND assists = 202
CREATE TABLE table_name_20 (name VARCHAR, games VARCHAR, assists VARCHAR), Who played over 37 games and had 202 assists?
SELECT MAX(total) FROM table_name_37 WHERE bask = "3" AND base = "3"
CREATE TABLE table_name_37 (total INTEGER, bask VARCHAR, base VARCHAR), What is the highest total value when bask and base are each 3?
SELECT event_2 FROM table_name_32 WHERE air_date = "8 june 2008"
CREATE TABLE table_name_32 (event_2 VARCHAR, air_date VARCHAR), What was the 2nd event aired on 8 June 2008?
SELECT AVG(episode_number) FROM table_name_45 WHERE event_4 = "the wall" AND event_3 = "sumo ball"
CREATE TABLE table_name_45 (episode_number INTEGER, event_4 VARCHAR, event_3 VARCHAR), What episode had sumo ball for event 3 and the wall for event 4?
SELECT MIN(episode_number) FROM table_name_97 WHERE air_date = "8 june 2008"
CREATE TABLE table_name_97 (episode_number INTEGER, air_date VARCHAR), What is the earliest episode aired on 8 June 2008?
SELECT event_4 FROM table_name_10 WHERE event_1 = "gauntlet" AND event_2 = "duel" AND event_3 = "pendulum"
CREATE TABLE table_name_10 (event_4 VARCHAR, event_3 VARCHAR, event_1 VARCHAR, event_2 VARCHAR), What is event 4 when event one was gauntlet, event 2 was duel, and event 3 was pendulum?
SELECT air_date FROM table_name_89 WHERE episode_number < 11 AND event_1 = "atlasphere"
CREATE TABLE table_name_89 (air_date VARCHAR, episode_number VARCHAR, event_1 VARCHAR), What is the air date the had atlasphere for event 1 before episode 11?
SELECT MIN(placement) FROM table_name_38 WHERE final = "23.92"
CREATE TABLE table_name_38 (placement INTEGER, final VARCHAR), What was the lowest placement with a final of 23.92?
SELECT COUNT(rank) FROM table_name_47 WHERE surname = "lindberg"
CREATE TABLE table_name_47 (rank VARCHAR, surname VARCHAR), What did the Surname Lindberg rank?
SELECT MIN(number_of_bearers_2008) FROM table_name_13 WHERE surname = "jansson" AND rank < 13
CREATE TABLE table_name_13 (number_of_bearers_2008 INTEGER, surname VARCHAR, rank VARCHAR), What was the lowest number of 2008 total bearers with a rank less than 13 and the Surname Jansson?
SELECT etymology FROM table_name_58 WHERE rank = 12
CREATE TABLE table_name_58 (etymology VARCHAR, rank VARCHAR), What Etymology ranked 12?
SELECT team FROM table_name_27 WHERE games > 32 AND rebounds = 311
CREATE TABLE table_name_27 (team VARCHAR, games VARCHAR, rebounds VARCHAR), What team has more than 32 games and 311 rebounds?
SELECT MAX(rank) FROM table_name_52 WHERE team = "akasvayu girona" AND rebounds < 311
CREATE TABLE table_name_52 (rank INTEGER, team VARCHAR, rebounds VARCHAR), What is the highest rank team akasvayu girona had with less than 311 rebounds?
SELECT SUM(games) FROM table_name_27 WHERE team = "iurbentia bilbao" AND rebounds > 212
CREATE TABLE table_name_27 (games INTEGER, team VARCHAR, rebounds VARCHAR), How many games did team iurbentia bilbao have with rebounds higher than 212?
SELECT MIN(games) FROM table_name_4 WHERE rank > 1 AND rebounds > 212
CREATE TABLE table_name_4 (games INTEGER, rank VARCHAR, rebounds VARCHAR), How few games are there for a rank more than 1 and more than 212 rebounds?
SELECT date FROM table_name_21 WHERE label = "chrysalis records"
CREATE TABLE table_name_21 (date VARCHAR, label VARCHAR), On what date is the Chrysalis Records label.?
SELECT date FROM table_name_81 WHERE label = "chrysalis, island records"
CREATE TABLE table_name_81 (date VARCHAR, label VARCHAR), What is the date of the Chrysalis, Island Records label?
SELECT date FROM table_name_97 WHERE format = "ed remaster cd"
CREATE TABLE table_name_97 (date VARCHAR, format VARCHAR), On what date was the format of ed remaster cd?
SELECT region FROM table_name_85 WHERE catalog = "ilps 9153"
CREATE TABLE table_name_85 (region VARCHAR, catalog VARCHAR), The Catalog of ilps 9153 is from what region?
SELECT label FROM table_name_93 WHERE region = "spain"
CREATE TABLE table_name_93 (label VARCHAR, region VARCHAR), What label is from the Region of Spain?
SELECT MAX(year) FROM table_name_35 WHERE venue = "berlin, germany"
CREATE TABLE table_name_35 (year INTEGER, venue VARCHAR), what is the latest year when the venue is berlin, germany?
SELECT COUNT(year) FROM table_name_36 WHERE notes = "5000 m" AND competition = "world junior championships in athletics"
CREATE TABLE table_name_36 (year VARCHAR, notes VARCHAR, competition VARCHAR), what is the year when the notes is 5000 m and the competition is world junior championships in athletics?
SELECT high_assists FROM table_name_53 WHERE game = 72
CREATE TABLE table_name_53 (high_assists VARCHAR, game VARCHAR), Who has the highest assists in game 72?
SELECT record FROM table_name_38 WHERE date = "march 21"
CREATE TABLE table_name_38 (record VARCHAR, date VARCHAR), What is the record of the game on March 21?
SELECT season FROM table_name_12 WHERE episode_count > 5 AND time_length = "159 minutes"
CREATE TABLE table_name_12 (season VARCHAR, episode_count VARCHAR, time_length VARCHAR), Which season has more than 5 episodes each 159 minutes in length?
SELECT release_date FROM table_name_22 WHERE dvd_title = "ben 10: alien force volume 9"
CREATE TABLE table_name_22 (release_date VARCHAR, dvd_title VARCHAR), What is the release date for Ben 10: Alien Force Volume 9 on DVD?
SELECT episode_count FROM table_name_90 WHERE dvd_title = "ben 10: alien force volume 8"
CREATE TABLE table_name_90 (episode_count VARCHAR, dvd_title VARCHAR), What the episode count for Ben 10: Alien Force Volume 8 on DVD?
SELECT dvd_title FROM table_name_5 WHERE aspect_ratio = "16:9" AND release_date = "november 17, 2009"
CREATE TABLE table_name_5 (dvd_title VARCHAR, aspect_ratio VARCHAR, release_date VARCHAR), What title was release November 17, 2009 in a 16:9 aspect ratio?
SELECT aspect_ratio FROM table_name_56 WHERE release_date = "september 1, 2009"
CREATE TABLE table_name_56 (aspect_ratio VARCHAR, release_date VARCHAR), What is the aspect ratio for the September 1, 2009 release?
SELECT network FROM table_name_12 WHERE year > 2011
CREATE TABLE table_name_12 (network VARCHAR, year INTEGER), Which network broadcasted the cup after 2011?
SELECT sideline_reporters FROM table_name_84 WHERE color_commentator = "john harkes" AND pregame_analysts = "alexi lalas and steve mcmanaman"
CREATE TABLE table_name_84 (sideline_reporters VARCHAR, color_commentator VARCHAR, pregame_analysts VARCHAR), When John Harkes was the color commentator, and Alexi Lalas and Steve McManaman were the pregame analysts, who were the sideline reporters?
SELECT pregame_analysts FROM table_name_74 WHERE color_commentator = "taylor twellman" AND network = "tsn2"
CREATE TABLE table_name_74 (pregame_analysts VARCHAR, color_commentator VARCHAR, network VARCHAR), Who does pregame analysts for TSN2 network when Taylor Twellman is the color commentator?
SELECT high_assists FROM table_name_60 WHERE game < 16
CREATE TABLE table_name_60 (high_assists VARCHAR, game INTEGER), With the game that was less than 16 what was the high assists?
SELECT record FROM table_name_82 WHERE date = "december 25"
CREATE TABLE table_name_82 (record VARCHAR, date VARCHAR), On December 25, what was the record?
SELECT length FROM table_name_33 WHERE location = "taylorville, illinois"
CREATE TABLE table_name_33 (length VARCHAR, location VARCHAR), What is the length of the track located in Taylorville, Illinois?
SELECT sanction FROM table_name_5 WHERE location = "nashville, illinois"
CREATE TABLE table_name_5 (sanction VARCHAR, location VARCHAR), What was the sanction of the event at Nashville, Illinois?
SELECT program FROM table_name_44 WHERE track_name = "south fork dirt riders"
CREATE TABLE table_name_44 (program VARCHAR, track_name VARCHAR), What programs are there for the South Fork Dirt Riders track?
SELECT points FROM table_name_58 WHERE club = "newport rfc"
CREATE TABLE table_name_58 (points VARCHAR, club VARCHAR), How many points did Newport RFC get?
SELECT club FROM table_name_90 WHERE lost = "15"
CREATE TABLE table_name_90 (club VARCHAR, lost VARCHAR), What club had a loss of 15?
SELECT points_difference FROM table_name_37 WHERE points_for = "554"
CREATE TABLE table_name_37 (points_difference VARCHAR, points_for VARCHAR), When there were 554 points, what was the point difference?
SELECT points_difference FROM table_name_34 WHERE points_against = "767"
CREATE TABLE table_name_34 (points_difference VARCHAR, points_against VARCHAR), When there were 767 points, what was the point difference?
SELECT club FROM table_name_87 WHERE points_difference = "-24"
CREATE TABLE table_name_87 (club VARCHAR, points_difference VARCHAR), What club had a points difference of -24?
SELECT outcome FROM table_name_55 WHERE opponent = "jade curtis"
CREATE TABLE table_name_55 (outcome VARCHAR, opponent VARCHAR), What is the outcome of the match with opponent Jade Curtis?
SELECT outcome FROM table_name_27 WHERE surface = "carpet"
CREATE TABLE table_name_27 (outcome VARCHAR, surface VARCHAR), What is the outcome of the match played on carpet surface?
SELECT tournament FROM table_name_59 WHERE opponent = "jade curtis"
CREATE TABLE table_name_59 (tournament VARCHAR, opponent VARCHAR), What is the name of the Tournament with Jade Curtis as the opponent?
SELECT player FROM table_name_79 WHERE runs = "124"
CREATE TABLE table_name_79 (player VARCHAR, runs VARCHAR), Who has Runs of 124?
SELECT runs FROM table_name_47 WHERE venue = "adelaide oval , adelaide"
CREATE TABLE table_name_47 (runs VARCHAR, venue VARCHAR), Name the Runs which has Venue of adelaide oval , adelaide?
SELECT venue FROM table_name_61 WHERE player = "michael di venuto" AND season = "2000/01"
CREATE TABLE table_name_61 (venue VARCHAR, player VARCHAR, season VARCHAR), Which Venue has michael di venuto on Season of 2000/01?
SELECT runs FROM table_name_26 WHERE venue = "bellerive oval , hobart" AND season = "2004/05" AND rank = "5"
CREATE TABLE table_name_26 (runs VARCHAR, rank VARCHAR, venue VARCHAR, season VARCHAR), Name the Runs has a Venue of bellerive oval , hobart, and a Season of 2004/05, and a Rank of 5?
SELECT runs FROM table_name_2 WHERE venue = "bellerive oval , hobart" AND player = "travis birt"
CREATE TABLE table_name_2 (runs VARCHAR, venue VARCHAR, player VARCHAR), Name the Runs that has a Venue of bellerive oval , hobart, and a Player of travis birt?
SELECT front_side_bus FROM table_name_95 WHERE frequency = "733mhz"
CREATE TABLE table_name_95 (front_side_bus VARCHAR, frequency VARCHAR), What is the front-side bus for the processor whose frequency is 733MHz?
SELECT l2_cache FROM table_name_93 WHERE frequency = "750mhz"
CREATE TABLE table_name_93 (l2_cache VARCHAR, frequency VARCHAR), What is the L2 cache for the processor with a 750MHz frequency?
SELECT multiplier FROM table_name_20 WHERE frequency = "733mhz"
CREATE TABLE table_name_20 (multiplier VARCHAR, frequency VARCHAR), What is the multiplier for the processor with a frequency of 733MHz?
SELECT MIN(height__m_) FROM table_name_26 WHERE prominence__m_ = 2 OFFSET 349
CREATE TABLE table_name_26 (height__m_ INTEGER, prominence__m_ VARCHAR), What is the smallest height with a prominence of 2,349?
SELECT result FROM table_name_41 WHERE week < 6 AND opponent = "cleveland browns"
CREATE TABLE table_name_41 (result VARCHAR, week VARCHAR, opponent VARCHAR), What was the result of the game after week 6 against the cleveland browns?
SELECT record FROM table_name_33 WHERE date = "december 5, 1999"
CREATE TABLE table_name_33 (record VARCHAR, date VARCHAR), What was the Ravens' record on December 5, 1999?
SELECT date FROM table_name_97 WHERE opponent = "buffalo bills"
CREATE TABLE table_name_97 (date VARCHAR, opponent VARCHAR), What date did the Ravens play the buffalo bills?
SELECT date FROM table_name_89 WHERE week = 10
CREATE TABLE table_name_89 (date VARCHAR, week VARCHAR), What date was the week 10 game?
SELECT type FROM table_name_51 WHERE location = "los angeles, california"
CREATE TABLE table_name_51 (type VARCHAR, location VARCHAR), What was the school type for Los Angeles, California?
SELECT dates FROM table_name_89 WHERE location = "honolulu, hawaii" AND grade = "kindergarten"
CREATE TABLE table_name_89 (dates VARCHAR, location VARCHAR, grade VARCHAR), What were the dates for Honolulu, Hawaii in Kindergarten?
SELECT MAX(pick) FROM table_name_46 WHERE round > 6 AND overall > 216
CREATE TABLE table_name_46 (pick INTEGER, round VARCHAR, overall VARCHAR), What is the highest Pick that has a round greater than 6 and an overall greater than 216?
SELECT MAX(round) FROM table_name_36 WHERE overall = 143 AND pick > 6
CREATE TABLE table_name_36 (round INTEGER, overall VARCHAR, pick VARCHAR), What is the highest round that has an overall of 143 and a pick greater than 6?
SELECT session FROM table_name_70 WHERE circuit = "lowes motor speedway"
CREATE TABLE table_name_70 (session VARCHAR, circuit VARCHAR), What was the session at the circuit of lowes motor speedway?
SELECT session FROM table_name_96 WHERE discipline = "open wheel"
CREATE TABLE table_name_96 (session VARCHAR, discipline VARCHAR), Which session had a discipline of open wheel?
SELECT championship FROM table_name_39 WHERE circuit = "le mans"
CREATE TABLE table_name_39 (championship VARCHAR, circuit VARCHAR), Which championship had a Circuit of le mans?
SELECT discipline FROM table_name_17 WHERE championship = "international championship for makes"
CREATE TABLE table_name_17 (discipline VARCHAR, championship VARCHAR), What was the discipline for the Championship of international championship for makes?
SELECT session FROM table_name_95 WHERE circuit = "autodrom most"
CREATE TABLE table_name_95 (session VARCHAR, circuit VARCHAR), What was the session at the circuit of autodrom most?
SELECT discipline FROM table_name_59 WHERE championship = "euroboss"
CREATE TABLE table_name_59 (discipline VARCHAR, championship VARCHAR), What was the discipline for the euroboss championship?
SELECT MIN(played) FROM table_name_76 WHERE position > 9
CREATE TABLE table_name_76 (played INTEGER, position INTEGER), what is the lowest played when the position is more than 9?
SELECT AVG(points) FROM table_name_55 WHERE played < 16
CREATE TABLE table_name_55 (points INTEGER, played INTEGER), what is the average points when played is less than 16?
SELECT MAX(points) FROM table_name_39 WHERE position > 6 AND lost < 12 AND drawn < 1
CREATE TABLE table_name_39 (points INTEGER, drawn VARCHAR, position VARCHAR, lost VARCHAR), what is the highest points when position is higher than 6, lost is less than 12 and drawn is less than 1?
SELECT SUM(points) FROM table_name_18 WHERE lost < 10 AND name = "vfl denklingen" AND position > 2
CREATE TABLE table_name_18 (points INTEGER, position VARCHAR, lost VARCHAR, name VARCHAR), what is the sum of points when lost is less than 10, name is vfl denklingen and position is higher than 2?
SELECT COUNT(worst_score) FROM table_name_72 WHERE best_score = 8.8 AND average > 6.2
CREATE TABLE table_name_72 (worst_score VARCHAR, best_score VARCHAR, average VARCHAR), WHAT IS THE WORST SCORE WHEN THE BEST SCORE WAS 8.8 AND AVERAGE WAS LARGER THAN 6.2?
SELECT COUNT(average) FROM table_name_53 WHERE place < 1
CREATE TABLE table_name_53 (average VARCHAR, place INTEGER), WHAT IS THE TOTAL AVERAGE WITH A PLACE SMALLER THAN 1?
SELECT MAX(place) FROM table_name_3 WHERE best_score > 10
CREATE TABLE table_name_3 (place INTEGER, best_score INTEGER), WHAT IS THE HIGHEST PLACE AND BEST SCORE BIGGER THAN 10?
SELECT high_points FROM table_name_32 WHERE date = "january 31"
CREATE TABLE table_name_32 (high_points VARCHAR, date VARCHAR), Can you tell me the High points that has the Date of january 31?
SELECT score FROM table_name_33 WHERE game = 40
CREATE TABLE table_name_33 (score VARCHAR, game VARCHAR), Can you tell me the Score that has the Game of 40?
SELECT score FROM table_name_42 WHERE player = "lee trevino"
CREATE TABLE table_name_42 (score VARCHAR, player VARCHAR), What was Lee Trevino's score?
SELECT MAX(grid) FROM table_name_77 WHERE driver = "patrick carpentier"
CREATE TABLE table_name_77 (grid INTEGER, driver VARCHAR), What was the highest grid for Patrick Carpentier?
SELECT MIN(laps) FROM table_name_16 WHERE points = 29 AND grid < 1
CREATE TABLE table_name_16 (laps INTEGER, points VARCHAR, grid VARCHAR), Who has the lowest laps with 29 points on 1 grid?