training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_93 (name VARCHAR, statistic VARCHAR)
###human: Who had the statistic of most assists?
###assistant: SELECT name FROM table_name_93 WHERE statistic = "most assists" |
###context:CREATE TABLE table_name_64 (swimmer VARCHAR, year VARCHAR, time VARCHAR)
###human: What is Swimmer, when Year is less than 2011, and when Time is "53.06"?
###assistant: SELECT swimmer FROM table_name_64 WHERE year < 2011 AND time = "53.06" |
###context:CREATE TABLE table_name_17 (school VARCHAR, event VARCHAR)
###human: What is School, when Event is "100 Backstroke"?
###assistant: SELECT school FROM table_name_17 WHERE event = "100 backstroke" |
###context:CREATE TABLE table_name_65 (school VARCHAR, year VARCHAR, event VARCHAR)
###human: What is School, when Year is less than 2013, and when Event is "100 Breaststroke"?
###assistant: SELECT school FROM table_name_65 WHERE year < 2013 AND event = "100 breaststroke" |
###context:CREATE TABLE table_name_98 (time VARCHAR, year VARCHAR, event VARCHAR)
###human: What is Time, when Year is greater than 2011, and when Event is "800 Freestyle Relay"?
###assistant: SELECT time FROM table_name_98 WHERE year > 2011 AND event = "800 freestyle relay" |
###context:CREATE TABLE table_name_37 (year VARCHAR, time VARCHAR)
###human: What is Year, when Time is "1:47.55"?
###assistant: SELECT year FROM table_name_37 WHERE time = "1:47.55" |
###context:CREATE TABLE table_name_46 (surface VARCHAR, opponent_in_the_final VARCHAR)
###human: What is the Surface of the match against Yaroslava Shvedova?
###assistant: SELECT surface FROM table_name_46 WHERE opponent_in_the_final = "yaroslava shvedova" |
###context:CREATE TABLE table_name_86 (surface VARCHAR, score_in_the_final VARCHAR)
###human: What is the Surface of the match with a Score in the final of 5–7, 6–7 (2–7)?
###assistant: SELECT surface FROM table_name_86 WHERE score_in_the_final = "5–7, 6–7 (2–7)" |
###context:CREATE TABLE table_name_9 (opponent_in_the_final VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)
###human: Who is the Opponent in the final of the match played on Clay Surface with a Score in the final of 4–6, 3–6?
###assistant: SELECT opponent_in_the_final FROM table_name_9 WHERE surface = "clay" AND score_in_the_final = "4–6, 3–6" |
###context:CREATE TABLE table_name_32 (date VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)
###human: On what Date is the match played on Clay Surface with a Score in the final of 6–2, 7–5?
###assistant: SELECT date FROM table_name_32 WHERE surface = "clay" AND score_in_the_final = "6–2, 7–5" |
###context:CREATE TABLE table_name_71 (nhl_team VARCHAR, nationality VARCHAR)
###human: WHAT IS THE NHL TEAM OF FINLAND?
###assistant: SELECT nhl_team FROM table_name_71 WHERE nationality = "finland" |
###context:CREATE TABLE table_name_9 (to_iran INTEGER, damaged VARCHAR, survived VARCHAR, aircraft VARCHAR)
###human: What's the to Iran with fewer than 9 survivors, more than 3 damaged, and an ussr an-26 aircraft?
###assistant: SELECT AVG(to_iran) FROM table_name_9 WHERE survived < 9 AND aircraft = "ussr an-26" AND damaged > 3 |
###context:CREATE TABLE table_name_17 (destroyed INTEGER, survived VARCHAR, to_iran VARCHAR, damaged VARCHAR)
###human: What's the average destroyed with a 1990 over 12, more than 1 damaged, 6 survivors, and a to Iran less than 4?
###assistant: SELECT AVG(destroyed) FROM table_name_17 WHERE 1990 > 12 AND damaged > 1 AND to_iran < 4 AND survived = 6 |
###context:CREATE TABLE table_name_53 (survived INTEGER, destroyed VARCHAR, to_iran VARCHAR, aircraft VARCHAR)
###human: What's the average survived with a to Iran less than 1, more than 1 destroyed, and a brazil tucano aircraft?
###assistant: SELECT AVG(survived) FROM table_name_53 WHERE to_iran < 1 AND aircraft = "brazil tucano" AND destroyed > 1 |
###context:CREATE TABLE table_name_53 (home_team VARCHAR, attendance VARCHAR)
###human: What home team played when there was an attendance of 568?
###assistant: SELECT home_team FROM table_name_53 WHERE attendance = "568" |
###context:CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR)
###human: What away team did Horsham play?
###assistant: SELECT away_team FROM table_name_30 WHERE home_team = "horsham" |
###context:CREATE TABLE table_name_30 (home_team VARCHAR, away_team VARCHAR)
###human: What home team played Hinckley United?
###assistant: SELECT home_team FROM table_name_30 WHERE away_team = "hinckley united" |
###context:CREATE TABLE table_name_37 (pts INTEGER, engine VARCHAR, year VARCHAR)
###human: How many points have an Engine of ferrari tipo 033 v6 tc, and a Year larger than 1987?
###assistant: SELECT SUM(pts) FROM table_name_37 WHERE engine = "ferrari tipo 033 v6 tc" AND year > 1987 |
###context:CREATE TABLE table_name_46 (team_chassis VARCHAR, year INTEGER)
###human: Which Team/Chassis has a Year larger than 1987?
###assistant: SELECT team_chassis FROM table_name_46 WHERE year > 1987 |
###context:CREATE TABLE table_name_90 (pts INTEGER, engine VARCHAR, year VARCHAR)
###human: How many points have an Engine of ferrari tipo 033 v6 tc, and a Year smaller than 1987?
###assistant: SELECT MAX(pts) FROM table_name_90 WHERE engine = "ferrari tipo 033 v6 tc" AND year < 1987 |
###context:CREATE TABLE table_name_66 (team_chassis VARCHAR, pts INTEGER)
###human: Which Team/Chassis has less than 65 points?
###assistant: SELECT team_chassis FROM table_name_66 WHERE pts < 65 |
###context:CREATE TABLE table_name_99 (score VARCHAR, tie_no VARCHAR)
###human: What is the score if the Tie no is 32?
###assistant: SELECT score FROM table_name_99 WHERE tie_no = "32" |
###context:CREATE TABLE table_name_78 (tie_no VARCHAR, home_team VARCHAR)
###human: What is the Tie no for Scunthorpe United?
###assistant: SELECT tie_no FROM table_name_78 WHERE home_team = "scunthorpe united" |
###context:CREATE TABLE table_name_91 (home_team VARCHAR, away_team VARCHAR)
###human: Which home team played against Stoke City?
###assistant: SELECT home_team FROM table_name_91 WHERE away_team = "stoke city" |
###context:CREATE TABLE table_name_67 (away_team VARCHAR, tie_no VARCHAR)
###human: Which away team has a Tie no of 14?
###assistant: SELECT away_team FROM table_name_67 WHERE tie_no = "14" |
###context:CREATE TABLE table_name_45 (date VARCHAR, home_team VARCHAR, tie_no VARCHAR)
###human: On what date does Watford have a Tie no of 2?
###assistant: SELECT date FROM table_name_45 WHERE home_team = "watford" AND tie_no = "2" |
###context:CREATE TABLE table_name_35 (l1_cache VARCHAR, fsb_speed VARCHAR, clock_speed VARCHAR)
###human: Which L1 Cache has an FSB speed of 800mhz and a clock speed of 1.2ghz?
###assistant: SELECT l1_cache FROM table_name_35 WHERE fsb_speed = "800mhz" AND clock_speed = "1.2ghz" |
###context:CREATE TABLE table_name_17 (score VARCHAR, player VARCHAR)
###human: What is the score of Player Tom Kite?
###assistant: SELECT score FROM table_name_17 WHERE player = "tom kite" |
###context:CREATE TABLE table_name_35 (to_par VARCHAR, score VARCHAR)
###human: What is the To Par that has a 69-69-73=211 score?
###assistant: SELECT to_par FROM table_name_35 WHERE score = 69 - 69 - 73 = 211 |
###context:CREATE TABLE table_name_23 (to_par VARCHAR, place VARCHAR, score VARCHAR)
###human: What is the Top that has a 66-71-66=203 score and a place of t1?
###assistant: SELECT to_par FROM table_name_23 WHERE place = "t1" AND score = 66 - 71 - 66 = 203 |
###context:CREATE TABLE table_name_89 (player VARCHAR, to_par VARCHAR, score VARCHAR)
###human: What player has a To Par of +1 with a score of 71-67-73=211?
###assistant: SELECT player FROM table_name_89 WHERE to_par = "+1" AND score = 71 - 67 - 73 = 211 |
###context:CREATE TABLE table_name_91 (player VARCHAR, score VARCHAR)
###human: Which Player has a Score of 72-68-78-71=289?
###assistant: SELECT player FROM table_name_91 WHERE score = 72 - 68 - 78 - 71 = 289 |
###context:CREATE TABLE table_name_33 (place VARCHAR, score VARCHAR)
###human: What is the Place for the 66 Score?
###assistant: SELECT place FROM table_name_33 WHERE score = 66 |
###context:CREATE TABLE table_name_89 (country VARCHAR, score VARCHAR, player VARCHAR)
###human: What Country has a 67 score by Phil Mickelson?
###assistant: SELECT country FROM table_name_89 WHERE score = 67 AND player = "phil mickelson" |
###context:CREATE TABLE table_name_96 (week_5 VARCHAR, week_3 VARCHAR)
###human: When Cathi O'Malley was featured in Week 3, who was the cyber girl for Week 5?
###assistant: SELECT week_5 FROM table_name_96 WHERE week_3 = "cathi o'malley" |
###context:CREATE TABLE table_name_11 (week_2 VARCHAR, week_3 VARCHAR)
###human: When Star Zemba was featured in Week 3, who was the cyber girl for Week 2?
###assistant: SELECT week_2 FROM table_name_11 WHERE week_3 = "star zemba" |
###context:CREATE TABLE table_name_11 (week_3 VARCHAR, week_2 VARCHAR)
###human: When Heather Christensen was featured in Week 2, who was the cyber girl for Week 3?
###assistant: SELECT week_3 FROM table_name_11 WHERE week_2 = "heather christensen" |
###context:CREATE TABLE table_name_36 (week_5 VARCHAR, week_2 VARCHAR)
###human: When Audra Lynn was featured in Week 2, who was the cyber girl for Week 5?
###assistant: SELECT week_5 FROM table_name_36 WHERE week_2 = "audra lynn" |
###context:CREATE TABLE table_name_48 (agg VARCHAR, team_1 VARCHAR)
###human: What is Agg., when Team 1 is "Tirana"?
###assistant: SELECT agg FROM table_name_48 WHERE team_1 = "tirana" |
###context:CREATE TABLE table_name_57 (team_2 VARCHAR)
###human: What is 2nd Leg, when Team 2 is "Dunaferr"?
###assistant: SELECT 2 AS nd_leg FROM table_name_57 WHERE team_2 = "dunaferr" |
###context:CREATE TABLE table_name_74 (elimination VARCHAR, time VARCHAR)
###human: What is the elimination number for the time 13:43?
###assistant: SELECT elimination FROM table_name_74 WHERE time = "13:43" |
###context:CREATE TABLE table_name_87 (elimination VARCHAR, eliminated_by VARCHAR)
###human: What Elimination number is listed againt Eliminated by Sonjay Dutt?
###assistant: SELECT elimination FROM table_name_87 WHERE eliminated_by = "sonjay dutt" |
###context:CREATE TABLE table_name_2 (elimination VARCHAR, eliminated_by VARCHAR)
###human: What Elimination number is listed againt Eliminated by Sonjay Dutt?
###assistant: SELECT elimination FROM table_name_2 WHERE eliminated_by = "sonjay dutt" |
###context:CREATE TABLE table_name_15 (time VARCHAR, wrestler VARCHAR)
###human: What time is listed against the Wrestler Jimmy Rave?
###assistant: SELECT time FROM table_name_15 WHERE wrestler = "jimmy rave" |
###context:CREATE TABLE table_name_63 (wrestler VARCHAR, elimination VARCHAR)
###human: Which Wrestler has an Elimination of 5?
###assistant: SELECT wrestler FROM table_name_63 WHERE elimination = "5" |
###context:CREATE TABLE table_name_21 (time VARCHAR, elimination VARCHAR)
###human: What time is listed against Elimination number 2?
###assistant: SELECT time FROM table_name_21 WHERE elimination = "2" |
###context:CREATE TABLE table_name_78 (score VARCHAR, place VARCHAR)
###human: What score has 2 as the place?
###assistant: SELECT score FROM table_name_78 WHERE place = "2" |
###context:CREATE TABLE table_name_8 (money___ INTEGER, to_par VARCHAR, score VARCHAR)
###human: What is the average money (£) that has +8 as the to par, with 73-72-72-71=288 as the score?
###assistant: SELECT AVG(money___) AS £__ FROM table_name_8 WHERE to_par = "+8" AND score = 73 - 72 - 72 - 71 = 288 |
###context:CREATE TABLE table_name_2 (country VARCHAR, place VARCHAR, player VARCHAR)
###human: What country has t6 as the place, with seve ballesteros as the player?
###assistant: SELECT country FROM table_name_2 WHERE place = "t6" AND player = "seve ballesteros" |
###context:CREATE TABLE table_name_64 (year INTEGER, champion VARCHAR)
###human: What year weas John McEnroe the champion?
###assistant: SELECT AVG(year) FROM table_name_64 WHERE champion = "john mcenroe" |
###context:CREATE TABLE table_name_66 (runner_up VARCHAR, champion VARCHAR, year VARCHAR)
###human: Who was the runner-up, when the champion was Björn Borg after 1978?
###assistant: SELECT runner_up FROM table_name_66 WHERE champion = "björn borg" AND year > 1978 |
###context:CREATE TABLE table_name_90 (champion VARCHAR, runner_up VARCHAR, year VARCHAR)
###human: Who was the champion earlier than 1978 when the runner-up was Jimmy Connors?
###assistant: SELECT champion FROM table_name_90 WHERE runner_up = "jimmy connors" AND year < 1978 |
###context:CREATE TABLE table_name_84 (municipality VARCHAR, code VARCHAR)
###human: Which municipality has the code 2401?
###assistant: SELECT municipality FROM table_name_84 WHERE code = 2401 |
###context:CREATE TABLE table_name_62 (population VARCHAR, code VARCHAR, county VARCHAR, municipality VARCHAR)
###human: What is the population of Danderyd municipality in Stockholm County with a code lower than 162?
###assistant: SELECT COUNT(population) FROM table_name_62 WHERE county = "stockholm county" AND municipality = "danderyd municipality" AND code < 162 |
###context:CREATE TABLE table_name_53 (total_area VARCHAR, code VARCHAR, density__per_km_2_land_ VARCHAR)
###human: What is the total area for a code less than 1862 and a density (per km 2 land) of 21.6?
###assistant: SELECT total_area FROM table_name_53 WHERE code < 1862 AND density__per_km_2_land_ = 21.6 |
###context:CREATE TABLE table_name_45 (total INTEGER, to_par VARCHAR)
###human: what total was the lowest and had a to par of e?
###assistant: SELECT MIN(total) FROM table_name_45 WHERE to_par = "e" |
###context:CREATE TABLE table_name_85 (player VARCHAR, country VARCHAR, total VARCHAR)
###human: Which player played in the united states and scored a total of 144 points?
###assistant: SELECT player FROM table_name_85 WHERE country = "united states" AND total = 144 |
###context:CREATE TABLE table_name_74 (trailing_party VARCHAR, votes VARCHAR, party_won VARCHAR)
###human: What is Trailing Party % Votes, when Party Won is "Bharatiya Janta Party", and when Trailing Party is "Indian National Congress"?
###assistant: SELECT trailing_party % votes FROM table_name_74 WHERE party_won = "bharatiya janta party" AND trailing_party = "indian national congress" |
###context:CREATE TABLE table_name_97 (members_of_parliament VARCHAR, trailing_party VARCHAR)
###human: What is Members of Parliament, when Trailing Party is "Bharatiya Lok Dal"?
###assistant: SELECT members_of_parliament FROM table_name_97 WHERE trailing_party = "bharatiya lok dal" |
###context:CREATE TABLE table_name_74 (trailing_party VARCHAR, party_won VARCHAR, year VARCHAR)
###human: What is Trailing Party, when Party Won is "Janata Dal", and when Year is "1996"?
###assistant: SELECT trailing_party FROM table_name_74 WHERE party_won = "janata dal" AND year = 1996 |
###context:CREATE TABLE table_name_53 (year INTEGER, lok_sabha VARCHAR)
###human: What is the lowest Year, when Lok Sabha is "4th Lok Sabha"?
###assistant: SELECT MIN(year) FROM table_name_53 WHERE lok_sabha = "4th lok sabha" |
###context:CREATE TABLE table_name_96 (player VARCHAR, score VARCHAR)
###human: Who scored a 68?
###assistant: SELECT player FROM table_name_96 WHERE score = 68 |
###context:CREATE TABLE table_name_91 (grid INTEGER, rider VARCHAR)
###human: How many Grid has a Rider of ryuichi kiyonari?
###assistant: SELECT SUM(grid) FROM table_name_91 WHERE rider = "ryuichi kiyonari" |
###context:CREATE TABLE table_name_24 (grid INTEGER, bike VARCHAR, rider VARCHAR)
###human: Name the lowest Grid which has a Bike of ducati 1098 rs 08 and a Rider of max biaggi?
###assistant: SELECT MIN(grid) FROM table_name_24 WHERE bike = "ducati 1098 rs 08" AND rider = "max biaggi" |
###context:CREATE TABLE table_name_33 (rider VARCHAR, time VARCHAR)
###human: Name the Rider which has a Time of +59.304?
###assistant: SELECT rider FROM table_name_33 WHERE time = "+59.304" |
###context:CREATE TABLE table_name_98 (rider VARCHAR, grid VARCHAR, laps VARCHAR, bike VARCHAR)
###human: Name the Rider which has Laps smaller than 11 and a Bike of kawasaki zx-10r, and a Grid of 8?
###assistant: SELECT rider FROM table_name_98 WHERE laps < 11 AND bike = "kawasaki zx-10r" AND grid = 8 |
###context:CREATE TABLE table_name_1 (total VARCHAR, player VARCHAR)
###human: What is the total for player karrie webb?
###assistant: SELECT COUNT(total) FROM table_name_1 WHERE player = "karrie webb" |
###context:CREATE TABLE table_name_75 (year_s__won VARCHAR, total INTEGER)
###human: What years did the player with a total larger than 157 have wins?
###assistant: SELECT year_s__won FROM table_name_75 WHERE total > 157 |
###context:CREATE TABLE table_name_52 (to_par INTEGER, player VARCHAR, total VARCHAR)
###human: What is the sum of the to par of player meg mallon, who had a total greater than 157?
###assistant: SELECT SUM(to_par) FROM table_name_52 WHERE player = "meg mallon" AND total > 157 |
###context:CREATE TABLE table_name_71 (total INTEGER, to_par VARCHAR)
###human: What is the highest total of the player with a 7 to par?
###assistant: SELECT MAX(total) FROM table_name_71 WHERE to_par = 7 |
###context:CREATE TABLE table_name_4 (assists VARCHAR, player VARCHAR)
###human: How many assists did Steve Walker have?
###assistant: SELECT assists FROM table_name_4 WHERE player = "steve walker" |
###context:CREATE TABLE table_name_84 (goals VARCHAR, assists VARCHAR, games VARCHAR)
###human: How many goals did the player score who had 33 assists in 85 games?
###assistant: SELECT goals FROM table_name_84 WHERE assists = "33" AND games = "85" |
###context:CREATE TABLE table_name_79 (points VARCHAR, player VARCHAR)
###human: How many points did Denis Pederson have?
###assistant: SELECT points FROM table_name_79 WHERE player = "denis pederson" |
###context:CREATE TABLE table_name_29 (xenon VARCHAR, helium VARCHAR)
###human: Which Xenon has a Helium of 5.1?
###assistant: SELECT xenon FROM table_name_29 WHERE helium = "5.1" |
###context:CREATE TABLE table_name_95 (neon VARCHAR, argon VARCHAR)
###human: Which Neon has a Argon of −189.6?
###assistant: SELECT neon FROM table_name_95 WHERE argon = "−189.6" |
###context:CREATE TABLE table_name_13 (physical_property VARCHAR, helium VARCHAR)
###human: Which Physical property has a Helium of 0.0693?
###assistant: SELECT physical_property FROM table_name_13 WHERE helium = "0.0693" |
###context:CREATE TABLE table_name_56 (argon VARCHAR, neon VARCHAR)
###human: Name the Argon which has a Neon of 0.484?
###assistant: SELECT argon FROM table_name_56 WHERE neon = "0.484" |
###context:CREATE TABLE table_name_36 (krypton VARCHAR, physical_property VARCHAR)
###human: Which Krypton has a Physical property of critical pressure (atm)?
###assistant: SELECT krypton FROM table_name_36 WHERE physical_property = "critical pressure (atm)" |
###context:CREATE TABLE table_name_54 (helium VARCHAR, argon VARCHAR)
###human: which Helium has a Argon of −189.6?
###assistant: SELECT helium FROM table_name_54 WHERE argon = "−189.6" |
###context:CREATE TABLE table_name_46 (venue VARCHAR, opposing_teams VARCHAR, date VARCHAR)
###human: What is Venue, when Opposing Teams is "South Africa", and when Date is "17/06/2000"?
###assistant: SELECT venue FROM table_name_46 WHERE opposing_teams = "south africa" AND date = "17/06/2000" |
###context:CREATE TABLE table_name_11 (against INTEGER, opposing_teams VARCHAR, status VARCHAR)
###human: What is the sum of Against, when Opposing Teams is "South Africa", and when Status is "First Test"?
###assistant: SELECT SUM(against) FROM table_name_11 WHERE opposing_teams = "south africa" AND status = "first test" |
###context:CREATE TABLE table_name_96 (opposing_teams VARCHAR, status VARCHAR, date VARCHAR)
###human: What is Opposing Teams, when Status is "Test Match", and when Date is "25/11/2000"?
###assistant: SELECT opposing_teams FROM table_name_96 WHERE status = "test match" AND date = "25/11/2000" |
###context:CREATE TABLE table_name_55 (against VARCHAR, venue VARCHAR, date VARCHAR)
###human: What is Against, when Venue is "Twickenham , London", and when Date is "04/03/2000"?
###assistant: SELECT against FROM table_name_55 WHERE venue = "twickenham , london" AND date = "04/03/2000" |
###context:CREATE TABLE table_name_63 (status VARCHAR, venue VARCHAR)
###human: What is the Statue, when Venue is "Stadio Flaminio , Rome"?
###assistant: SELECT status FROM table_name_63 WHERE venue = "stadio flaminio , rome" |
###context:CREATE TABLE table_name_50 (h___a VARCHAR, date VARCHAR)
###human: What is the H/A of the game on 24 january 2009?
###assistant: SELECT h___a FROM table_name_50 WHERE date = "24 january 2009" |
###context:CREATE TABLE table_name_90 (year VARCHAR, rank_final VARCHAR)
###human: What year was the rank final of 6?
###assistant: SELECT year FROM table_name_90 WHERE rank_final = "6" |
###context:CREATE TABLE table_name_41 (rank_final VARCHAR, year INTEGER)
###human: What was the rank final before 2007?
###assistant: SELECT rank_final FROM table_name_41 WHERE year < 2007 |
###context:CREATE TABLE table_name_8 (district VARCHAR, incumbent VARCHAR)
###human: What is District, when Incumbent is "Richard Neal"?
###assistant: SELECT district FROM table_name_8 WHERE incumbent = "richard neal" |
###context:CREATE TABLE table_name_40 (first_elected INTEGER, district VARCHAR)
###human: What is the lowest First Elected, when District is "Massachusetts 10"?
###assistant: SELECT MIN(first_elected) FROM table_name_40 WHERE district = "massachusetts 10" |
###context:CREATE TABLE table_name_49 (first_elected INTEGER, district VARCHAR)
###human: What is the average First Elected, when District is "Massachusetts 3"?
###assistant: SELECT AVG(first_elected) FROM table_name_49 WHERE district = "massachusetts 3" |
###context:CREATE TABLE table_name_35 (lost VARCHAR, tries_against VARCHAR)
###human: What team lost with 30 tries against?
###assistant: SELECT lost FROM table_name_35 WHERE tries_against = "30" |
###context:CREATE TABLE table_name_73 (lost VARCHAR, points_for VARCHAR)
###human: Who lost with 142 points for?
###assistant: SELECT lost FROM table_name_73 WHERE points_for = "142" |
###context:CREATE TABLE table_name_83 (tries_against VARCHAR, tries_for VARCHAR)
###human: How many tries against for the team with 67 tries for?
###assistant: SELECT tries_against FROM table_name_83 WHERE tries_for = "67" |
###context:CREATE TABLE table_name_79 (club VARCHAR, tries_for VARCHAR)
###human: Which club has 101 tries for?
###assistant: SELECT club FROM table_name_79 WHERE tries_for = "101" |
###context:CREATE TABLE table_name_16 (try_bonus VARCHAR, tries_for VARCHAR)
###human: What is the try bonus for the team with 67 tries for?
###assistant: SELECT try_bonus FROM table_name_16 WHERE tries_for = "67" |
###context:CREATE TABLE table_name_5 (lost VARCHAR, tries_against VARCHAR)
###human: What is the team that lost with 77 tries against?
###assistant: SELECT lost FROM table_name_5 WHERE tries_against = "77" |
###context:CREATE TABLE table_name_55 (fighting_spirit INTEGER, name VARCHAR, technique VARCHAR)
###human: Which Fighting Spirit has a Name of tsurugamine, and a Technique smaller than 10?
###assistant: SELECT AVG(fighting_spirit) FROM table_name_55 WHERE name = "tsurugamine" AND technique < 10 |
###context:CREATE TABLE table_name_89 (technique VARCHAR, highest_rank VARCHAR, total VARCHAR)
###human: How much Technique has the Highest rank of yokozuna, and a Total larger than 11?
###assistant: SELECT COUNT(technique) FROM table_name_89 WHERE highest_rank = "yokozuna" AND total > 11 |
###context:CREATE TABLE table_name_25 (fighting_spirit INTEGER, total VARCHAR, technique VARCHAR)
###human: How much Fighting Spirit has a Total of 13, and a Technique smaller than 1?
###assistant: SELECT SUM(fighting_spirit) FROM table_name_25 WHERE total = 13 AND technique < 1 |
###context:CREATE TABLE table_name_31 (years VARCHAR, name VARCHAR)
###human: What are asashio's years?
###assistant: SELECT years FROM table_name_31 WHERE name = "asashio" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.