training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_81 (security_forces VARCHAR, civilians VARCHAR)
###human: Name the security forces with civilians being 67
###assistant: SELECT security_forces FROM table_name_81 WHERE civilians = "67" |
###context:CREATE TABLE table_name_82 (security_forces VARCHAR, year VARCHAR)
###human: Name the security forces for 2009
###assistant: SELECT security_forces FROM table_name_82 WHERE year = "2009" |
###context:CREATE TABLE table_name_85 (tyre VARCHAR, chassis VARCHAR)
###human: What tyre has a chassis of p57 p61?
###assistant: SELECT tyre FROM table_name_85 WHERE chassis = "p57 p61" |
###context:CREATE TABLE table_name_94 (laps INTEGER, grid VARCHAR)
###human: what is the highest laps when the grid is 1?
###assistant: SELECT MAX(laps) FROM table_name_94 WHERE grid = 1 |
###context:CREATE TABLE table_name_92 (total VARCHAR, swimming_time__pts_ VARCHAR)
###human: How many athletes had a Swimming Time (pts) of 2:20.93 (1232)?
###assistant: SELECT COUNT(total) FROM table_name_92 WHERE swimming_time__pts_ = "2:20.93 (1232)" |
###context:CREATE TABLE table_name_83 (riding_penalties__pts_ VARCHAR, swimming_time__pts_ VARCHAR)
###human: What is the riding penaltie (pts) for the athlete that has a Swimming Time (pts) of 2:18.16 (1264)?
###assistant: SELECT riding_penalties__pts_ FROM table_name_83 WHERE swimming_time__pts_ = "2:18.16 (1264)" |
###context:CREATE TABLE table_name_18 (owner_s_ VARCHAR, date VARCHAR, description VARCHAR)
###human: Which owner has a description of Mark 1 pos and is dated 1956?
###assistant: SELECT owner_s_ FROM table_name_18 WHERE date = 1956 AND description = "mark 1 pos" |
###context:CREATE TABLE table_name_30 (owner_s_ VARCHAR, date VARCHAR, description VARCHAR)
###human: Which owner has a description of Mark 1 CK and is dated 1953?
###assistant: SELECT owner_s_ FROM table_name_30 WHERE date = 1953 AND description = "mark 1 ck" |
###context:CREATE TABLE table_name_97 (name_athlete VARCHAR, semi VARCHAR)
###human: Who was the athlete who had SEMI of 1:43.79?
###assistant: SELECT name_athlete FROM table_name_97 WHERE semi = "1:43.79" |
###context:CREATE TABLE table_name_1 (final VARCHAR, lane VARCHAR)
###human: What were the final time for the swimmer on lane 4?
###assistant: SELECT final FROM table_name_1 WHERE lane = 4 |
###context:CREATE TABLE table_name_21 (final_score VARCHAR, stadium VARCHAR)
###human: What is the final score of the game at lambeau field?
###assistant: SELECT final_score FROM table_name_21 WHERE stadium = "lambeau field" |
###context:CREATE TABLE table_name_73 (rank INTEGER, candidate_name VARCHAR, votes VARCHAR)
###human: What rank is aliyya qadi with less than 1421 votes?
###assistant: SELECT MIN(rank) FROM table_name_73 WHERE candidate_name = "aliyya qadi" AND votes < 1421 |
###context:CREATE TABLE table_name_61 (candidate_name VARCHAR, list VARCHAR, gender VARCHAR, votes VARCHAR, rank VARCHAR)
###human: Which candidate has more than 279 votes, rank less than 50, is ♀ and al-ahd?
###assistant: SELECT candidate_name FROM table_name_61 WHERE votes > 279 AND rank < 50 AND gender = "♀" AND list = "al-ahd" |
###context:CREATE TABLE table_name_48 (year INTEGER, category VARCHAR, nominee VARCHAR)
###human: What is the first year that the Favorite Male Replacement category had Ben Vereen as a nominee?
###assistant: SELECT MIN(year) FROM table_name_48 WHERE category = "favorite male replacement" AND nominee = "ben vereen" |
###context:CREATE TABLE table_name_52 (award_ceremony VARCHAR, category VARCHAR, nominee VARCHAR)
###human: What year was Kristin Chenoweth nominated in the category of outstanding actress in a musical?
###assistant: SELECT award_ceremony FROM table_name_52 WHERE category = "outstanding actress in a musical" AND nominee = "kristin chenoweth" |
###context:CREATE TABLE table_name_87 (year INTEGER, nominee VARCHAR, result VARCHAR, category VARCHAR)
###human: What year was Aaron Tveit nominated in the Favorite Male Replacement category?
###assistant: SELECT AVG(year) FROM table_name_87 WHERE result = "nominated" AND category = "favorite male replacement" AND nominee = "aaron tveit" |
###context:CREATE TABLE table_name_39 (rank INTEGER, placings VARCHAR)
###human: Tell me the sum of rank for placings of 58
###assistant: SELECT SUM(rank) FROM table_name_39 WHERE placings = 58 |
###context:CREATE TABLE table_name_30 (placings INTEGER, nation VARCHAR, rank VARCHAR)
###human: Tell me the lowest placings for United Kingdom and rank less than 13
###assistant: SELECT MIN(placings) FROM table_name_30 WHERE nation = "united kingdom" AND rank < 13 |
###context:CREATE TABLE table_name_75 (rank INTEGER, placings VARCHAR, points VARCHAR)
###human: I want to know the highest rank with placings more than 123 and points greater than 88.06
###assistant: SELECT MAX(rank) FROM table_name_75 WHERE placings > 123 AND points > 88.06 |
###context:CREATE TABLE table_name_65 (driver VARCHAR, entrant VARCHAR)
###human: Who is the drive for an Entrant of Scuderia Ambrosiana?
###assistant: SELECT driver FROM table_name_65 WHERE entrant = "scuderia ambrosiana" |
###context:CREATE TABLE table_name_72 (rounds VARCHAR, entrant VARCHAR, driver VARCHAR)
###human: Which of the Rounds has an Entrant of automobiles Talbot-Darracq, and Pierre Levegh as the driver?
###assistant: SELECT rounds FROM table_name_72 WHERE entrant = "automobiles talbot-darracq" AND driver = "pierre levegh" |
###context:CREATE TABLE table_name_80 (driver VARCHAR, entrant VARCHAR)
###human: Who is the driver for the Entract of Enrico Platé?
###assistant: SELECT driver FROM table_name_80 WHERE entrant = "enrico platé" |
###context:CREATE TABLE table_name_79 (entrant VARCHAR, driver VARCHAR)
###human: Which of the entrants had Luigi Fagioli as a driver?
###assistant: SELECT entrant FROM table_name_79 WHERE driver = "luigi fagioli" |
###context:CREATE TABLE table_name_94 (driver VARCHAR, constructor VARCHAR, entrant VARCHAR)
###human: Who is the driver whose Constructor was Era, and whose entrant was T.A.S.O. Mathieson?
###assistant: SELECT driver FROM table_name_94 WHERE constructor = "era" AND entrant = "t.a.s.o. mathieson" |
###context:CREATE TABLE table_name_15 (chassis VARCHAR, rounds VARCHAR, entrant VARCHAR)
###human: Which chassis had Rounds of 7, and an Entrant of Ecurie Rosier?
###assistant: SELECT chassis FROM table_name_15 WHERE rounds = "7" AND entrant = "ecurie rosier" |
###context:CREATE TABLE table_name_79 (winning_constructor VARCHAR, winning_driver VARCHAR)
###human: Who is the winner constructor with driver riccardo patrese?
###assistant: SELECT winning_constructor FROM table_name_79 WHERE winning_driver = "riccardo patrese" |
###context:CREATE TABLE table_name_42 (round INTEGER, date VARCHAR)
###human: What is the highest round on 5 april?
###assistant: SELECT MAX(round) FROM table_name_42 WHERE date = "5 april" |
###context:CREATE TABLE table_name_37 (date VARCHAR, location VARCHAR)
###human: Which date was hermanos rodríguez the location?
###assistant: SELECT date FROM table_name_37 WHERE location = "hermanos rodríguez" |
###context:CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR)
###human: Name the record for may 3
###assistant: SELECT record FROM table_name_92 WHERE date = "may 3" |
###context:CREATE TABLE table_name_68 (attendance VARCHAR, date VARCHAR)
###human: Name the total number in attendance for may 1
###assistant: SELECT COUNT(attendance) FROM table_name_68 WHERE date = "may 1" |
###context:CREATE TABLE table_name_20 (loss VARCHAR, date VARCHAR)
###human: Name the loss on may 29
###assistant: SELECT loss FROM table_name_20 WHERE date = "may 29" |
###context:CREATE TABLE table_name_62 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR, top_5 VARCHAR)
###human: How many cuts were made when there weren't any wins but had a top-5 of 1 and a top 10 larger than 4?
###assistant: SELECT SUM(cuts_made) FROM table_name_62 WHERE wins < 1 AND top_5 = 1 AND top_10 > 4 |
###context:CREATE TABLE table_name_36 (college VARCHAR, player VARCHAR)
###human: Which college has a Player of shabazz muhammad?
###assistant: SELECT college FROM table_name_36 WHERE player = "shabazz muhammad" |
###context:CREATE TABLE table_name_11 (height VARCHAR, player VARCHAR)
###human: How tall is nerlens noel?
###assistant: SELECT height FROM table_name_11 WHERE player = "nerlens noel" |
###context:CREATE TABLE table_name_47 (player VARCHAR, hometown VARCHAR)
###human: Who is from flower mound, tx?
###assistant: SELECT player FROM table_name_47 WHERE hometown = "flower mound, tx" |
###context:CREATE TABLE table_name_58 (hometown VARCHAR, player VARCHAR)
###human: Where is shabazz muhammad from?
###assistant: SELECT hometown FROM table_name_58 WHERE player = "shabazz muhammad" |
###context:CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR)
###human: What was the opponent for july 21?
###assistant: SELECT opponent FROM table_name_35 WHERE date = "july 21" |
###context:CREATE TABLE table_name_95 (record VARCHAR, date VARCHAR)
###human: What was the record on july 24?
###assistant: SELECT record FROM table_name_95 WHERE date = "july 24" |
###context:CREATE TABLE table_name_77 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)
###human: Who constructed the car with a grid under 15, 77 laps, and a Time/Retired of + 0.771?
###assistant: SELECT constructor FROM table_name_77 WHERE grid < 15 AND laps = 77 AND time_retired = "+ 0.771" |
###context:CREATE TABLE table_name_29 (grid INTEGER, laps VARCHAR, driver VARCHAR)
###human: What is the average grid for damon hill with over 74 laps?
###assistant: SELECT AVG(grid) FROM table_name_29 WHERE laps > 74 AND driver = "damon hill" |
###context:CREATE TABLE table_name_81 (pos VARCHAR, school_club_team VARCHAR)
###human: Which position has a School/club team of jacksonville?
###assistant: SELECT pos FROM table_name_81 WHERE school_club_team = "jacksonville" |
###context:CREATE TABLE table_name_21 (round INTEGER, pick VARCHAR)
###human: How many rounds have a Pick of 13?
###assistant: SELECT SUM(round) FROM table_name_21 WHERE pick = 13 |
###context:CREATE TABLE table_name_91 (round INTEGER, school_club_team VARCHAR)
###human: How many rounds have School/club team of pan american?
###assistant: SELECT SUM(round) FROM table_name_91 WHERE school_club_team = "pan american" |
###context:CREATE TABLE table_name_41 (chassis VARCHAR, points VARCHAR)
###human: What is the chassis when there is 25 points?
###assistant: SELECT chassis FROM table_name_41 WHERE points = "25" |
###context:CREATE TABLE table_name_3 (points VARCHAR, year VARCHAR, chassis VARCHAR)
###human: How many points were there before 1979 with a ferrari 312b2 chassis?
###assistant: SELECT points FROM table_name_3 WHERE year < 1979 AND chassis = "ferrari 312b2" |
###context:CREATE TABLE table_name_3 (year VARCHAR, points VARCHAR)
###human: What year were there 29 (32) points?
###assistant: SELECT year FROM table_name_3 WHERE points = "29 (32)" |
###context:CREATE TABLE table_name_87 (result VARCHAR, round VARCHAR)
###human: What result occurs when the round is 4 leg 2?
###assistant: SELECT result FROM table_name_87 WHERE round = "4 leg 2" |
###context:CREATE TABLE table_name_98 (home_team VARCHAR)
###human: What did fitzroy score at their home game?
###assistant: SELECT home_team AS score FROM table_name_98 WHERE home_team = "fitzroy" |
###context:CREATE TABLE table_name_16 (away_team VARCHAR, venue VARCHAR)
###human: Which away team played at western oval?
###assistant: SELECT away_team FROM table_name_16 WHERE venue = "western oval" |
###context:CREATE TABLE table_name_83 (surface VARCHAR, partner VARCHAR)
###human: Which surface had Yew-Ming Si as a partner?
###assistant: SELECT surface FROM table_name_83 WHERE partner = "yew-ming si" |
###context:CREATE TABLE table_name_73 (result VARCHAR, rank VARCHAR)
###human: What was the result of rank 1?
###assistant: SELECT result FROM table_name_73 WHERE rank = 1 |
###context:CREATE TABLE table_name_70 (type VARCHAR, date VARCHAR)
###human: What type has a date of 1 june?
###assistant: SELECT type FROM table_name_70 WHERE date = "1 june" |
###context:CREATE TABLE table_name_16 (date VARCHAR, type VARCHAR)
###human: What was the date with a hilly stage?
###assistant: SELECT date FROM table_name_16 WHERE type = "hilly stage" |
###context:CREATE TABLE table_name_21 (winner VARCHAR, date VARCHAR)
###human: What is the name of the winner on 18 may?
###assistant: SELECT winner FROM table_name_21 WHERE date = "18 may" |
###context:CREATE TABLE table_name_13 (date VARCHAR, course VARCHAR)
###human: What date was moena to aprica the course?
###assistant: SELECT date FROM table_name_13 WHERE course = "moena to aprica" |
###context:CREATE TABLE table_name_35 (winner VARCHAR, type VARCHAR, course VARCHAR)
###human: What is the name of the winner with a type of plain stage and a Course of nola to sora?
###assistant: SELECT winner FROM table_name_35 WHERE type = "plain stage" AND course = "nola to sora" |
###context:CREATE TABLE table_name_68 (text_symbol VARCHAR, border VARCHAR, type_of_sign VARCHAR)
###human: Which sign has a red border and a warning sign?
###assistant: SELECT text_symbol FROM table_name_68 WHERE border = "red" AND type_of_sign = "warning" |
###context:CREATE TABLE table_name_86 (border VARCHAR, background_colour VARCHAR, shape VARCHAR)
###human: Which sign had a yellow background and a triangular shape?
###assistant: SELECT border FROM table_name_86 WHERE background_colour = "yellow" AND shape = "triangular" |
###context:CREATE TABLE table_name_42 (text_symbol VARCHAR, border VARCHAR)
###human: Which sign has a red border?
###assistant: SELECT text_symbol FROM table_name_42 WHERE border = "red" |
###context:CREATE TABLE table_name_43 (background_colour VARCHAR, type_of_sign VARCHAR)
###human: Which color is the background of the mandatory instructions?
###assistant: SELECT background_colour FROM table_name_43 WHERE type_of_sign = "mandatory instructions" |
###context:CREATE TABLE table_name_25 (background_colour VARCHAR, border VARCHAR, type_of_sign VARCHAR)
###human: What is the color of the background of the white border and sign of information?
###assistant: SELECT background_colour FROM table_name_25 WHERE border = "white" AND type_of_sign = "information" |
###context:CREATE TABLE table_name_56 (total INTEGER, nation VARCHAR, bronze VARCHAR)
###human: What is the average total of Italy and has a bronze larger than 1?
###assistant: SELECT AVG(total) FROM table_name_56 WHERE nation = "italy" AND bronze > 1 |
###context:CREATE TABLE table_name_8 (gold INTEGER, nation VARCHAR, rank VARCHAR)
###human: What amount of Gold does Russia have and have a rank larger than 1?
###assistant: SELECT SUM(gold) FROM table_name_8 WHERE nation = "russia" AND rank > 1 |
###context:CREATE TABLE table_name_83 (rank INTEGER, total VARCHAR, silver VARCHAR)
###human: What is the sum of the ranks with a total of 1 and silver less than 0.
###assistant: SELECT SUM(rank) FROM table_name_83 WHERE total = 1 AND silver < 0 |
###context:CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR, pick VARCHAR)
###human: Which Player is linebacker and has a pick larger than 28?
###assistant: SELECT player FROM table_name_69 WHERE position = "linebacker" AND pick > 28 |
###context:CREATE TABLE table_name_99 (round INTEGER, player VARCHAR)
###human: What was the lowest round that Melvin Johnson played?
###assistant: SELECT MIN(round) FROM table_name_99 WHERE player = "melvin johnson" |
###context:CREATE TABLE table_name_96 (runner_up VARCHAR, semi_finalist__number1 VARCHAR)
###human: Who was the runner-up at the South Florida Semi-Finalist #1?
###assistant: SELECT runner_up FROM table_name_96 WHERE semi_finalist__number1 = "south florida" |
###context:CREATE TABLE table_name_46 (champion VARCHAR, location VARCHAR, year VARCHAR)
###human: Who was the Champion in Snellville, GA in 2006?
###assistant: SELECT champion FROM table_name_46 WHERE location = "snellville, ga" AND year = "2006" |
###context:CREATE TABLE table_name_53 (champion VARCHAR, runner_up VARCHAR)
###human: Who won when Elon was the runner-up?
###assistant: SELECT champion FROM table_name_53 WHERE runner_up = "elon" |
###context:CREATE TABLE table_name_9 (year VARCHAR, score VARCHAR)
###human: What year saw a score of 8-5?
###assistant: SELECT year FROM table_name_9 WHERE score = "8-5" |
###context:CREATE TABLE table_name_59 (semi_finalist__number2 VARCHAR, year VARCHAR)
###human: Who was the Semi-Finalist #2 in 2007?
###assistant: SELECT semi_finalist__number2 FROM table_name_59 WHERE year = "2007" |
###context:CREATE TABLE table_name_26 (semi_finalist__number2 VARCHAR, year VARCHAR)
###human: Who was the Semi-Finalist #2 in 2001?
###assistant: SELECT semi_finalist__number2 FROM table_name_26 WHERE year = "2001" |
###context:CREATE TABLE table_name_70 (tournament VARCHAR, location VARCHAR)
###human: What tournament is in Arizona?
###assistant: SELECT tournament FROM table_name_70 WHERE location = "arizona" |
###context:CREATE TABLE table_name_60 (away_team VARCHAR, crowd INTEGER)
###human: Which away team had a crowd bigger than 21,000?
###assistant: SELECT away_team FROM table_name_60 WHERE crowd > 21 OFFSET 000 |
###context:CREATE TABLE table_name_88 (rank INTEGER, points VARCHAR, places VARCHAR)
###human: What is the rank for points less than 166.96, and a Places of 166?
###assistant: SELECT AVG(rank) FROM table_name_88 WHERE points < "166".96 AND places = "166" |
###context:CREATE TABLE table_name_21 (rank VARCHAR, points VARCHAR, nation VARCHAR, sp VARCHAR, fs VARCHAR)
###human: What is the rank for more than 120.44 points in East Germany and a SP+FS of 3?
###assistant: SELECT COUNT(rank) FROM table_name_21 WHERE points > 120.44 AND nation = "east germany" AND sp + fs = 3 |
###context:CREATE TABLE table_name_94 (rank VARCHAR, places VARCHAR, sp VARCHAR, fs VARCHAR)
###human: What is the rank when 233 shows for places and SP+FS smaller than 27?
###assistant: SELECT COUNT(rank) FROM table_name_94 WHERE places = "233" AND sp + fs < 27 |
###context:CREATE TABLE table_name_14 (fs VARCHAR, sp INTEGER, name VARCHAR, rank VARCHAR)
###human: What is the average SP+FS for Denise Biellmann, and a Rank larger than 5?
###assistant: SELECT AVG(sp) + fs FROM table_name_14 WHERE name = "denise biellmann" AND rank > 5 |
###context:CREATE TABLE table_name_84 (points INTEGER, nation VARCHAR, places VARCHAR)
###human: What is the number of points for east germany, and a Places of 88?
###assistant: SELECT SUM(points) FROM table_name_84 WHERE nation = "east germany" AND places = "88" |
###context:CREATE TABLE table_name_82 (years VARCHAR, engine VARCHAR)
###human: what is the years for engin 5.7l hemi v8?
###assistant: SELECT years FROM table_name_82 WHERE engine = "5.7l hemi v8" |
###context:CREATE TABLE table_name_51 (years VARCHAR, notes VARCHAR, engine VARCHAR)
###human: what is the years when the notes is laredo, limited, overland and the engine is 5.7l hemi v8?
###assistant: SELECT years FROM table_name_51 WHERE notes = "laredo, limited, overland" AND engine = "5.7l hemi v8" |
###context:CREATE TABLE table_name_69 (torque VARCHAR, notes VARCHAR, engine VARCHAR)
###human: what is the torque when the notes are laredo, limited, overland and the engine is 5.7l hemi v8?
###assistant: SELECT torque FROM table_name_69 WHERE notes = "laredo, limited, overland" AND engine = "5.7l hemi v8" |
###context:CREATE TABLE table_name_21 (driver VARCHAR, constructor VARCHAR, laps VARCHAR)
###human: Who drove the ferrari that went 57 laps?
###assistant: SELECT driver FROM table_name_21 WHERE constructor = "ferrari" AND laps = 57 |
###context:CREATE TABLE table_name_7 (place INTEGER, name VARCHAR, until VARCHAR)
###human: What place did R. Wenzel, who was active after 1934, have?
###assistant: SELECT SUM(place) FROM table_name_7 WHERE name = "r. wenzel" AND until > 1934 |
###context:CREATE TABLE table_name_75 (time VARCHAR, round VARCHAR, opponent VARCHAR)
###human: What's the time for a round of n/a when the opponent is mikhail ilyukhin?
###assistant: SELECT time FROM table_name_75 WHERE round = "n/a" AND opponent = "mikhail ilyukhin" |
###context:CREATE TABLE table_name_54 (pole_position VARCHAR, grand_prix VARCHAR)
###human: What is the pole position of the Portuguese Grand Prix?
###assistant: SELECT pole_position FROM table_name_54 WHERE grand_prix = "portuguese grand prix" |
###context:CREATE TABLE table_name_93 (pole_position VARCHAR, round VARCHAR)
###human: What is the pole position of the grand prix with 1 round?
###assistant: SELECT pole_position FROM table_name_93 WHERE round = 1 |
###context:CREATE TABLE table_name_41 (pole_position VARCHAR, grand_prix VARCHAR)
###human: What is the pole position of the Hungarian Grand Prix?
###assistant: SELECT pole_position FROM table_name_41 WHERE grand_prix = "hungarian grand prix" |
###context:CREATE TABLE table_name_27 (pole_position VARCHAR, grand_prix VARCHAR)
###human: What is the pole position of the Belgian Grand Prix?
###assistant: SELECT pole_position FROM table_name_27 WHERE grand_prix = "belgian grand prix" |
###context:CREATE TABLE table_name_50 (grand_prix VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)
###human: What is the grand prix with Gerhard Berger as the fastest lap and Michael Schumacher as the pole position?
###assistant: SELECT grand_prix FROM table_name_50 WHERE fastest_lap = "gerhard berger" AND pole_position = "michael schumacher" |
###context:CREATE TABLE table_name_55 (declination___j2000__ VARCHAR, right_ascension___j2000__ VARCHAR, constellation VARCHAR, apparent_magnitude VARCHAR)
###human: Tell me the declination for consellaion of ophiuchus and apparent magnitude less than 8.6 with right ascension of 16h47m14.5s
###assistant: SELECT declination___j2000__ FROM table_name_55 WHERE constellation = "ophiuchus" AND apparent_magnitude < 8.6 AND right_ascension___j2000__ = "16h47m14.5s" |
###context:CREATE TABLE table_name_2 (right_ascension___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR, apparent_magnitude VARCHAR)
###human: Tell me the right ascensuon for object type of globular cluster and apparent magnitude of 8.5 and NGC number of 6273
###assistant: SELECT right_ascension___j2000__ FROM table_name_2 WHERE object_type = "globular cluster" AND apparent_magnitude = 8.5 AND ngc_number = 6273 |
###context:CREATE TABLE table_name_4 (date VARCHAR, home_team VARCHAR)
###human: When was the game played where St Kilda was the home team?
###assistant: SELECT date FROM table_name_4 WHERE home_team = "st kilda" |
###context:CREATE TABLE table_name_65 (home_team VARCHAR, away_team VARCHAR)
###human: What was the home team score with an away team of Melbourne?
###assistant: SELECT home_team AS score FROM table_name_65 WHERE away_team = "melbourne" |
###context:CREATE TABLE table_name_56 (away_team VARCHAR, home_team VARCHAR)
###human: Which away team played the home team of Footscray?
###assistant: SELECT away_team FROM table_name_56 WHERE home_team = "footscray" |
###context:CREATE TABLE table_name_43 (age_on_leaving VARCHAR, political_party VARCHAR, left_house VARCHAR)
###human: How old was the conservative party member that left the house in 2001?
###assistant: SELECT age_on_leaving FROM table_name_43 WHERE political_party = "conservative" AND left_house = "2001" |
###context:CREATE TABLE table_name_21 (attendance INTEGER, points VARCHAR, arena VARCHAR)
###human: What was the lowest Attendance for the Staples Center Arena when the Points were over 14?
###assistant: SELECT MIN(attendance) FROM table_name_21 WHERE points > 14 AND arena = "staples center" |
###context:CREATE TABLE table_name_40 (leading_scorer VARCHAR, date VARCHAR)
###human: Name the leading scorer for 12 january 2008
###assistant: SELECT leading_scorer FROM table_name_40 WHERE date = "12 january 2008" |
###context:CREATE TABLE table_name_4 (record VARCHAR, date VARCHAR)
###human: Name the record for 21 january 2008
###assistant: SELECT record FROM table_name_4 WHERE date = "21 january 2008" |
###context:CREATE TABLE table_name_48 (date VARCHAR, away_team VARCHAR)
###human: what is the date when the away team is melbourne?
###assistant: SELECT date FROM table_name_48 WHERE away_team = "melbourne" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.