training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_17 (driver VARCHAR, engine VARCHAR, chassis VARCHAR)
###human: who is the driver with the engine era 1.5 l6 s and the chassis is era b?
###assistant: SELECT driver FROM table_name_17 WHERE engine = "era 1.5 l6 s" AND chassis = "era b" |
###context:CREATE TABLE table_name_75 (constructor VARCHAR, entrant VARCHAR, chassis VARCHAR, tyre VARCHAR, engine VARCHAR)
###human: who is the constructor when the tyre is d, the engine is talbot 23cv 4.5 l6, the chassis is talbot-lago t26c and the entrant is ecurie belge?
###assistant: SELECT constructor FROM table_name_75 WHERE tyre = "d" AND engine = "talbot 23cv 4.5 l6" AND chassis = "talbot-lago t26c" AND entrant = "ecurie belge" |
###context:CREATE TABLE table_name_79 (kk___1 VARCHAR, kk___3 VARCHAR)
###human: What is KK -1 if KK -3 is 1,100?
###assistant: SELECT kk___1 FROM table_name_79 WHERE kk___3 = "1,100" |
###context:CREATE TABLE table_name_38 (kk___5 VARCHAR, kk___3 VARCHAR)
###human: What is KK -5 if KK - 3 is 310?
###assistant: SELECT kk___5 FROM table_name_38 WHERE kk___3 = "310" |
###context:CREATE TABLE table_name_42 (kk___5 VARCHAR, kk___1 VARCHAR)
###human: What is KK - 5 if KK - 1 is 1,067?
###assistant: SELECT kk___5 FROM table_name_42 WHERE kk___1 = "1,067" |
###context:CREATE TABLE table_name_74 (winner VARCHAR, time VARCHAR, jockey VARCHAR)
###human: Who is the Winner with a Time of 1:12.00 and Melvin A. Holland as the Jockey?
###assistant: SELECT winner FROM table_name_74 WHERE time = "1:12.00" AND jockey = "melvin a. holland" |
###context:CREATE TABLE table_name_71 (year VARCHAR, purse VARCHAR)
###human: Which Year has a Purse of $83,925?
###assistant: SELECT year FROM table_name_71 WHERE purse = "$83,925" |
###context:CREATE TABLE table_name_10 (purse VARCHAR, year VARCHAR)
###human: What is the Purse listed for the Year of 1998?
###assistant: SELECT purse FROM table_name_10 WHERE year = "1998" |
###context:CREATE TABLE table_name_9 (winner VARCHAR, year VARCHAR)
###human: What's the Winner in the Year of 2000?
###assistant: SELECT winner FROM table_name_9 WHERE year = "2000" |
###context:CREATE TABLE table_name_43 (winner VARCHAR, time VARCHAR, owner VARCHAR)
###human: What's the WInner with a TIme of 1:10.60, and Owner of Leslie Combs II?
###assistant: SELECT winner FROM table_name_43 WHERE time = "1:10.60" AND owner = "leslie combs ii" |
###context:CREATE TABLE table_name_33 (trainer VARCHAR, year VARCHAR)
###human: Who is the Trainer with the Year of 2013?
###assistant: SELECT trainer FROM table_name_33 WHERE year = "2013" |
###context:CREATE TABLE table_name_84 (away_team VARCHAR)
###human: How many points did the away team of st kilda score?
###assistant: SELECT away_team AS score FROM table_name_84 WHERE away_team = "st kilda" |
###context:CREATE TABLE table_name_94 (date VARCHAR, result VARCHAR)
###human: Tell me the date with result of l 13β9
###assistant: SELECT date FROM table_name_94 WHERE result = "l 13β9" |
###context:CREATE TABLE table_name_67 (week VARCHAR, result VARCHAR)
###human: Tell me the total number of week for w 35β7
###assistant: SELECT COUNT(week) FROM table_name_67 WHERE result = "w 35β7" |
###context:CREATE TABLE table_name_70 (week INTEGER, result VARCHAR)
###human: Tell me the average week for result of l 34β24
###assistant: SELECT AVG(week) FROM table_name_70 WHERE result = "l 34β24" |
###context:CREATE TABLE table_name_99 (czechoslovak_president VARCHAR, tenure_begin VARCHAR)
###human: Who was the President of Czechoslovakia when an ambassador's tenure began in 1950?
###assistant: SELECT czechoslovak_president FROM table_name_99 WHERE tenure_begin = "1950" |
###context:CREATE TABLE table_name_2 (share INTEGER, air_date VARCHAR)
###human: What is the total share for an episode with an air date of November 19, 2007?
###assistant: SELECT SUM(share) FROM table_name_2 WHERE air_date = "november 19, 2007" |
###context:CREATE TABLE table_name_35 (manufacturer VARCHAR, time_retired VARCHAR)
###human: Which manufacturer has a Time/Retired of +15.665?
###assistant: SELECT manufacturer FROM table_name_35 WHERE time_retired = "+15.665" |
###context:CREATE TABLE table_name_72 (laps VARCHAR, manufacturer VARCHAR, grid VARCHAR)
###human: What were the laps of aprilia with a grid of 10?
###assistant: SELECT laps FROM table_name_72 WHERE manufacturer = "aprilia" AND grid = 10 |
###context:CREATE TABLE table_name_66 (crowd INTEGER, venue VARCHAR)
###human: What was the size of the crowd at the game played at Junction Oval?
###assistant: SELECT AVG(crowd) FROM table_name_66 WHERE venue = "junction oval" |
###context:CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR)
###human: When was the game when North Melbourne was the home team?
###assistant: SELECT date FROM table_name_35 WHERE home_team = "north melbourne" |
###context:CREATE TABLE table_name_64 (school_club_team VARCHAR, player VARCHAR)
###human: Which School/Club Team does Andrew Jones play for?
###assistant: SELECT school_club_team FROM table_name_64 WHERE player = "andrew jones" |
###context:CREATE TABLE table_name_5 (school_club_team VARCHAR, round INTEGER)
###human: Which School/Club Team did not make it to round 2?
###assistant: SELECT school_club_team FROM table_name_5 WHERE round < 2 |
###context:CREATE TABLE table_name_16 (player VARCHAR, pick VARCHAR)
###human: Which player is the 24 pick?
###assistant: SELECT player FROM table_name_16 WHERE pick = "24" |
###context:CREATE TABLE table_name_72 (round INTEGER, pick VARCHAR)
###human: What is the average round of the number 16 pick?
###assistant: SELECT AVG(round) FROM table_name_72 WHERE pick = "16" |
###context:CREATE TABLE table_name_83 (lost VARCHAR, win__percentage VARCHAR, played VARCHAR)
###human: How many games were lost where the win percentage is smaller than 16.7 and the played games is 3?
###assistant: SELECT COUNT(lost) FROM table_name_83 WHERE win__percentage < 16.7 AND played = 3 |
###context:CREATE TABLE table_name_23 (location VARCHAR, name VARCHAR)
###human: Where is pine valley?
###assistant: SELECT location FROM table_name_23 WHERE name = "pine valley" |
###context:CREATE TABLE table_name_58 (rank INTEGER, location VARCHAR)
###human: What is augusta's low rank?
###assistant: SELECT MIN(rank) FROM table_name_58 WHERE location = "augusta" |
###context:CREATE TABLE table_name_52 (model VARCHAR, gcm__kg__technical_capacity VARCHAR)
###human: Which Model has the GCM (kg) Technical Capacity of 42000?
###assistant: SELECT model FROM table_name_52 WHERE gcm__kg__technical_capacity = "42000" |
###context:CREATE TABLE table_name_94 (model VARCHAR, engine_make_capacity VARCHAR, gcm__kg__technical_capacity VARCHAR, gvm__kg__technical_capacity VARCHAR)
###human: Which Model has a GCM (kg) Technical Capacity of 35000, a GVM (kg) Technical Capacity of 16000, and Cummins Interact 6.0-euro III (turbo intercooler) for the Engine?
###assistant: SELECT model FROM table_name_94 WHERE gcm__kg__technical_capacity = "35000" AND gvm__kg__technical_capacity = "16000" AND engine_make_capacity = "cummins interact 6.0-euro iii (turbo intercooler)" |
###context:CREATE TABLE table_name_44 (character VARCHAR, result VARCHAR, year VARCHAR)
###human: Which character won before 2006?
###assistant: SELECT character FROM table_name_44 WHERE result = "won" AND year < 2006 |
###context:CREATE TABLE table_name_6 (character VARCHAR, category VARCHAR, year VARCHAR)
###human: In 2004 who was favourite maa?
###assistant: SELECT character FROM table_name_6 WHERE category = "favourite maa" AND year = 2004 |
###context:CREATE TABLE table_name_33 (result VARCHAR, year INTEGER)
###human: What were the results after 2004?
###assistant: SELECT result FROM table_name_33 WHERE year > 2004 |
###context:CREATE TABLE table_name_62 (category VARCHAR, result VARCHAR, year VARCHAR)
###human: In 2007 what category won?
###assistant: SELECT category FROM table_name_62 WHERE result = "won" AND year < 2007 |
###context:CREATE TABLE table_name_97 (d_48_β VARCHAR, d_40_β VARCHAR)
###human: What's the D 48 β when the D 40 β is D 37?
###assistant: SELECT d_48_β FROM table_name_97 WHERE d_40_β = "d 37" |
###context:CREATE TABLE table_name_14 (d_42_β VARCHAR, d_46_β VARCHAR)
###human: What's the D 42 β when D 46 β is majorityβ?
###assistant: SELECT d_42_β FROM table_name_14 WHERE d_46_β = "majorityβ" |
###context:CREATE TABLE table_name_23 (d_40_β VARCHAR, d_43_β VARCHAR)
###human: What's the D 40 β when D 43 β is d 14?
###assistant: SELECT d_40_β FROM table_name_23 WHERE d_43_β = "d 14" |
###context:CREATE TABLE table_name_59 (d_42_β VARCHAR, d_44_β VARCHAR)
###human: What's the D 42 β when D 44 β is majorityβ?
###assistant: SELECT d_42_β FROM table_name_59 WHERE d_44_β = "majorityβ" |
###context:CREATE TABLE table_name_27 (d_44_β VARCHAR, d_46_β VARCHAR)
###human: What's the D 44 β when D 46 β is d 26?
###assistant: SELECT d_44_β FROM table_name_27 WHERE d_46_β = "d 26" |
###context:CREATE TABLE table_name_13 (d_42_β VARCHAR, d_43_β VARCHAR)
###human: What's the D 42 β when D 43 β is r 5?
###assistant: SELECT d_42_β FROM table_name_13 WHERE d_43_β = "r 5" |
###context:CREATE TABLE table_name_67 (founded VARCHAR, house_name VARCHAR)
###human: How many benue houses have been founded?
###assistant: SELECT COUNT(founded) FROM table_name_67 WHERE house_name = "benue" |
###context:CREATE TABLE table_name_56 (founded INTEGER, named_after VARCHAR)
###human: When is the earliest year founded for houses named after the river benue?
###assistant: SELECT MIN(founded) FROM table_name_56 WHERE named_after = "river benue" |
###context:CREATE TABLE table_name_37 (composition VARCHAR, founded VARCHAR)
###human: What composition was founded in 1976?
###assistant: SELECT composition FROM table_name_37 WHERE founded = 1976 |
###context:CREATE TABLE table_name_93 (colours VARCHAR, house_name VARCHAR)
###human: What colours have a House Name of ogun?
###assistant: SELECT colours FROM table_name_93 WHERE house_name = "ogun" |
###context:CREATE TABLE table_name_34 (attendance INTEGER, date VARCHAR)
###human: What's the average attendance on january 6, 2008?
###assistant: SELECT AVG(attendance) FROM table_name_34 WHERE date = "january 6, 2008" |
###context:CREATE TABLE table_name_43 (score VARCHAR, visitor VARCHAR)
###human: What was the score when the spurs were the visitors?
###assistant: SELECT score FROM table_name_43 WHERE visitor = "spurs" |
###context:CREATE TABLE table_name_64 (gnis_feature_id INTEGER, county VARCHAR)
###human: What is the total GNIS Feature ID with a County of idaho?
###assistant: SELECT SUM(gnis_feature_id) FROM table_name_64 WHERE county = "idaho" |
###context:CREATE TABLE table_name_39 (gnis_feature_id INTEGER, county VARCHAR)
###human: What is the lowest GNIS Feature ID from County of sheridan?
###assistant: SELECT MIN(gnis_feature_id) FROM table_name_39 WHERE county = "sheridan" |
###context:CREATE TABLE table_name_91 (state VARCHAR, name VARCHAR, gnis_feature_id VARCHAR)
###human: Which state has a Name of diamond lake, and a GNIS Feature ID of 1579127?
###assistant: SELECT state FROM table_name_91 WHERE name = "diamond lake" AND gnis_feature_id = 1579127 |
###context:CREATE TABLE table_name_85 (directed_by VARCHAR, written_by VARCHAR)
###human: Who directed the episode written cyrus nowrasteh?
###assistant: SELECT directed_by FROM table_name_85 WHERE written_by = "cyrus nowrasteh" |
###context:CREATE TABLE table_name_72 (rank__pakistan_ VARCHAR, world_rank VARCHAR, height__m_ VARCHAR)
###human: What is the Rank (Pakistan) of the mountain that has a World Rank smaller than 11 and a Height smaller than 8126?
###assistant: SELECT COUNT(rank__pakistan_) FROM table_name_72 WHERE world_rank < 11 AND height__m_ < 8126 |
###context:CREATE TABLE table_name_96 (Id VARCHAR)
###human: Which 2006 tournament had a 4R performance in 2001?
###assistant: SELECT 2006 FROM table_name_96 WHERE 2001 = "4r" |
###context:CREATE TABLE table_name_79 (tournament VARCHAR)
###human: Which tournament had a performance of 1R in 2004 and 2R in 1998?
###assistant: SELECT tournament FROM table_name_79 WHERE 2004 = "1r" AND 1998 = "2r" |
###context:CREATE TABLE table_name_14 (Id VARCHAR)
###human: Which 1998 tournament had a performance of 3R in 2007?
###assistant: SELECT 1998 FROM table_name_14 WHERE 2007 = "3r" |
###context:CREATE TABLE table_name_14 (Id VARCHAR)
###human: What's the name of the 2005 tournament that has a 1R in both 2006 and 2002?
###assistant: SELECT 2005 FROM table_name_14 WHERE 2006 = "1r" AND 2002 = "1r" |
###context:CREATE TABLE table_name_1 (gross_debt_in_ INTEGER, debt_held_by_public__$billions_ VARCHAR, end_of_fiscal_year VARCHAR, as__percentage_of_gdp_low_high VARCHAR)
###human: For End of Fiscal Years past 1980 that also have as % of GDP Low-High of 83.4-84.4, and a Debt Held By Public ($Billions) smaller than 7,552 what would be the average Gross Debt in $Billions undeflated Treas. in said years?
###assistant: SELECT AVG(gross_debt_in_) AS $billions_undeflated_treas FROM table_name_1 WHERE end_of_fiscal_year > 1980 AND as__percentage_of_gdp_low_high = "83.4-84.4" AND debt_held_by_public__$billions_ < 7 OFFSET 552 |
###context:CREATE TABLE table_name_11 (gross_debt_in_ VARCHAR, debt_held_by_public__$billions_ VARCHAR, as__percentage_of_gdp_low_high VARCHAR)
###human: For End of Fiscal Year(s) with a Debt Held By Public ($Billions) larger than 236.8, and as % of GDP Low-High of 33.4 what is the sum of the number of Gross Debt in $Billions undeflated Treas.?
###assistant: SELECT COUNT(gross_debt_in_) AS $billions_undeflated_treas FROM table_name_11 WHERE debt_held_by_public__$billions_ > 236.8 AND as__percentage_of_gdp_low_high = "33.4" |
###context:CREATE TABLE table_name_96 (player VARCHAR, round VARCHAR)
###human: What player was selected in Round 6?
###assistant: SELECT player FROM table_name_96 WHERE round = 6 |
###context:CREATE TABLE table_name_6 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
###human: What is the nationality of the player who played for the Peterborough Petes (OHL)?
###assistant: SELECT nationality FROM table_name_6 WHERE college_junior_club_team__league_ = "peterborough petes (ohl)" |
###context:CREATE TABLE table_name_84 (round INTEGER, nationality VARCHAR, player VARCHAR)
###human: Which round was Mike Peca (C) of Canada selected in?
###assistant: SELECT SUM(round) FROM table_name_84 WHERE nationality = "canada" AND player = "mike peca (c)" |
###context:CREATE TABLE table_name_21 (grid INTEGER, driver VARCHAR)
###human: What is the smallest grid for Ayrton Senna?
###assistant: SELECT MIN(grid) FROM table_name_21 WHERE driver = "ayrton senna" |
###context:CREATE TABLE table_name_47 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
###human: What is the Time/Retired for laps higher than 52 on a grid larger than 21?
###assistant: SELECT time_retired FROM table_name_47 WHERE laps > 52 AND grid > 21 |
###context:CREATE TABLE table_name_53 (laps INTEGER, grid VARCHAR)
###human: What is the sum of laps for grid 20?
###assistant: SELECT SUM(laps) FROM table_name_53 WHERE grid = 20 |
###context:CREATE TABLE table_name_6 (laps INTEGER, driver VARCHAR)
###human: What is the most laps for Ayrton Senna?
###assistant: SELECT MAX(laps) FROM table_name_6 WHERE driver = "ayrton senna" |
###context:CREATE TABLE table_name_87 (parallel_bars INTEGER, vault VARCHAR, floor_exercise VARCHAR, horizontal_bar VARCHAR)
###human: what was the score of the parallel bars with a floor exercise score more than 9.137, vault more than 9.5 and horizontal bar of 9.225?
###assistant: SELECT SUM(parallel_bars) FROM table_name_87 WHERE floor_exercise > 9.137 AND horizontal_bar = 9.225 AND vault > 9.5 |
###context:CREATE TABLE table_name_81 (floor_exercise INTEGER, pommel_horse VARCHAR, horizontal_bar VARCHAR)
###human: what was the floor exercise score with a pommel horse score of 9.65 and horizontal bar score more than 9.475?
###assistant: SELECT MAX(floor_exercise) FROM table_name_81 WHERE pommel_horse = 9.65 AND horizontal_bar > 9.475 |
###context:CREATE TABLE table_name_4 (tournament VARCHAR)
###human: Which tournament had A in 2008, and a 1r in 2010?
###assistant: SELECT tournament FROM table_name_4 WHERE 2008 = "a" AND 2010 = "1r" |
###context:CREATE TABLE table_name_12 (Id VARCHAR)
###human: What was the position for 2008, where 2012 was q1, and 2010 was 1r?
###assistant: SELECT 2008 FROM table_name_12 WHERE 2012 = "q1" AND 2010 = "1r" |
###context:CREATE TABLE table_name_81 (venue VARCHAR, goal VARCHAR)
###human: Which venue has a Goal of 3?
###assistant: SELECT venue FROM table_name_81 WHERE goal = 3 |
###context:CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR)
###human: Which venue was used on 10 september 2010?
###assistant: SELECT venue FROM table_name_28 WHERE date = "10 september 2010" |
###context:CREATE TABLE table_name_48 (car VARCHAR, yards VARCHAR, avg VARCHAR)
###human: How many carries for the player with under 6 yards and an average of over 5?
###assistant: SELECT COUNT(car) FROM table_name_48 WHERE yards < 6 AND avg > 5 |
###context:CREATE TABLE table_name_72 (long INTEGER, player VARCHAR, yards VARCHAR)
###human: What was the longest carry for kevin clemens with under 31 yards total?
###assistant: SELECT MAX(long) FROM table_name_72 WHERE player = "kevin clemens" AND yards < 31 |
###context:CREATE TABLE table_name_42 (crowd VARCHAR, venue VARCHAR)
###human: What was the attendance at Brunswick Street Oval?
###assistant: SELECT COUNT(crowd) FROM table_name_42 WHERE venue = "brunswick street oval" |
###context:CREATE TABLE table_name_4 (first_day_cover_cancellation VARCHAR, date_of_issue VARCHAR)
###human: What's listed as the First Day Cover Cancellation with a Date of Issue of 13 June 2005?
###assistant: SELECT first_day_cover_cancellation FROM table_name_4 WHERE date_of_issue = "13 june 2005" |
###context:CREATE TABLE table_name_68 (first_day_cover_cancellation VARCHAR, denomination VARCHAR, date_of_issue VARCHAR)
###human: What's the First Day Cover Cancellation with Denomination of $0.50 and Date of Issue as 13 June 2005?
###assistant: SELECT first_day_cover_cancellation FROM table_name_68 WHERE denomination = "$0.50" AND date_of_issue = "13 june 2005" |
###context:CREATE TABLE table_name_88 (denomination VARCHAR, date_of_issue VARCHAR)
###human: What's the Denomination listed for the Date of Issue 12 April 2005?
###assistant: SELECT denomination FROM table_name_88 WHERE date_of_issue = "12 april 2005" |
###context:CREATE TABLE table_name_30 (paper_type VARCHAR, denomination VARCHAR, date_of_issue VARCHAR)
###human: Which Paper Type has a Denomination of $0.50 and Date of Issue 4 February 2005?
###assistant: SELECT paper_type FROM table_name_30 WHERE denomination = "$0.50" AND date_of_issue = "4 february 2005" |
###context:CREATE TABLE table_name_46 (date_of_issue VARCHAR, design VARCHAR)
###human: What's the Date of Issue for Design of Katalin Kovats?
###assistant: SELECT date_of_issue FROM table_name_46 WHERE design = "katalin kovats" |
###context:CREATE TABLE table_name_57 (rec INTEGER, avg INTEGER)
###human: What was the lowest recorded record for a player with an average larger than 13?
###assistant: SELECT MIN(rec) FROM table_name_57 WHERE avg > 13 |
###context:CREATE TABLE table_name_94 (yards INTEGER, long VARCHAR, avg VARCHAR)
###human: How many yards were averaged by the player that had a higher than 13 average with less than 18 long?
###assistant: SELECT AVG(yards) FROM table_name_94 WHERE long < 18 AND avg > 13 |
###context:CREATE TABLE table_name_77 (passenger_fleet INTEGER, airline_holding VARCHAR, current_destinations VARCHAR)
###human: For an airline of Wizz Air and fewer than 83 destinations, what is the highest passenger fleet?
###assistant: SELECT MAX(passenger_fleet) FROM table_name_77 WHERE airline_holding = "wizz air" AND current_destinations < 83 |
###context:CREATE TABLE table_name_85 (alliance__association VARCHAR, rank VARCHAR)
###human: Which alliance has a rank of 40?
###assistant: SELECT alliance__association FROM table_name_85 WHERE rank = 40 |
###context:CREATE TABLE table_name_11 (alliance__association VARCHAR, airline_holding VARCHAR)
###human: For airlines named Aeroflot Group, what is the alliance?
###assistant: SELECT alliance__association FROM table_name_11 WHERE airline_holding = "aeroflot group" |
###context:CREATE TABLE table_name_4 (year VARCHAR, position VARCHAR, pick VARCHAR)
###human: In which year was a linebacker pick 17?
###assistant: SELECT year FROM table_name_4 WHERE position = "linebacker" AND pick = "17" |
###context:CREATE TABLE table_name_42 (player_name VARCHAR, position VARCHAR, year VARCHAR)
###human: What is the name of the cornerback from 1997?
###assistant: SELECT player_name FROM table_name_42 WHERE position = "cornerback" AND year = 1997 |
###context:CREATE TABLE table_name_48 (player_name VARCHAR, year VARCHAR, college VARCHAR)
###human: What is the name of the player from after 1989 from Washington State?
###assistant: SELECT player_name FROM table_name_48 WHERE year > 1989 AND college = "washington state" |
###context:CREATE TABLE table_name_5 (race VARCHAR, margin VARCHAR)
###human: Which race has a Margin of 8?
###assistant: SELECT race FROM table_name_5 WHERE margin = "8" |
###context:CREATE TABLE table_name_55 (runners VARCHAR, placing INTEGER)
###human: How many Runners have a Placing that isn't 1?
###assistant: SELECT COUNT(runners) FROM table_name_55 WHERE placing > 1 |
###context:CREATE TABLE table_name_12 (runners INTEGER, placing INTEGER)
###human: What is the lowest number of Runners that has a Placing that isn't 1?
###assistant: SELECT MIN(runners) FROM table_name_12 WHERE placing < 1 |
###context:CREATE TABLE table_name_87 (prize__ INTEGER, race VARCHAR)
###human: What is the lowest Prize amount for the Irish Derby Race?
###assistant: SELECT MIN(prize__) AS Β£k_ FROM table_name_87 WHERE race = "irish derby" |
###context:CREATE TABLE table_name_62 (mintage INTEGER, issue_price VARCHAR, artist VARCHAR)
###human: What was the mintage having an issue price of $1,099.99, artist being Pamela Stagg?
###assistant: SELECT AVG(mintage) FROM table_name_62 WHERE issue_price = "$1,099.99" AND artist = "pamela stagg" |
###context:CREATE TABLE table_name_31 (year INTEGER, issue_price VARCHAR)
###human: What was the year that had an issue price of $1,295.95?
###assistant: SELECT AVG(year) FROM table_name_31 WHERE issue_price = "$1,295.95" |
###context:CREATE TABLE table_name_75 (mintage INTEGER, artist VARCHAR, year VARCHAR)
###human: What was the average mintage for that of artist Celia Godkin, before the year 2010?
###assistant: SELECT AVG(mintage) FROM table_name_75 WHERE artist = "celia godkin" AND year < 2010 |
###context:CREATE TABLE table_name_15 (away_team VARCHAR, venue VARCHAR)
###human: What was the away team score at Windy Hill?
###assistant: SELECT away_team AS score FROM table_name_15 WHERE venue = "windy hill" |
###context:CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR)
###human: Who was the home team at Lake Oval?
###assistant: SELECT home_team FROM table_name_66 WHERE venue = "lake oval" |
###context:CREATE TABLE table_name_5 (date VARCHAR, venue VARCHAR)
###human: On what date was the venue VFL Park?
###assistant: SELECT date FROM table_name_5 WHERE venue = "vfl park" |
###context:CREATE TABLE table_name_82 (home_team VARCHAR, venue VARCHAR)
###human: Which team was the home team at Glenferrie Oval?
###assistant: SELECT home_team FROM table_name_82 WHERE venue = "glenferrie oval" |
###context:CREATE TABLE table_name_49 (date VARCHAR, opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)
###human: What was the date when Steffi Graf was the opponent in the final and the score was 2β6, 0β6?
###assistant: SELECT date FROM table_name_49 WHERE opponent_in_the_final = "steffi graf" AND score_in_the_final = "2β6, 0β6" |
###context:CREATE TABLE table_name_19 (surface VARCHAR, outcome VARCHAR, date VARCHAR)
###human: What was the surface where the outcome was winner on 12 march 1989?
###assistant: SELECT surface FROM table_name_19 WHERE outcome = "winner" AND date = "12 march 1989" |
###context:CREATE TABLE table_name_68 (outcome VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)
###human: What was the outcome of the Tournament of lugano , switzerland wta virginia slims, against bonnie gadusek?
###assistant: SELECT outcome FROM table_name_68 WHERE tournament = "lugano , switzerland wta virginia slims" AND opponent_in_the_final = "bonnie gadusek" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.