training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_48 (league_from VARCHAR, player VARCHAR)
###human: Which League from has a Player of louis domingue?
###assistant: SELECT league_from FROM table_name_48 WHERE player = "louis domingue" |
###context:CREATE TABLE table_name_13 (league_from VARCHAR, nhl_team VARCHAR)
###human: Which League from has a NHL team of san jose sharks (from carolina) 3?
###assistant: SELECT league_from FROM table_name_13 WHERE nhl_team = "san jose sharks (from carolina) 3" |
###context:CREATE TABLE table_name_78 (nationality VARCHAR, team_from VARCHAR)
###human: Name the Nationality of södertälje sk?
###assistant: SELECT nationality FROM table_name_78 WHERE team_from = "södertälje sk" |
###context:CREATE TABLE table_name_59 (team_from VARCHAR, pick__number VARCHAR)
###human: Which Team has a Pick # of 148?
###assistant: SELECT team_from FROM table_name_59 WHERE pick__number = 148 |
###context:CREATE TABLE table_name_22 (nhl_team VARCHAR, league_from VARCHAR, player VARCHAR)
###human: Which team has a League from of ontario hockey league, and a Player of tony dehart?
###assistant: SELECT nhl_team FROM table_name_22 WHERE league_from = "ontario hockey league" AND player = "tony dehart" |
###context:CREATE TABLE table_name_40 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)
###human: What is T4 Place Player Nick Price's Money?
###assistant: SELECT money___$__ FROM table_name_40 WHERE place = "t4" AND player = "nick price" |
###context:CREATE TABLE table_name_44 (to_par VARCHAR, place VARCHAR)
###human: What is the To par of the Place 1 Player?
###assistant: SELECT to_par FROM table_name_44 WHERE place = "1" |
###context:CREATE TABLE table_name_40 (player VARCHAR, score VARCHAR)
###human: What Player's Score is 69-68-66-70=273?
###assistant: SELECT player FROM table_name_40 WHERE score = 69 - 68 - 66 - 70 = 273 |
###context:CREATE TABLE table_name_54 (player VARCHAR, to_par VARCHAR)
###human: What Player's To par is −6?
###assistant: SELECT player FROM table_name_54 WHERE to_par = "−6" |
###context:CREATE TABLE table_name_3 (country VARCHAR, to_par VARCHAR, year_s__won VARCHAR)
###human: Which Country has a To par larger than 3, and a Year(s) won of 1979? Question 1
###assistant: SELECT country FROM table_name_3 WHERE to_par > 3 AND year_s__won = "1979" |
###context:CREATE TABLE table_name_42 (to_par INTEGER, country VARCHAR, year_s__won VARCHAR)
###human: Which To par has a Country of australia, and a Year(s) won of 1990?
###assistant: SELECT MIN(to_par) FROM table_name_42 WHERE country = "australia" AND year_s__won = "1990" |
###context:CREATE TABLE table_name_34 (city VARCHAR, province VARCHAR)
###human: Which city is in Cantabria?
###assistant: SELECT city FROM table_name_34 WHERE province = "cantabria" |
###context:CREATE TABLE table_name_89 (city VARCHAR, name_in_english VARCHAR)
###human: What is the name of the city with the Socialist Party of the Extremadurian People?
###assistant: SELECT city FROM table_name_89 WHERE name_in_english = "socialist party of the extremadurian people" |
###context:CREATE TABLE table_name_31 (province VARCHAR, party VARCHAR)
###human: Which province has the partido Socialista del Pueblo Extremeño party?
###assistant: SELECT province FROM table_name_31 WHERE party = "partido socialista del pueblo extremeño" |
###context:CREATE TABLE table_name_38 (date_of_registration VARCHAR, province VARCHAR, party VARCHAR)
###human: When was the Partido radical party in Madrid registered?
###assistant: SELECT date_of_registration FROM table_name_38 WHERE province = "madrid" AND party = "partido radical" |
###context:CREATE TABLE table_name_11 (province VARCHAR, city VARCHAR)
###human: Which province is Pamplona located in?
###assistant: SELECT province FROM table_name_11 WHERE city = "pamplona" |
###context:CREATE TABLE table_name_60 (date_of_registration VARCHAR, name_in_english VARCHAR)
###human: On what date was the Canarian Workers Socialist Union registered?
###assistant: SELECT date_of_registration FROM table_name_60 WHERE name_in_english = "canarian workers socialist union" |
###context:CREATE TABLE table_name_37 (rank INTEGER, silver VARCHAR, total VARCHAR, nation VARCHAR)
###human: What is the lowest rank of Hungary where there was a total of 8 medals, including 2 silver?
###assistant: SELECT MIN(rank) FROM table_name_37 WHERE total = 8 AND nation = "hungary" AND silver > 2 |
###context:CREATE TABLE table_name_11 (rank INTEGER, nation VARCHAR, bronze VARCHAR)
###human: What is the highest rank of Great Britain who has less than 16 bronze?
###assistant: SELECT MAX(rank) FROM table_name_11 WHERE nation = "great britain" AND bronze < 16 |
###context:CREATE TABLE table_name_98 (injured VARCHAR, killed VARCHAR)
###human: What was the injured entry for the row with a killed entry of 29?
###assistant: SELECT injured FROM table_name_98 WHERE killed = "29" |
###context:CREATE TABLE table_name_81 (location VARCHAR, year VARCHAR, killed VARCHAR)
###human: What location has a killed of 100.9, and a year later than 1993?
###assistant: SELECT location FROM table_name_81 WHERE year > 1993 AND killed = "100.9" |
###context:CREATE TABLE table_name_16 (injured VARCHAR, country VARCHAR)
###human: What was the injured entry for Venezuela?
###assistant: SELECT injured FROM table_name_16 WHERE country = "venezuela" |
###context:CREATE TABLE table_name_48 (ages VARCHAR, dance VARCHAR, pair VARCHAR)
###human: How old were Mitchell & Jessica when they danced the Cha-Cha-Cha?
###assistant: SELECT ages FROM table_name_48 WHERE dance = "cha-cha-cha" AND pair = "mitchell & jessica" |
###context:CREATE TABLE table_name_2 (pair VARCHAR, dance VARCHAR, date VARCHAR)
###human: Who danced the Cha-Cha-Cha on November 18, 2008?
###assistant: SELECT pair FROM table_name_2 WHERE dance = "cha-cha-cha" AND date = "november 18, 2008" |
###context:CREATE TABLE table_name_14 (pair VARCHAR, date VARCHAR, dance VARCHAR)
###human: Who danced the Samba on October 14, 2008?
###assistant: SELECT pair FROM table_name_14 WHERE date = "october 14, 2008" AND dance = "samba" |
###context:CREATE TABLE table_name_38 (pick INTEGER, player VARCHAR, nationality VARCHAR, year VARCHAR)
###human: What was the pic for Canada for player Yvon Bouillon earlier than 1974?
###assistant: SELECT AVG(pick) FROM table_name_38 WHERE nationality = "canada" AND year < 1974 AND player = "yvon bouillon" |
###context:CREATE TABLE table_name_33 (competition VARCHAR, score VARCHAR)
###human: What was the competition when the score was 3-0?
###assistant: SELECT competition FROM table_name_33 WHERE score = "3-0" |
###context:CREATE TABLE table_name_18 (position VARCHAR, round VARCHAR, name VARCHAR)
###human: Akin Ayodele drafted before round 7 plays what position?
###assistant: SELECT position FROM table_name_18 WHERE round < 7 AND name = "akin ayodele" |
###context:CREATE TABLE table_name_60 (overall INTEGER, pick__number VARCHAR, round VARCHAR, college VARCHAR)
###human: What is the total overall for the pick that went before round 4, who went to Tennessee for college, and was picked at a number bigger than 9?
###assistant: SELECT SUM(overall) FROM table_name_60 WHERE round < 4 AND college = "tennessee" AND pick__number > 9 |
###context:CREATE TABLE table_name_40 (pick__number INTEGER, round VARCHAR, college VARCHAR)
###human: What is the pick number average for the player who was drafted before round 7, and went to college at Tennessee?
###assistant: SELECT AVG(pick__number) FROM table_name_40 WHERE round < 7 AND college = "tennessee" |
###context:CREATE TABLE table_name_48 (visitor VARCHAR, home VARCHAR, record VARCHAR)
###human: What visiting team played at the home of the Chicago Black Hawks with a record of 1-1?
###assistant: SELECT visitor FROM table_name_48 WHERE home = "chicago black hawks" AND record = "1-1" |
###context:CREATE TABLE table_name_7 (home VARCHAR, record VARCHAR)
###human: What home team has a record of 4-3?
###assistant: SELECT home FROM table_name_7 WHERE record = "4-3" |
###context:CREATE TABLE table_name_49 (visitor VARCHAR, record VARCHAR)
###human: What visiting team has a record of 4-3?
###assistant: SELECT visitor FROM table_name_49 WHERE record = "4-3" |
###context:CREATE TABLE table_name_99 (league_cup INTEGER, fa_cup VARCHAR, championship VARCHAR, total VARCHAR)
###human: What is the highest league up with less than 3 championships, a total less than 2, and a FA cup larger than 0?
###assistant: SELECT MAX(league_cup) FROM table_name_99 WHERE championship < 3 AND total < 2 AND fa_cup > 0 |
###context:CREATE TABLE table_name_59 (total INTEGER, championship INTEGER)
###human: What is the average total for less than 1 championship?
###assistant: SELECT AVG(total) FROM table_name_59 WHERE championship < 1 |
###context:CREATE TABLE table_name_9 (total VARCHAR, championship VARCHAR, league_cup VARCHAR)
###human: What i the total number of championships less than 2, and a league cup larger than 1?
###assistant: SELECT COUNT(total) FROM table_name_9 WHERE championship < 2 AND league_cup > 1 |
###context:CREATE TABLE table_name_10 (home_team VARCHAR, score VARCHAR, away_team VARCHAR)
###human: What home team has a score of 2–1, when the away team was Telford United?
###assistant: SELECT home_team FROM table_name_10 WHERE score = "2–1" AND away_team = "telford united" |
###context:CREATE TABLE table_name_12 (score VARCHAR, away_team VARCHAR)
###human: What was the score when the way team was Wrexham?
###assistant: SELECT score FROM table_name_12 WHERE away_team = "wrexham" |
###context:CREATE TABLE table_name_32 (home_team VARCHAR, tie_no VARCHAR)
###human: What is the home team when the Tie no is 1?
###assistant: SELECT home_team FROM table_name_32 WHERE tie_no = "1" |
###context:CREATE TABLE table_name_59 (score VARCHAR, player VARCHAR)
###human: What was Eduardo Romero's score?
###assistant: SELECT score FROM table_name_59 WHERE player = "eduardo romero" |
###context:CREATE TABLE table_name_26 (place VARCHAR, score VARCHAR)
###human: Where was the score 67-71-70=208?
###assistant: SELECT place FROM table_name_26 WHERE score = 67 - 71 - 70 = 208 |
###context:CREATE TABLE table_name_26 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)
###human: What was the score when Fred Couples played in the United States and placed t9?
###assistant: SELECT score FROM table_name_26 WHERE country = "united states" AND place = "t9" AND player = "fred couples" |
###context:CREATE TABLE table_name_15 (country VARCHAR, player VARCHAR)
###human: What country does Gary Koch play for?
###assistant: SELECT country FROM table_name_15 WHERE player = "gary koch" |
###context:CREATE TABLE table_name_7 (player VARCHAR, country VARCHAR)
###human: Who plays for Zimbabwe?
###assistant: SELECT player FROM table_name_7 WHERE country = "zimbabwe" |
###context:CREATE TABLE table_name_60 (to_par VARCHAR, place VARCHAR)
###human: What was the To par when the place was 4?
###assistant: SELECT to_par FROM table_name_60 WHERE place = "4" |
###context:CREATE TABLE table_name_45 (current_club VARCHAR, position VARCHAR, height VARCHAR)
###human: What is the current club with a position of sg/sf and a height less than 1.96?
###assistant: SELECT current_club FROM table_name_45 WHERE position = "sg/sf" AND height < 1.96 |
###context:CREATE TABLE table_name_18 (year_born__age_ VARCHAR, player VARCHAR)
###human: What year was Rowan Barrett born?
###assistant: SELECT year_born__age_ FROM table_name_18 WHERE player = "rowan barrett" |
###context:CREATE TABLE table_name_37 (height INTEGER, player VARCHAR)
###human: What is the lowest height for Rans Brempong?
###assistant: SELECT MIN(height) FROM table_name_37 WHERE player = "rans brempong" |
###context:CREATE TABLE table_name_48 (date VARCHAR, result VARCHAR)
###human: When was the result 0–3?
###assistant: SELECT date FROM table_name_48 WHERE result = "0–3" |
###context:CREATE TABLE table_name_95 (result VARCHAR, date VARCHAR)
###human: What is the result of the match on 9 September 2009?
###assistant: SELECT result FROM table_name_95 WHERE date = "9 september 2009" |
###context:CREATE TABLE table_name_34 (name VARCHAR, date_from VARCHAR)
###human: What is the name of the player that was loaned out on 13 August 2008 ?
###assistant: SELECT name FROM table_name_34 WHERE date_from = "13 august 2008" |
###context:CREATE TABLE table_name_12 (date_to VARCHAR, name VARCHAR, date_from VARCHAR)
###human: When was febian brandy loaned out until, when was loaned out on 2 february 2009.?
###assistant: SELECT date_to FROM table_name_12 WHERE name = "febian brandy" AND date_from = "2 february 2009" |
###context:CREATE TABLE table_name_78 (date_to VARCHAR, name VARCHAR)
###human: When was james chester loaned out until ?
###assistant: SELECT date_to FROM table_name_78 WHERE name = "james chester" |
###context:CREATE TABLE table_name_65 (moving_to VARCHAR, date_from VARCHAR)
###human: Where did the player loaned out on 27 november 2008 move to ?
###assistant: SELECT moving_to FROM table_name_65 WHERE date_from = "27 november 2008" |
###context:CREATE TABLE table_name_90 (date_to VARCHAR, name VARCHAR)
###human: When was ron-robert zieler loaned out until ?
###assistant: SELECT date_to FROM table_name_90 WHERE name = "ron-robert zieler" |
###context:CREATE TABLE table_name_18 (moving_to VARCHAR, date_to VARCHAR, pos VARCHAR)
###human: Where did the player in Pos mf, move to until 30 june 2009 ?
###assistant: SELECT moving_to FROM table_name_18 WHERE date_to = "30 june 2009" AND pos = "mf" |
###context:CREATE TABLE table_name_87 (name VARCHAR, replacement VARCHAR)
###human: What is the name of the manager who was replaced by michael skibbe?
###assistant: SELECT name FROM table_name_87 WHERE replacement = "michael skibbe" |
###context:CREATE TABLE table_name_22 (club VARCHAR, replacement VARCHAR)
###human: What is the club the used aykut kocaman as the replacement?
###assistant: SELECT club FROM table_name_22 WHERE replacement = "aykut kocaman" |
###context:CREATE TABLE table_name_80 (date_of_appointment VARCHAR, name VARCHAR)
###human: What is the date of appointment of nejat biyedić?
###assistant: SELECT date_of_appointment FROM table_name_80 WHERE name = "nejat biyedić" |
###context:CREATE TABLE table_name_75 (date VARCHAR, location_attendance VARCHAR)
###human: When did they play at the wachovia center?
###assistant: SELECT date FROM table_name_75 WHERE location_attendance = "wachovia center" |
###context:CREATE TABLE table_name_86 (game VARCHAR, location_attendance VARCHAR)
###human: What game number was played at amway arena?
###assistant: SELECT game FROM table_name_86 WHERE location_attendance = "amway arena" |
###context:CREATE TABLE table_name_18 (total VARCHAR, silver VARCHAR, rank VARCHAR)
###human: How many medals were won total for the country that won 1 silver and was ranked 2 or lower?
###assistant: SELECT COUNT(total) FROM table_name_18 WHERE silver = 1 AND rank < 2 |
###context:CREATE TABLE table_name_65 (silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)
###human: How many silvers did the country with more than 0 gold and a rank above 1 win that had a total less than 4?
###assistant: SELECT COUNT(silver) FROM table_name_65 WHERE gold > 0 AND rank > 1 AND total < 4 |
###context:CREATE TABLE table_name_25 (bronze INTEGER, total INTEGER)
###human: How many bronzes were won by the country with a total higher than 5?
###assistant: SELECT SUM(bronze) FROM table_name_25 WHERE total > 5 |
###context:CREATE TABLE table_name_34 (bronze INTEGER, rank VARCHAR, silver VARCHAR)
###human: How many bronzes were won for the country that had a larger than 3 rank and a silver win count above 0?
###assistant: SELECT SUM(bronze) FROM table_name_34 WHERE rank > 3 AND silver > 0 |
###context:CREATE TABLE table_name_28 (other INTEGER, us_open_cup VARCHAR, concacaf VARCHAR)
###human: What is the highest value for Other that has CONCACAF value of 0 a U.S. Open Cup larger than 0?
###assistant: SELECT MAX(other) FROM table_name_28 WHERE us_open_cup > 0 AND concacaf = 0 |
###context:CREATE TABLE table_name_41 (subregion VARCHAR, no_p VARCHAR, pop_area__1_km²_ VARCHAR)
###human: Which Subregion has a No P. of 4, and a Pop/Area (1/km²) of 534?
###assistant: SELECT subregion FROM table_name_41 WHERE no_p = 4 AND pop_area__1_km²_ = 534 |
###context:CREATE TABLE table_name_84 (pop_area__1_km²_ INTEGER, no_p VARCHAR, name VARCHAR)
###human: Which Pop/Area (1/km²) has a No P. larger than 1, and a Name of albergaria-a-velha?
###assistant: SELECT AVG(pop_area__1_km²_) FROM table_name_84 WHERE no_p > 1 AND name = "albergaria-a-velha" |
###context:CREATE TABLE table_name_39 (area__km²_ INTEGER, pop VARCHAR)
###human: Which Area (km²) is the lowest one that has a Population of 17,089?
###assistant: SELECT MIN(area__km²_) FROM table_name_39 WHERE pop = 17 OFFSET 089 |
###context:CREATE TABLE table_name_68 (home_team VARCHAR, away_team VARCHAR, tie_no VARCHAR, date VARCHAR)
###human: Who was the home team on 4 February 1987 when Luton Town was away team and there was no replay?
###assistant: SELECT home_team FROM table_name_68 WHERE tie_no = "replay" AND date = "4 february 1987" AND away_team = "luton town" |
###context:CREATE TABLE table_name_51 (away_team VARCHAR, date VARCHAR, home_team VARCHAR)
###human: Who was the away team on 31 January 1987 when the home team was Wimbledon?
###assistant: SELECT away_team FROM table_name_51 WHERE date = "31 january 1987" AND home_team = "wimbledon" |
###context:CREATE TABLE table_name_53 (height__ft_ VARCHAR, country VARCHAR)
###human: How high is Macedonia's highest point?
###assistant: SELECT height__ft_ FROM table_name_53 WHERE country = "macedonia" |
###context:CREATE TABLE table_name_96 (theme VARCHAR, winner VARCHAR)
###human: What is the theme with dani as the winner?
###assistant: SELECT theme FROM table_name_96 WHERE winner = "dani" |
###context:CREATE TABLE table_name_76 (notes VARCHAR, theme VARCHAR)
###human: What are the notes of the patience theme?
###assistant: SELECT notes FROM table_name_76 WHERE theme = "patience" |
###context:CREATE TABLE table_name_85 (round INTEGER, position VARCHAR)
###human: what is the round when the position is (c)?
###assistant: SELECT MAX(round) FROM table_name_85 WHERE position = "(c)" |
###context:CREATE TABLE table_name_3 (round INTEGER, player VARCHAR)
###human: what is the round for jake gardiner?
###assistant: SELECT AVG(round) FROM table_name_3 WHERE player = "jake gardiner" |
###context:CREATE TABLE table_name_27 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR, nationality VARCHAR)
###human: what is the college/junior/club team (league) when the round is higher than 1, the nationality is canada and the position is (d)?
###assistant: SELECT college_junior_club_team__league_ FROM table_name_27 WHERE round > 1 AND nationality = "canada" AND position = "(d)" |
###context:CREATE TABLE table_name_13 (position VARCHAR, player VARCHAR, round VARCHAR, nationality VARCHAR)
###human: what is the position when the round is higher than 3, the nationality is united states and the player is nick pryor?
###assistant: SELECT position FROM table_name_13 WHERE round > 3 AND nationality = "united states" AND player = "nick pryor" |
###context:CREATE TABLE table_name_52 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR)
###human: what is the college/junior/club team (league) when the position is (c) and the round is higher than 2?
###assistant: SELECT college_junior_club_team__league_ FROM table_name_52 WHERE position = "(c)" AND round > 2 |
###context:CREATE TABLE table_name_38 (byes INTEGER, south_west_dfl VARCHAR, wins VARCHAR)
###human: When the team Heathmere of the South West DFL won more than 11 games, what is the maximum byes?
###assistant: SELECT MAX(byes) FROM table_name_38 WHERE south_west_dfl = "heathmere" AND wins > 11 |
###context:CREATE TABLE table_name_9 (losses INTEGER, draws VARCHAR, against VARCHAR)
###human: What is the most games lost when the against is greater than 1401, and the draws greater than 0?
###assistant: SELECT MAX(losses) FROM table_name_9 WHERE draws > 0 AND against > 1401 |
###context:CREATE TABLE table_name_52 (draws INTEGER, against VARCHAR, byes VARCHAR)
###human: What is the maximum draws when less than 2514 is the against, and less than 0 byes?
###assistant: SELECT MAX(draws) FROM table_name_52 WHERE against < 2514 AND byes < 0 |
###context:CREATE TABLE table_name_83 (wins INTEGER, losses VARCHAR)
###human: What is the wins average when 17 games were lost?
###assistant: SELECT AVG(wins) FROM table_name_83 WHERE losses = 17 |
###context:CREATE TABLE table_name_81 (stadium VARCHAR, city VARCHAR)
###human: What stadium is in the city of Debrecen?
###assistant: SELECT stadium FROM table_name_81 WHERE city = "debrecen" |
###context:CREATE TABLE table_name_69 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
###human: What is the number of silver when rank was 5, and a bronze was smaller than 14?
###assistant: SELECT SUM(silver) FROM table_name_69 WHERE rank = "5" AND bronze < 14 |
###context:CREATE TABLE table_name_92 (bronze INTEGER, silver VARCHAR, total VARCHAR)
###human: What is the highest bronze number when silver is 0, and the total is smaller than 1?
###assistant: SELECT MAX(bronze) FROM table_name_92 WHERE silver = 0 AND total < 1 |
###context:CREATE TABLE table_name_4 (total VARCHAR, nation VARCHAR, gold VARCHAR)
###human: What is the total when the nation was Argentina, and a Goldwas smaller than 0?
###assistant: SELECT COUNT(total) FROM table_name_4 WHERE nation = "argentina" AND gold < 0 |
###context:CREATE TABLE table_name_96 (nation VARCHAR, silver VARCHAR, total VARCHAR, bronze VARCHAR, gold VARCHAR)
###human: What is the nation when bronze is less than 7, gold is larger than 0, total is larger than 7, and silver is smaller than 3?
###assistant: SELECT nation FROM table_name_96 WHERE bronze < 7 AND gold > 0 AND total > 7 AND silver < 3 |
###context:CREATE TABLE table_name_22 (date VARCHAR, opponents VARCHAR, h___a VARCHAR, league_position VARCHAR)
###human: What date was the game against manchester city when they had a league position of 2nd?
###assistant: SELECT date FROM table_name_22 WHERE h___a = "a" AND league_position = "2nd" AND opponents = "manchester city" |
###context:CREATE TABLE table_name_95 (result_f___a VARCHAR, date VARCHAR)
###human: What is the result F-A of the game on 6 march 1993?
###assistant: SELECT result_f___a FROM table_name_95 WHERE date = "6 march 1993" |
###context:CREATE TABLE table_name_93 (result_f___a VARCHAR, date VARCHAR)
###human: What is the result F-A of the game on 3 may 1993?
###assistant: SELECT result_f___a FROM table_name_93 WHERE date = "3 may 1993" |
###context:CREATE TABLE table_name_32 (tie_no VARCHAR, date VARCHAR, home_team VARCHAR)
###human: What is Tie no, when Date is "18 Nov 1989", and when Home Team is "Doncaster Rovers"?
###assistant: SELECT tie_no FROM table_name_32 WHERE date = "18 nov 1989" AND home_team = "doncaster rovers" |
###context:CREATE TABLE table_name_43 (score VARCHAR, away_team VARCHAR)
###human: What is Score, when Away Team is "Yeovil Town"?
###assistant: SELECT score FROM table_name_43 WHERE away_team = "yeovil town" |
###context:CREATE TABLE table_name_46 (home_team VARCHAR, tie_no VARCHAR)
###human: What is Home Team, when Tie no is "27"?
###assistant: SELECT home_team FROM table_name_46 WHERE tie_no = "27" |
###context:CREATE TABLE table_name_97 (date VARCHAR, tie_no VARCHAR)
###human: What is Date, when Tie no is "37"?
###assistant: SELECT date FROM table_name_97 WHERE tie_no = "37" |
###context:CREATE TABLE table_name_85 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)
###human: What is Home Team, when Date is "22 Nov 1989", and when Away Team is "Bath City"?
###assistant: SELECT home_team FROM table_name_85 WHERE date = "22 nov 1989" AND away_team = "bath city" |
###context:CREATE TABLE table_name_84 (year VARCHAR, play_by_play VARCHAR)
###human: What year was the play-by-play for Don Earle?
###assistant: SELECT year FROM table_name_84 WHERE play_by_play = "don earle" |
###context:CREATE TABLE table_name_92 (to_par VARCHAR, score VARCHAR, player VARCHAR)
###human: What is Tom Kite with a Score of 68's To Par?
###assistant: SELECT to_par FROM table_name_92 WHERE score = 68 AND player = "tom kite" |
###context:CREATE TABLE table_name_78 (place VARCHAR, player VARCHAR)
###human: What is Tom Kite's Place?
###assistant: SELECT place FROM table_name_78 WHERE player = "tom kite" |
###context:CREATE TABLE table_name_49 (televote_points VARCHAR, jury_points VARCHAR, draw VARCHAR)
###human: What is the televote points for 0 jury points and 23 draws?
###assistant: SELECT televote_points FROM table_name_49 WHERE jury_points = "0" AND draw = 23 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.