training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_93 (league VARCHAR, season VARCHAR)
###human: What is the league for season 1955-56?
###assistant: SELECT league FROM table_name_93 WHERE season = "1955-56" |
###context:CREATE TABLE table_name_9 (year_drafted INTEGER, fcsl_team VARCHAR, round VARCHAR)
###human: What is the drafted year when the FCSL Team was Winter Park, in the 4th round?
###assistant: SELECT MAX(year_drafted) FROM table_name_9 WHERE fcsl_team = "winter park" AND round = "4th" |
###context:CREATE TABLE table_name_22 (fcsl_team VARCHAR, mlb_team VARCHAR, round VARCHAR)
###human: What is the FCSL Team when the MLB Team is Toronto Blue Jays, in the 4th round?
###assistant: SELECT fcsl_team FROM table_name_22 WHERE mlb_team = "toronto blue jays" AND round = "4th" |
###context:CREATE TABLE table_name_96 (score VARCHAR, player VARCHAR)
###human: What was John Fought's score?
###assistant: SELECT score FROM table_name_96 WHERE player = "john fought" |
###context:CREATE TABLE table_name_5 (to_par VARCHAR, place VARCHAR, country VARCHAR)
###human: What is the to par of the player from Argentina with a t8 place?
###assistant: SELECT to_par FROM table_name_5 WHERE place = "t8" AND country = "argentina" |
###context:CREATE TABLE table_name_62 (money___£__ VARCHAR, score VARCHAR)
###human: How much money does the player with a 68-67-69-71=275 score have?
###assistant: SELECT money___£__ FROM table_name_62 WHERE score = 68 - 67 - 69 - 71 = 275 |
###context:CREATE TABLE table_name_9 (country VARCHAR, place VARCHAR, player VARCHAR)
###human: What is the country of t1 place player wayne grady?
###assistant: SELECT country FROM table_name_9 WHERE place = "t1" AND player = "wayne grady" |
###context:CREATE TABLE table_name_78 (money___£__ VARCHAR, score VARCHAR)
###human: How much money does the player with a 68-71-68-72=279 score have?
###assistant: SELECT money___£__ FROM table_name_78 WHERE score = 68 - 71 - 68 - 72 = 279 |
###context:CREATE TABLE table_name_20 (money___£__ VARCHAR, score VARCHAR)
###human: How much money does the player with a 69-70-72-64=275 score have?
###assistant: SELECT money___£__ FROM table_name_20 WHERE score = 69 - 70 - 72 - 64 = 275 |
###context:CREATE TABLE table_name_21 (money___$__ VARCHAR, place VARCHAR, score VARCHAR)
###human: What was the money when the place was t8 and the score was 74-72-75-71=292?
###assistant: SELECT money___$__ FROM table_name_21 WHERE place = "t8" AND score = 74 - 72 - 75 - 71 = 292 |
###context:CREATE TABLE table_name_82 (money___ INTEGER, score VARCHAR)
###human: What was the average money when the score was 74-72-75-71=292?
###assistant: SELECT AVG(money___) AS $__ FROM table_name_82 WHERE score = 74 - 72 - 75 - 71 = 292 |
###context:CREATE TABLE table_name_94 (place VARCHAR, player VARCHAR)
###human: What was Tim Simpson's place?
###assistant: SELECT place FROM table_name_94 WHERE player = "tim simpson" |
###context:CREATE TABLE table_name_16 (country VARCHAR, place VARCHAR)
###human: What country placed 3?
###assistant: SELECT country FROM table_name_16 WHERE place = "3" |
###context:CREATE TABLE table_name_94 (barrow_island_australia INTEGER, draugen_north_sea VARCHAR, mutineer_exeter_australia VARCHAR)
###human: What is the average Barrow Island Australia when Draugen north sea is 17 and Mutineer-Exeter Australia is smaller than 6?
###assistant: SELECT AVG(barrow_island_australia) FROM table_name_94 WHERE draugen_north_sea = 17 AND mutineer_exeter_australia < 6 |
###context:CREATE TABLE table_name_48 (cpc_blend_kazakhstan INTEGER, barrow_island_australia INTEGER)
###human: What is the highest CPC blend Kazakhstan number when Barrow Island Australia is smaller than 12?
###assistant: SELECT MAX(cpc_blend_kazakhstan) FROM table_name_48 WHERE barrow_island_australia < 12 |
###context:CREATE TABLE table_name_38 (cpc_blend_kazakhstan INTEGER, draugen_north_sea VARCHAR)
###human: What is the lowest CPC Blend Kazakhstan number when Draugen North Sea is 17?
###assistant: SELECT MIN(cpc_blend_kazakhstan) FROM table_name_38 WHERE draugen_north_sea = 17 |
###context:CREATE TABLE table_name_7 (name VARCHAR, winning_driver VARCHAR)
###human: What race did eugenio silvani win?
###assistant: SELECT name FROM table_name_7 WHERE winning_driver = "eugenio silvani" |
###context:CREATE TABLE table_name_19 (name VARCHAR, winning_constructor VARCHAR)
###human: Which race did Mercedes win?
###assistant: SELECT name FROM table_name_19 WHERE winning_constructor = "mercedes" |
###context:CREATE TABLE table_name_41 (circuit VARCHAR, winning_constructor VARCHAR)
###human: Which circuit did alfa romeo win?
###assistant: SELECT circuit FROM table_name_41 WHERE winning_constructor = "alfa romeo" |
###context:CREATE TABLE table_name_60 (number_range VARCHAR, quantity VARCHAR)
###human: What is the number range for the 56 quantity?
###assistant: SELECT number_range FROM table_name_60 WHERE quantity = "56" |
###context:CREATE TABLE table_name_39 (team VARCHAR, start VARCHAR, year VARCHAR, manufacturer VARCHAR)
###human: Which team in 1987 had a start of 28 and drove a chrysler?
###assistant: SELECT team FROM table_name_39 WHERE year < 1987 AND manufacturer = "chrysler" AND start = "28" |
###context:CREATE TABLE table_name_33 (party VARCHAR, district VARCHAR)
###human: What is Party, when District is "Tennessee 8"?
###assistant: SELECT party FROM table_name_33 WHERE district = "tennessee 8" |
###context:CREATE TABLE table_name_28 (first_elected VARCHAR, party VARCHAR, district VARCHAR)
###human: What is the total number of First Elected, when Party is "Democratic", and when District is "Tennessee 5"?
###assistant: SELECT COUNT(first_elected) FROM table_name_28 WHERE party = "democratic" AND district = "tennessee 5" |
###context:CREATE TABLE table_name_38 (first_elected INTEGER, results VARCHAR, incumbent VARCHAR)
###human: What is the lowest First Elected, when Results is "Re-elected", and when Incumbent is "Lincoln Davis"?
###assistant: SELECT MIN(first_elected) FROM table_name_38 WHERE results = "re-elected" AND incumbent = "lincoln davis" |
###context:CREATE TABLE table_name_24 (first_elected INTEGER, results VARCHAR, incumbent VARCHAR)
###human: What is the highest First Elected, when Results is "Re-elected", and when Incumbent is "Lincoln Davis"?
###assistant: SELECT MAX(first_elected) FROM table_name_24 WHERE results = "re-elected" AND incumbent = "lincoln davis" |
###context:CREATE TABLE table_name_86 (status VARCHAR, against VARCHAR)
###human: What is the Status of the 44 Against?
###assistant: SELECT status FROM table_name_86 WHERE against = 44 |
###context:CREATE TABLE table_name_8 (date VARCHAR, against VARCHAR)
###human: What is the date of the 42 Against?
###assistant: SELECT date FROM table_name_8 WHERE against = 42 |
###context:CREATE TABLE table_name_24 (total VARCHAR, player VARCHAR)
###human: What is the total number for Seve Ballesteros?
###assistant: SELECT COUNT(total) FROM table_name_24 WHERE player = "seve ballesteros" |
###context:CREATE TABLE table_name_91 (to_par INTEGER, player VARCHAR)
###human: What is the lowest to par for Bob Charles?
###assistant: SELECT MIN(to_par) FROM table_name_91 WHERE player = "bob charles" |
###context:CREATE TABLE table_name_7 (name VARCHAR, date_of_birth VARCHAR)
###human: Who is born on 1982-01-29?
###assistant: SELECT name FROM table_name_7 WHERE date_of_birth = "1982-01-29" |
###context:CREATE TABLE table_name_52 (pos VARCHAR, date_of_birth VARCHAR)
###human: What is the position played by the man born on 1976-09-20?
###assistant: SELECT pos FROM table_name_52 WHERE date_of_birth = "1976-09-20" |
###context:CREATE TABLE table_name_78 (country VARCHAR, score VARCHAR)
###human: What country was the golfer with a score of 72-72-72=216 representing?
###assistant: SELECT country FROM table_name_78 WHERE score = 72 - 72 - 72 = 216 |
###context:CREATE TABLE table_name_26 (division_two VARCHAR, premier_division VARCHAR)
###human: Which Division Two team were champions as the same time the Premier Division Leominster town team were champs?
###assistant: SELECT division_two FROM table_name_26 WHERE premier_division = "leominster town" |
###context:CREATE TABLE table_name_63 (season VARCHAR, division_three VARCHAR)
###human: Which Season was the Division Three Hampton Park Rangers champions?
###assistant: SELECT season FROM table_name_63 WHERE division_three = "hampton park rangers" |
###context:CREATE TABLE table_name_92 (season VARCHAR, division_two VARCHAR)
###human: Which Season was the Division Two Fownhope Reserves champions?
###assistant: SELECT season FROM table_name_92 WHERE division_two = "fownhope reserves" |
###context:CREATE TABLE table_name_61 (division_one VARCHAR, division_two VARCHAR)
###human: What Division One team were champions at the same time the Division Two Hereford Lads Club Colts were champs?
###assistant: SELECT division_one FROM table_name_61 WHERE division_two = "hereford lads club colts" |
###context:CREATE TABLE table_name_24 (season VARCHAR, premier_division VARCHAR, division_three VARCHAR)
###human: Which year were both the Premier Division Ewyas Harold and Division Three Stoke Prior champions?
###assistant: SELECT season FROM table_name_24 WHERE premier_division = "ewyas harold" AND division_three = "stoke prior" |
###context:CREATE TABLE table_name_85 (engine VARCHAR, output VARCHAR)
###human: What engine has an output of ps (kw; hp) @4700 rpm?
###assistant: SELECT engine FROM table_name_85 WHERE output = "ps (kw; hp) @4700 rpm" |
###context:CREATE TABLE table_name_19 (s VARCHAR, output VARCHAR)
###human: What is the 0–100km/h,s for the output of ps (kw; hp) @4000 rpm?
###assistant: SELECT COUNT(0 AS _100km_h), s FROM table_name_19 WHERE output = "ps (kw; hp) @4000 rpm" |
###context:CREATE TABLE table_name_83 (opposing_teams VARCHAR, date VARCHAR)
###human: Who were the opposing teams on 08/02/1969?
###assistant: SELECT opposing_teams FROM table_name_83 WHERE date = "08/02/1969" |
###context:CREATE TABLE table_name_19 (against INTEGER, date VARCHAR)
###human: What is the highest number against on 12/04/1969?
###assistant: SELECT MAX(against) FROM table_name_19 WHERE date = "12/04/1969" |
###context:CREATE TABLE table_name_33 (venue VARCHAR, against VARCHAR, opposing_teams VARCHAR)
###human: What is the venue of the match with more than 8 against and ireland as the opposing team?
###assistant: SELECT venue FROM table_name_33 WHERE against > 8 AND opposing_teams = "ireland" |
###context:CREATE TABLE table_name_30 (place VARCHAR, player VARCHAR)
###human: which Place has a Player of mark brooks?
###assistant: SELECT place FROM table_name_30 WHERE player = "mark brooks" |
###context:CREATE TABLE table_name_48 (place VARCHAR, player VARCHAR)
###human: Which Place has a Player of justin leonard?
###assistant: SELECT place FROM table_name_48 WHERE player = "justin leonard" |
###context:CREATE TABLE table_name_17 (place VARCHAR, country VARCHAR, score VARCHAR)
###human: Name the Place which has a Score of 67-71=138, united states?
###assistant: SELECT place FROM table_name_17 WHERE country = "united states" AND score = 67 - 71 = 138 |
###context:CREATE TABLE table_name_99 (player VARCHAR, to_par VARCHAR)
###human: Name the Player which has a To par of –6?
###assistant: SELECT player FROM table_name_99 WHERE to_par = "–6" |
###context:CREATE TABLE table_name_15 (record VARCHAR, week VARCHAR)
###human: What was their record on week 11?
###assistant: SELECT record FROM table_name_15 WHERE week = 11 |
###context:CREATE TABLE table_name_20 (opponent VARCHAR, game_site VARCHAR)
###human: Who did they play at Atlanta-Fulton County Stadium?
###assistant: SELECT opponent FROM table_name_20 WHERE game_site = "atlanta-fulton county stadium" |
###context:CREATE TABLE table_name_25 (record VARCHAR, game_site VARCHAR)
###human: What was their record when they played at Riverfront Stadium?
###assistant: SELECT record FROM table_name_25 WHERE game_site = "riverfront stadium" |
###context:CREATE TABLE table_name_41 (label VARCHAR, english_title VARCHAR)
###human: What is Another She's Label?
###assistant: SELECT label FROM table_name_41 WHERE english_title = "another she" |
###context:CREATE TABLE table_name_92 (label VARCHAR, chinese__simplified_ VARCHAR)
###human: What is 你 朋友's Label?
###assistant: SELECT label FROM table_name_92 WHERE chinese__simplified_ = "你 朋友" |
###context:CREATE TABLE table_name_27 (label VARCHAR, release_date VARCHAR)
###human: What Label was Released on December 7, 2012?
###assistant: SELECT label FROM table_name_27 WHERE release_date = "december 7, 2012" |
###context:CREATE TABLE table_name_11 (english_title VARCHAR, chinese__simplified_ VARCHAR)
###human: What is 你 朋友's English title?
###assistant: SELECT english_title FROM table_name_11 WHERE chinese__simplified_ = "你 朋友" |
###context:CREATE TABLE table_name_89 (release_date VARCHAR, english_title VARCHAR)
###human: What is the Release date of the Album Your Friend?
###assistant: SELECT release_date FROM table_name_89 WHERE english_title = "your friend" |
###context:CREATE TABLE table_name_18 (runner_up VARCHAR, rank VARCHAR, champion VARCHAR, fourth_place VARCHAR)
###human: What was the runner-up when champion is 0, 4th place is 0 and rank is 6?
###assistant: SELECT runner_up FROM table_name_18 WHERE champion = "0" AND fourth_place = "0" AND rank = 6 |
###context:CREATE TABLE table_name_12 (runner_up VARCHAR, rank VARCHAR)
###human: What is the runner-up for rank of 7?
###assistant: SELECT runner_up FROM table_name_12 WHERE rank = 7 |
###context:CREATE TABLE table_name_51 (runner_up VARCHAR, total VARCHAR)
###human: What is the runner-up when the total is 5?
###assistant: SELECT runner_up FROM table_name_51 WHERE total = 5 |
###context:CREATE TABLE table_name_5 (score VARCHAR, team_2 VARCHAR)
###human: What was the score of team 2 Stade Lavallois (D1)?
###assistant: SELECT score FROM table_name_5 WHERE team_2 = "stade lavallois (d1)" |
###context:CREATE TABLE table_name_94 (displacement_cc VARCHAR, year VARCHAR)
###human: What is the CC displacement for 1965?
###assistant: SELECT displacement_cc FROM table_name_94 WHERE year = "1965" |
###context:CREATE TABLE table_name_25 (year VARCHAR, displacement_cc VARCHAR, type VARCHAR, engine VARCHAR)
###human: What year was the Grand Prix with an i8 engine and a cc displacement of 1500?
###assistant: SELECT year FROM table_name_25 WHERE type = "grand prix" AND engine = "i8" AND displacement_cc = "1500" |
###context:CREATE TABLE table_name_11 (type VARCHAR, model VARCHAR)
###human: What type of car has the model 6cm?
###assistant: SELECT type FROM table_name_11 WHERE model = "6cm" |
###context:CREATE TABLE table_name_13 (displacement_cc VARCHAR, engine VARCHAR, year VARCHAR)
###human: What cc displacement has an i6 engine in 1936?
###assistant: SELECT displacement_cc FROM table_name_13 WHERE engine = "i6" AND year = "1936" |
###context:CREATE TABLE table_name_40 (type VARCHAR, engine VARCHAR)
###human: What type of car has the v16 engine?
###assistant: SELECT type FROM table_name_40 WHERE engine = "v16" |
###context:CREATE TABLE table_name_95 (year_s__won VARCHAR, player VARCHAR, to_par VARCHAR)
###human: What is the total number of years won by Justin Leonard with a to par under 9?
###assistant: SELECT COUNT(year_s__won) FROM table_name_95 WHERE player = "justin leonard" AND to_par < 9 |
###context:CREATE TABLE table_name_12 (total INTEGER, country VARCHAR, year_s__won VARCHAR)
###human: What is the highest total for Scotland with a year won of 1985?
###assistant: SELECT MAX(total) FROM table_name_12 WHERE country = "scotland" AND year_s__won = 1985 |
###context:CREATE TABLE table_name_47 (date__opening_ VARCHAR, opening_film VARCHAR)
###human: What is Date (Opening), when Opening Film is "Another Myanmar, Mae Sot"?
###assistant: SELECT date__opening_ FROM table_name_47 WHERE opening_film = "another myanmar, mae sot" |
###context:CREATE TABLE table_name_95 (date__closing_ VARCHAR, opening_film VARCHAR)
###human: What is Date (Closing), when Opening Film is "Deconstruction of Korean Housewife"?
###assistant: SELECT date__closing_ FROM table_name_95 WHERE opening_film = "deconstruction of korean housewife" |
###context:CREATE TABLE table_name_39 (year VARCHAR, date__opening_ VARCHAR)
###human: What is the total number of Year(s), when Date (Opening) is "September 21"?
###assistant: SELECT COUNT(year) FROM table_name_39 WHERE date__opening_ = "september 21" |
###context:CREATE TABLE table_name_5 (date__opening_ VARCHAR, year VARCHAR, date__closing_ VARCHAR)
###human: What is Date (Opening), when Year is less than 2010, and when Date (Closing) is "September 28"?
###assistant: SELECT date__opening_ FROM table_name_5 WHERE year < 2010 AND date__closing_ = "september 28" |
###context:CREATE TABLE table_name_83 (date__closing_ VARCHAR, year INTEGER)
###human: What is Date (Closing), when Year is greater than 2011?
###assistant: SELECT date__closing_ FROM table_name_83 WHERE year > 2011 |
###context:CREATE TABLE table_name_38 (earnings_per_share__ VARCHAR, net_profit__us_$m_ VARCHAR, year_to_april VARCHAR)
###human: Name the number of Earnings per share (¢) which has a Net profit (US $m) larger than 66, and a Year to April smaller than 2010?
###assistant: SELECT COUNT(earnings_per_share__) AS ¢_ FROM table_name_38 WHERE net_profit__us_$m_ > 66 AND year_to_april < 2010 |
###context:CREATE TABLE table_name_46 (ebit__us_ VARCHAR, year_to_april VARCHAR, earnings_per_share__¢_ VARCHAR)
###human: Name the total number of EBIT (US $m) in 2011 and a Earnings per share (¢) larger than 47?
###assistant: SELECT COUNT(ebit__us_) AS $m_ FROM table_name_46 WHERE year_to_april = 2011 AND earnings_per_share__¢_ > 47 |
###context:CREATE TABLE table_name_34 (earnings_per_share__ INTEGER, ebit__us_$m_ VARCHAR, year_to_april VARCHAR, revenue__us_$million_ VARCHAR)
###human: Count the Earnings per share (¢) in April smaller than 2012, a Revenue (US $million) of 432.6 and a EBIT (US $m) smaller than 150.5?
###assistant: SELECT SUM(earnings_per_share__) AS ¢_ FROM table_name_34 WHERE year_to_april < 2012 AND revenue__us_$million_ = 432.6 AND ebit__us_$m_ < 150.5 |
###context:CREATE TABLE table_name_35 (ebit__us_ VARCHAR, revenue__us_$million_ VARCHAR, net_profit__us_$m_ VARCHAR)
###human: COunt the EBIT (US $m) which has a Revenue (US $million) larger than 434.8 and a Net profit (US $m) larger than 96.4?
###assistant: SELECT COUNT(ebit__us_) AS $m_ FROM table_name_35 WHERE revenue__us_$million_ > 434.8 AND net_profit__us_$m_ > 96.4 |
###context:CREATE TABLE table_name_57 (position VARCHAR, player VARCHAR)
###human: What position does Barry Richter play?
###assistant: SELECT position FROM table_name_57 WHERE player = "barry richter" |
###context:CREATE TABLE table_name_24 (nationality VARCHAR, college_junior_club_team VARCHAR, player VARCHAR)
###human: What nationality is Mark Hirth from Michigan State University (NCAA)?
###assistant: SELECT nationality FROM table_name_24 WHERE college_junior_club_team = "michigan state university (ncaa)" AND player = "mark hirth" |
###context:CREATE TABLE table_name_45 (nhl_team VARCHAR, player VARCHAR)
###human: What NHL team does Rob White play on?
###assistant: SELECT nhl_team FROM table_name_45 WHERE player = "rob white" |
###context:CREATE TABLE table_name_50 (pick__number VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)
###human: What is the pick number for position of D from the University of Maine (NCAA)?
###assistant: SELECT pick__number FROM table_name_50 WHERE position = "d" AND college_junior_club_team = "university of maine (ncaa)" |
###context:CREATE TABLE table_name_94 (college_junior_club_team VARCHAR, position VARCHAR, nationality VARCHAR)
###human: What college/junior/club team is a left wing from Canada?
###assistant: SELECT college_junior_club_team FROM table_name_94 WHERE position = "left wing" AND nationality = "canada" |
###context:CREATE TABLE table_name_44 (last_cf INTEGER, team VARCHAR, cf_appearances VARCHAR, cf_wins VARCHAR)
###human: What is the average last cf of the st. louis blues, who has less than 4 cf appearances and less than 1 cf wins?
###assistant: SELECT AVG(last_cf) FROM table_name_44 WHERE cf_appearances < 4 AND cf_wins < 1 AND team = "st. louis blues" |
###context:CREATE TABLE table_name_1 (cf_wins INTEGER, cup_wins VARCHAR, team VARCHAR, cf_appearances VARCHAR, last_cf VARCHAR)
###human: What is the lowest number of cf wins of the chicago blackhawks, which has more than 4 cf appearances, a last cf in 2013, and more than 2 cup wins?
###assistant: SELECT MIN(cf_wins) FROM table_name_1 WHERE cf_appearances > 4 AND last_cf = 2013 AND team = "chicago blackhawks" AND cup_wins > 2 |
###context:CREATE TABLE table_name_90 (last_cf INTEGER, cf_wins VARCHAR, cf_appearances VARCHAR, cup_wins VARCHAR)
###human: What is the lowest number of last cfs of the team with 2 cf appearances, 0 cup wins, and less than 0 cf wins?
###assistant: SELECT MIN(last_cf) FROM table_name_90 WHERE cf_appearances = 2 AND cup_wins = 0 AND cf_wins < 0 |
###context:CREATE TABLE table_name_52 (pos VARCHAR, team VARCHAR, year VARCHAR)
###human: What position did the driver from Audi Sport North America finish in the race after 2008?
###assistant: SELECT pos FROM table_name_52 WHERE team = "audi sport north america" AND year > 2008 |
###context:CREATE TABLE table_name_40 (event VARCHAR, rank_points VARCHAR, total VARCHAR)
###human: What event has 8 as the rank points, with 20 as the total?
###assistant: SELECT event FROM table_name_40 WHERE rank_points = "8" AND total = "20" |
###context:CREATE TABLE table_name_43 (shooter VARCHAR, event VARCHAR, rank_points VARCHAR)
###human: What shooter has wc munich as the event, and 8 as the rank points?
###assistant: SELECT shooter FROM table_name_43 WHERE event = "wc munich" AND rank_points = "8" |
###context:CREATE TABLE table_name_19 (score_points VARCHAR, rank_points VARCHAR)
###human: What score points have olympic gold medalist as the rank points?
###assistant: SELECT score_points FROM table_name_19 WHERE rank_points = "olympic gold medalist" |
###context:CREATE TABLE table_name_95 (place VARCHAR, to_par VARCHAR, player VARCHAR)
###human: With a To par of –5, what is Nick Faldo's Place?
###assistant: SELECT place FROM table_name_95 WHERE to_par = "–5" AND player = "nick faldo" |
###context:CREATE TABLE table_name_29 (to_par VARCHAR, player VARCHAR)
###human: What is Fuzzy Zoeller's To par?
###assistant: SELECT to_par FROM table_name_29 WHERE player = "fuzzy zoeller" |
###context:CREATE TABLE table_name_23 (governments VARCHAR, party VARCHAR)
###human: What is the Government the has the Kadima Party?
###assistant: SELECT governments FROM table_name_23 WHERE party = "kadima" |
###context:CREATE TABLE table_name_42 (rank_points VARCHAR, score_points VARCHAR)
###human: Which Rank points has a Score points of olympic silver medalist?
###assistant: SELECT rank_points FROM table_name_42 WHERE score_points = "olympic silver medalist" |
###context:CREATE TABLE table_name_84 (shooter VARCHAR, rank_points VARCHAR, event VARCHAR)
###human: Which Shooter has a Rank points of 8 and a Event of wc milan?
###assistant: SELECT shooter FROM table_name_84 WHERE rank_points = "8" AND event = "wc milan" |
###context:CREATE TABLE table_name_9 (score_points VARCHAR, event VARCHAR, rank_points VARCHAR)
###human: Which Score points has an Event of og beijing, and Rank points of olympic gold medalist?
###assistant: SELECT score_points FROM table_name_9 WHERE event = "og beijing" AND rank_points = "olympic gold medalist" |
###context:CREATE TABLE table_name_27 (score_points VARCHAR, event VARCHAR, total VARCHAR)
###human: Name Event of wc milan and a Total of 23?
###assistant: SELECT score_points FROM table_name_27 WHERE event = "wc milan" AND total = "23" |
###context:CREATE TABLE table_name_42 (score_points VARCHAR, rank_points VARCHAR, event VARCHAR)
###human: which Score points has a Rank points of 10, and an Event of wc milan?
###assistant: SELECT score_points FROM table_name_42 WHERE rank_points = "10" AND event = "wc milan" |
###context:CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR)
###human: What was willie goggin's score?
###assistant: SELECT score FROM table_name_49 WHERE player = "willie goggin" |
###context:CREATE TABLE table_name_39 (place VARCHAR, player VARCHAR, country VARCHAR, money___$__ VARCHAR)
###human: Which Place has a Country of united states, and a Money ($) larger than 0, and a Player of craig wood?
###assistant: SELECT place FROM table_name_39 WHERE country = "united states" AND money___$__ > 0 AND player = "craig wood" |
###context:CREATE TABLE table_name_61 (home VARCHAR, date VARCHAR)
###human: What is the home team on March 7?
###assistant: SELECT home FROM table_name_61 WHERE date = "march 7" |
###context:CREATE TABLE table_name_74 (record VARCHAR, date VARCHAR)
###human: What is the record on October 30?
###assistant: SELECT record FROM table_name_74 WHERE date = "october 30" |
###context:CREATE TABLE table_name_39 (record VARCHAR, date VARCHAR)
###human: What is the record on February 19?
###assistant: SELECT record FROM table_name_39 WHERE date = "february 19" |
###context:CREATE TABLE table_name_39 (to_par VARCHAR, player VARCHAR)
###human: What was d. a. weibring's to par?
###assistant: SELECT to_par FROM table_name_39 WHERE player = "d. a. weibring" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.