training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_86 (tournament VARCHAR, opponent VARCHAR, round VARCHAR, surface VARCHAR)
###human: Name the tournament for semifinal hard surface for opponent of pam casale
###assistant: SELECT tournament FROM table_name_86 WHERE round = "semifinal" AND surface = "hard" AND opponent = "pam casale" |
###context:CREATE TABLE table_name_36 (date VARCHAR, tournament VARCHAR, surface VARCHAR, round VARCHAR)
###human: Name the date for grass surface for quarterfinal at the nsw building society open tournament
###assistant: SELECT date FROM table_name_36 WHERE surface = "grass" AND round = "quarterfinal" AND tournament = "nsw building society open" |
###context:CREATE TABLE table_name_56 (surface VARCHAR, tournament VARCHAR, round VARCHAR)
###human: Name the surface for united airlines tournament of champions final round
###assistant: SELECT surface FROM table_name_56 WHERE tournament = "united airlines tournament of champions" AND round = "final" |
###context:CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR, surface VARCHAR)
###human: Name the date for chris evert opponent and carpet surface
###assistant: SELECT date FROM table_name_98 WHERE opponent = "chris evert" AND surface = "carpet" |
###context:CREATE TABLE table_name_94 (venue VARCHAR, date VARCHAR)
###human: Name the venue for 25 may 2008
###assistant: SELECT venue FROM table_name_94 WHERE date = "25 may 2008" |
###context:CREATE TABLE table_name_73 (score VARCHAR, competition VARCHAR)
###human: Name the score for 2015 afc asian cup qualification
###assistant: SELECT score FROM table_name_73 WHERE competition = "2015 afc asian cup qualification" |
###context:CREATE TABLE table_name_6 (competition VARCHAR, date VARCHAR)
###human: Name the competition for 13 december 2012
###assistant: SELECT competition FROM table_name_6 WHERE date = "13 december 2012" |
###context:CREATE TABLE table_name_51 (points INTEGER, entrant VARCHAR, year VARCHAR)
###human: What was arrows racing team's highest points after 1982?
###assistant: SELECT MAX(points) FROM table_name_51 WHERE entrant = "arrows racing team" AND year > 1982 |
###context:CREATE TABLE table_name_85 (year INTEGER, points VARCHAR)
###human: How many years has 2 points?
###assistant: SELECT SUM(year) FROM table_name_85 WHERE points = 2 |
###context:CREATE TABLE table_name_33 (catalogue VARCHAR, song_title VARCHAR)
###human: Name the catalogue with song title of love me tonight
###assistant: SELECT catalogue FROM table_name_33 WHERE song_title = "love me tonight" |
###context:CREATE TABLE table_name_75 (song_title VARCHAR, time VARCHAR)
###human: Name the song title with time of 1:51
###assistant: SELECT song_title FROM table_name_75 WHERE time = "1:51" |
###context:CREATE TABLE table_name_67 (track INTEGER, song_title VARCHAR)
###human: Name the least track with song of little sister
###assistant: SELECT MIN(track) FROM table_name_67 WHERE song_title = "little sister" |
###context:CREATE TABLE table_name_53 (player VARCHAR, score VARCHAR)
###human: What player has a score of 79?
###assistant: SELECT player FROM table_name_53 WHERE score = "79" |
###context:CREATE TABLE table_name_43 (opponent VARCHAR, ground VARCHAR, score VARCHAR)
###human: Who played on waca ground and scored 79 points?
###assistant: SELECT opponent FROM table_name_43 WHERE ground = "waca ground" AND score = "79" |
###context:CREATE TABLE table_name_8 (player VARCHAR, balls VARCHAR)
###human: What player had 49 balls?
###assistant: SELECT player FROM table_name_8 WHERE balls = 49 |
###context:CREATE TABLE table_name_83 (attendance INTEGER, score VARCHAR)
###human: What was the highest attendance of a game that had a score of 3-5?
###assistant: SELECT MAX(attendance) FROM table_name_83 WHERE score = "3-5" |
###context:CREATE TABLE table_name_29 (loss VARCHAR, record VARCHAR)
###human: Who took the loss in the game that ended with a 54-61 record?
###assistant: SELECT loss FROM table_name_29 WHERE record = "54-61" |
###context:CREATE TABLE table_name_2 (circuit VARCHAR)
###human: Name the 125cc winner with circuit of estoril
###assistant: SELECT 125 AS cc_winner FROM table_name_2 WHERE circuit = "estoril" |
###context:CREATE TABLE table_name_15 (date VARCHAR, motogp_winner VARCHAR, grand_prix VARCHAR)
###human: Name the date for motogp winner of casey stoner and grand prix of valencian grand prix
###assistant: SELECT date FROM table_name_15 WHERE motogp_winner = "casey stoner" AND grand_prix = "valencian grand prix" |
###context:CREATE TABLE table_name_25 (circuit VARCHAR, round VARCHAR)
###human: Name the circuit for round 18
###assistant: SELECT circuit FROM table_name_25 WHERE round = 18 |
###context:CREATE TABLE table_name_55 (grand_prix VARCHAR, motogp_winner VARCHAR, circuit VARCHAR)
###human: Name the grand prix for casey stoner and circuit of losail
###assistant: SELECT grand_prix FROM table_name_55 WHERE motogp_winner = "casey stoner" AND circuit = "losail" |
###context:CREATE TABLE table_name_36 (venue VARCHAR, date VARCHAR)
###human: Where was the game held that was played on 2002-03-07?
###assistant: SELECT venue FROM table_name_36 WHERE date = "2002-03-07" |
###context:CREATE TABLE table_name_18 (gold INTEGER, nation VARCHAR, rank VARCHAR)
###human: What is the total gold from New zealand and a rank less than 14?
###assistant: SELECT SUM(gold) FROM table_name_18 WHERE nation = "new zealand" AND rank < 14 |
###context:CREATE TABLE table_name_75 (silver INTEGER, gold INTEGER)
###human: What is the average of the silver that has less than 0 gold
###assistant: SELECT AVG(silver) FROM table_name_75 WHERE gold < 0 |
###context:CREATE TABLE table_name_53 (nation VARCHAR, total VARCHAR, gold VARCHAR, silver VARCHAR)
###human: Which nation has 0 gold, 0 silver and 2 total?
###assistant: SELECT nation FROM table_name_53 WHERE gold = 0 AND silver = 0 AND total = 2 |
###context:CREATE TABLE table_name_84 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
###human: What is the total gold in Norway with more than 1 bronze?
###assistant: SELECT SUM(gold) FROM table_name_84 WHERE nation = "norway" AND bronze > 1 |
###context:CREATE TABLE table_name_27 (bronze INTEGER, nation VARCHAR, total VARCHAR)
###human: What is the total bronze from Puerto Rico with a total of less than 1?
###assistant: SELECT SUM(bronze) FROM table_name_27 WHERE nation = "puerto rico" AND total < 1 |
###context:CREATE TABLE table_name_53 (season VARCHAR, club VARCHAR)
###human: Which season has the Celtic club?
###assistant: SELECT season FROM table_name_53 WHERE club = "celtic" |
###context:CREATE TABLE table_name_3 (party VARCHAR, minister VARCHAR, title VARCHAR)
###human: What was Parker Moloney's party affiliation when he was the Minister for Markets?
###assistant: SELECT party FROM table_name_3 WHERE minister = "parker moloney" AND title = "minister for markets" |
###context:CREATE TABLE table_name_47 (term_start VARCHAR, title VARCHAR, order VARCHAR)
###human: What was the starting date for the Minister for agriculture, fisheries and forestry that is in order number 25??
###assistant: SELECT term_start FROM table_name_47 WHERE title = "minister for agriculture, fisheries and forestry" AND order = "25" |
###context:CREATE TABLE table_name_32 (score VARCHAR, venue VARCHAR, result VARCHAR)
###human: What was the score in the venue of Seoul that resulted in 8-0?
###assistant: SELECT score FROM table_name_32 WHERE venue = "seoul" AND result = "8-0" |
###context:CREATE TABLE table_name_40 (date VARCHAR, result VARCHAR)
###human: What date had a result of 8-0?
###assistant: SELECT date FROM table_name_40 WHERE result = "8-0" |
###context:CREATE TABLE table_name_89 (competition VARCHAR, date VARCHAR, venue VARCHAR, result VARCHAR)
###human: On July 26, 1977, what competition played at the venue of Kuala Lumpur, resulted in 4-0?
###assistant: SELECT competition FROM table_name_89 WHERE venue = "kuala lumpur" AND result = "4-0" AND date = "july 26, 1977" |
###context:CREATE TABLE table_name_44 (venue VARCHAR, competition VARCHAR, result VARCHAR)
###human: What venue were the 1986 Asian games resulting in 2-0 played at?
###assistant: SELECT venue FROM table_name_44 WHERE competition = "1986 asian games" AND result = "2-0" |
###context:CREATE TABLE table_name_45 (league_goals INTEGER, player VARCHAR)
###human: How many total League goals does Player John O'Flynn have?
###assistant: SELECT SUM(league_goals) FROM table_name_45 WHERE player = "john o'flynn" |
###context:CREATE TABLE table_name_73 (year INTEGER, chassis VARCHAR)
###human: What is the earliest year that had a Lotus 49B chassis?
###assistant: SELECT MIN(year) FROM table_name_73 WHERE chassis = "lotus 49b" |
###context:CREATE TABLE table_name_18 (lane INTEGER, name VARCHAR)
###human: Name the least lane for lenny krayzelburg
###assistant: SELECT MIN(lane) FROM table_name_18 WHERE name = "lenny krayzelburg" |
###context:CREATE TABLE table_name_67 (name VARCHAR, round VARCHAR)
###human: Round of 9 involved what name?
###assistant: SELECT name FROM table_name_67 WHERE round = 9 |
###context:CREATE TABLE table_name_3 (overall VARCHAR, name VARCHAR, round VARCHAR)
###human: Name of calvin o'neal, and a Round smaller than 6 had what number total overall?
###assistant: SELECT COUNT(overall) FROM table_name_3 WHERE name = "calvin o'neal" AND round < 6 |
###context:CREATE TABLE table_name_47 (work VARCHAR, year VARCHAR, award VARCHAR)
###human: Name the work for years before 2007 that won blockbuster entertainment awards
###assistant: SELECT work FROM table_name_47 WHERE year < 2007 AND award = "blockbuster entertainment awards" |
###context:CREATE TABLE table_name_94 (cole VARCHAR, award VARCHAR, work VARCHAR, year VARCHAR, dylan VARCHAR)
###human: Name the Cole for years before 2009 where Dylan was nominated for big daddy at mtv movie awards
###assistant: SELECT cole FROM table_name_94 WHERE year < 2009 AND dylan = "nominated" AND work = "big daddy" AND award = "mtv movie awards" |
###context:CREATE TABLE table_name_57 (college VARCHAR, position VARCHAR)
###human: Position of running back involves which college?
###assistant: SELECT college FROM table_name_57 WHERE position = "running back" |
###context:CREATE TABLE table_name_6 (college VARCHAR, round VARCHAR, position VARCHAR)
###human: Round larger than 2, and a Position of guard involves what college?
###assistant: SELECT college FROM table_name_6 WHERE round > 2 AND position = "guard" |
###context:CREATE TABLE table_name_72 (college VARCHAR, position VARCHAR, pick__number VARCHAR, round VARCHAR)
###human: Pick # smaller than 46, and a Round of 5, and a Position of defensive tackle involves which college?
###assistant: SELECT college FROM table_name_72 WHERE pick__number < 46 AND round = 5 AND position = "defensive tackle" |
###context:CREATE TABLE table_name_73 (percentage___percentage_ VARCHAR, language VARCHAR)
###human: What is the percentage who speak Russian?
###assistant: SELECT percentage___percentage_ FROM table_name_73 WHERE language = "russian" |
###context:CREATE TABLE table_name_50 (number VARCHAR, language VARCHAR)
###human: How many speak german?
###assistant: SELECT number FROM table_name_50 WHERE language = "german" |
###context:CREATE TABLE table_name_35 (percentage___percentage_ VARCHAR, males VARCHAR)
###human: What is the percentage where males equal 99?
###assistant: SELECT percentage___percentage_ FROM table_name_35 WHERE males = "99" |
###context:CREATE TABLE table_name_67 (females VARCHAR, language VARCHAR)
###human: How many women speak German?
###assistant: SELECT females FROM table_name_67 WHERE language = "german" |
###context:CREATE TABLE table_name_65 (league_cup INTEGER, fa_cup INTEGER)
###human: What is the lowest number of league cups associated with 0 FA cups?
###assistant: SELECT MIN(league_cup) FROM table_name_65 WHERE fa_cup < 0 |
###context:CREATE TABLE table_name_13 (fa_cup INTEGER, total VARCHAR, championship VARCHAR, league_cup VARCHAR)
###human: How many FA cups for the player with under 5 champs, 0 league cups, and over 3 total?
###assistant: SELECT SUM(fa_cup) FROM table_name_13 WHERE championship < 5 AND league_cup = 0 AND total > 3 |
###context:CREATE TABLE table_name_36 (league_cup INTEGER, championship VARCHAR, total VARCHAR)
###human: How many league cups associated with under 10 championships and a total of under 3?
###assistant: SELECT SUM(league_cup) FROM table_name_36 WHERE championship < 10 AND total < 3 |
###context:CREATE TABLE table_name_80 (group_position VARCHAR, result_f_a VARCHAR)
###human: Result F–A of 2–0 had what group position?
###assistant: SELECT group_position FROM table_name_80 WHERE result_f_a = "2–0" |
###context:CREATE TABLE table_name_93 (group_position VARCHAR, result_f_a VARCHAR)
###human: Result F–A of 5–0 had what group position?
###assistant: SELECT group_position FROM table_name_93 WHERE result_f_a = "5–0" |
###context:CREATE TABLE table_name_69 (attendance INTEGER, group_position VARCHAR, result_f_a VARCHAR)
###human: Group position of 1st, and a Result F–A of 2–0 has what average attendance?
###assistant: SELECT AVG(attendance) FROM table_name_69 WHERE group_position = "1st" AND result_f_a = "2–0" |
###context:CREATE TABLE table_name_72 (date VARCHAR, result_f_a VARCHAR)
###human: Result F–A of 5–0 had what date?
###assistant: SELECT date FROM table_name_72 WHERE result_f_a = "5–0" |
###context:CREATE TABLE table_name_18 (attendance VARCHAR, date VARCHAR)
###human: Date of 1 october 2003 had what attendance?
###assistant: SELECT attendance FROM table_name_18 WHERE date = "1 october 2003" |
###context:CREATE TABLE table_name_84 (score VARCHAR, partner VARCHAR)
###human: what score is it with tathiana garbin as partner?
###assistant: SELECT score FROM table_name_84 WHERE partner = "tathiana garbin" |
###context:CREATE TABLE table_name_48 (date VARCHAR, partner VARCHAR)
###human: what date was giulia casoni the partner?
###assistant: SELECT date FROM table_name_48 WHERE partner = "giulia casoni" |
###context:CREATE TABLE table_name_29 (city VARCHAR, country VARCHAR, iata VARCHAR)
###human: for country of spain and iata of ibz, what's the city?
###assistant: SELECT city FROM table_name_29 WHERE country = "spain" AND iata = "ibz" |
###context:CREATE TABLE table_name_76 (icao VARCHAR, airport VARCHAR)
###human: for fiumicino airport what is the icao?
###assistant: SELECT icao FROM table_name_76 WHERE airport = "fiumicino airport" |
###context:CREATE TABLE table_name_95 (airport VARCHAR, city VARCHAR, iata VARCHAR)
###human: for milan and the iata of lin what is the airport?
###assistant: SELECT airport FROM table_name_95 WHERE city = "milan" AND iata = "lin" |
###context:CREATE TABLE table_name_39 (iata VARCHAR, icao VARCHAR)
###human: what's the iata for the icao of eheh?
###assistant: SELECT iata FROM table_name_39 WHERE icao = "eheh" |
###context:CREATE TABLE table_name_58 (airport VARCHAR, country VARCHAR, iata VARCHAR)
###human: which aiport is in the united kingdom and has iata of lcy?
###assistant: SELECT airport FROM table_name_58 WHERE country = "united kingdom" AND iata = "lcy" |
###context:CREATE TABLE table_name_31 (games VARCHAR, points VARCHAR)
###human: Name the F. Goals for games of 22 22 and points of 012 12
###assistant: SELECT F.goals FROM table_name_31 WHERE games = "22 22" AND points = "012 12" |
###context:CREATE TABLE table_name_43 (points VARCHAR, games VARCHAR)
###human: Name the points for games of 16 16
###assistant: SELECT points FROM table_name_43 WHERE games = "16 16" |
###context:CREATE TABLE table_name_98 (tries VARCHAR, points VARCHAR, games VARCHAR)
###human: Name the tries that has a points of 008 8 and games of 27 27
###assistant: SELECT tries FROM table_name_98 WHERE points = "008 8" AND games = "27 27" |
###context:CREATE TABLE table_name_18 (tries VARCHAR, games VARCHAR)
###human: Name the F. Goals with tries of 0 0 and games of 05 5
###assistant: SELECT F.goals FROM table_name_18 WHERE tries = "0 0" AND games = "05 5" |
###context:CREATE TABLE table_name_83 (player VARCHAR, tries VARCHAR, points VARCHAR)
###human: Name the player with tries of 02 2 and points of 008 8
###assistant: SELECT player FROM table_name_83 WHERE tries = "02 2" AND points = "008 8" |
###context:CREATE TABLE table_name_73 (area VARCHAR, name VARCHAR)
###human: Which area has a Name of william colenso college?
###assistant: SELECT area FROM table_name_73 WHERE name = "william colenso college" |
###context:CREATE TABLE table_name_41 (authority VARCHAR, name VARCHAR)
###human: Which authority has a Name of tamatea high school?
###assistant: SELECT authority FROM table_name_41 WHERE name = "tamatea high school" |
###context:CREATE TABLE table_name_90 (gender VARCHAR, years VARCHAR, decile VARCHAR, area VARCHAR)
###human: Which gender has a Decile of 8, an Area of taradale, and Years of 1–13?
###assistant: SELECT gender FROM table_name_90 WHERE decile = 8 AND area = "taradale" AND years = "1–13" |
###context:CREATE TABLE table_name_69 (decile VARCHAR, years VARCHAR, gender VARCHAR)
###human: Which Decile has Years of –, and a Gender of coed?
###assistant: SELECT decile FROM table_name_69 WHERE years = "–" AND gender = "coed" |
###context:CREATE TABLE table_name_83 (division VARCHAR, apps VARCHAR, country VARCHAR)
###human: Name the total number of division for apps more than 5 for greece
###assistant: SELECT COUNT(division) FROM table_name_83 WHERE apps > 5 AND country = "greece" |
###context:CREATE TABLE table_name_73 (apps INTEGER, team VARCHAR)
###human: Name the average apps for smederevo
###assistant: SELECT AVG(apps) FROM table_name_73 WHERE team = "smederevo" |
###context:CREATE TABLE table_name_64 (engine VARCHAR, chassis VARCHAR)
###human: What model engine has a lotus 16 chassis?
###assistant: SELECT engine FROM table_name_64 WHERE chassis = "lotus 16" |
###context:CREATE TABLE table_name_80 (points INTEGER, entrant VARCHAR, year VARCHAR)
###human: How many points after 1960 for fred tuck cars?
###assistant: SELECT MAX(points) FROM table_name_80 WHERE entrant = "fred tuck cars" AND year > 1960 |
###context:CREATE TABLE table_name_94 (dist__miles_ VARCHAR, course VARCHAR, race_name VARCHAR, runners VARCHAR)
###human: What is the distance for the unnamed race with 3 runners at Newcastle?
###assistant: SELECT dist__miles_ FROM table_name_94 WHERE race_name = "unnamed race" AND runners = "3" AND course = "newcastle" |
###context:CREATE TABLE table_name_51 (score VARCHAR, record VARCHAR)
###human: Name the score when the record was 18-25
###assistant: SELECT score FROM table_name_51 WHERE record = "18-25" |
###context:CREATE TABLE table_name_10 (loss VARCHAR, opponent VARCHAR)
###human: Name the loss for the angels opponent
###assistant: SELECT loss FROM table_name_10 WHERE opponent = "angels" |
###context:CREATE TABLE table_name_32 (attendance VARCHAR, record VARCHAR)
###human: Name the total number of people that went when the record was 16-22
###assistant: SELECT COUNT(attendance) FROM table_name_32 WHERE record = "16-22" |
###context:CREATE TABLE table_name_20 (score VARCHAR, opponent VARCHAR, date VARCHAR)
###human: Name the score for the mariners opponent on may 10
###assistant: SELECT score FROM table_name_20 WHERE opponent = "mariners" AND date = "may 10" |
###context:CREATE TABLE table_name_25 (outcome VARCHAR, partner VARCHAR, date VARCHAR)
###human: What was the Outcome for the Partner of Jürgen Melzer and the Date of January 7, 2012?
###assistant: SELECT outcome FROM table_name_25 WHERE partner = "jürgen melzer" AND date = "january 7, 2012" |
###context:CREATE TABLE table_name_79 (surface VARCHAR, partner VARCHAR, date VARCHAR)
###human: What was the Surface for the Partner of Jürgen Melzer, and a Date of July 16, 2011?
###assistant: SELECT surface FROM table_name_79 WHERE partner = "jürgen melzer" AND date = "july 16, 2011" |
###context:CREATE TABLE table_name_76 (outcome VARCHAR, date VARCHAR)
###human: What's the Outcome for the Date of July 16, 2011?
###assistant: SELECT outcome FROM table_name_76 WHERE date = "july 16, 2011" |
###context:CREATE TABLE table_name_94 (outcome VARCHAR, partner VARCHAR, date VARCHAR)
###human: What's the Outcome for the Partner of Jürgen Melzer on the Date of February 7, 2010?
###assistant: SELECT outcome FROM table_name_94 WHERE partner = "jürgen melzer" AND date = "february 7, 2010" |
###context:CREATE TABLE table_name_77 (nation VARCHAR, rank INTEGER)
###human: Name the nation with rank more than 9
###assistant: SELECT nation FROM table_name_77 WHERE rank > 9 |
###context:CREATE TABLE table_name_45 (bronze INTEGER, silver INTEGER)
###human: Name the least bronze for silver being less than 0
###assistant: SELECT MIN(bronze) FROM table_name_45 WHERE silver < 0 |
###context:CREATE TABLE table_name_90 (rank INTEGER, total VARCHAR, bronze VARCHAR, gold VARCHAR)
###human: Name the sum of rank for bronze less than 1 and gold of 1 with total less than 1
###assistant: SELECT SUM(rank) FROM table_name_90 WHERE bronze < 1 AND gold = 1 AND total < 1 |
###context:CREATE TABLE table_name_55 (rank INTEGER, silver INTEGER)
###human: Name the sum of rank for silver less than 0
###assistant: SELECT SUM(rank) FROM table_name_55 WHERE silver < 0 |
###context:CREATE TABLE table_name_5 (rank INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)
###human: Name the least rank when silver is less than 1 and bronze is less than 1 with total more than 1
###assistant: SELECT MIN(rank) FROM table_name_5 WHERE silver < 1 AND total > 1 AND bronze < 1 |
###context:CREATE TABLE table_name_90 (date VARCHAR, series VARCHAR)
###human: What was the date of the game in which the series was 1-4?
###assistant: SELECT date FROM table_name_90 WHERE series = "1-4" |
###context:CREATE TABLE table_name_6 (score VARCHAR, home VARCHAR, date VARCHAR)
###human: What is the Score that has a Home of montreal canadiens on april 11?
###assistant: SELECT score FROM table_name_6 WHERE home = "montreal canadiens" AND date = "april 11" |
###context:CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR)
###human: What is the Record on april 13?
###assistant: SELECT record FROM table_name_32 WHERE date = "april 13" |
###context:CREATE TABLE table_name_57 (date VARCHAR, home VARCHAR, record VARCHAR)
###human: When is Home of chicago black hawks has a Record of 0–1?
###assistant: SELECT date FROM table_name_57 WHERE home = "chicago black hawks" AND record = "0–1" |
###context:CREATE TABLE table_name_5 (date VARCHAR, visitor VARCHAR, record VARCHAR)
###human: What is the Date that chicago black hawks has a Record of 2–2?
###assistant: SELECT date FROM table_name_5 WHERE visitor = "chicago black hawks" AND record = "2–2" |
###context:CREATE TABLE table_name_38 (record VARCHAR, score VARCHAR)
###human: Which Record has a Score of 0–2?
###assistant: SELECT record FROM table_name_38 WHERE score = "0–2" |
###context:CREATE TABLE table_name_8 (visitor VARCHAR, date VARCHAR)
###human: Who is the visitor on April 5?
###assistant: SELECT visitor FROM table_name_8 WHERE date = "april 5" |
###context:CREATE TABLE table_name_14 (team VARCHAR, year VARCHAR)
###human: What is the Team, when the Year is 2011?
###assistant: SELECT team FROM table_name_14 WHERE year = "2011" |
###context:CREATE TABLE table_name_68 (int_yds VARCHAR, solo VARCHAR, team VARCHAR, sacks VARCHAR)
###human: What is the value for INT YDS, when the Team is New Orleans Saints, and when the value for Sacks is greater than 0, and when the vale for Solo is 71?
###assistant: SELECT int_yds FROM table_name_68 WHERE team = "new orleans saints" AND sacks > 0 AND solo = 71 |
###context:CREATE TABLE table_name_22 (sacks INTEGER, team VARCHAR, tackles VARCHAR)
###human: What is the value for lowest Sacks, when the Team is New Orleans Saints, and when the value for Tackles is 132?
###assistant: SELECT MIN(sacks) FROM table_name_22 WHERE team = "new orleans saints" AND tackles = "132" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.