question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
How many points did Joe O'Meara have? | CREATE TABLE table_name_93 (points VARCHAR, artist VARCHAR) | SELECT COUNT(points) FROM table_name_93 WHERE artist = "joe o'meara" | ### Context: CREATE TABLE table_name_93 (points VARCHAR, artist VARCHAR) ### Question: How many points did Joe O'Meara have? ### Answer: SELECT COUNT(points) FROM table_name_93 WHERE artist = "joe o'meara" |
How many points did Linda Martin have? | CREATE TABLE table_name_89 (points VARCHAR, artist VARCHAR) | SELECT COUNT(points) FROM table_name_89 WHERE artist = "linda martin" | ### Context: CREATE TABLE table_name_89 (points VARCHAR, artist VARCHAR) ### Question: How many points did Linda Martin have? ### Answer: SELECT COUNT(points) FROM table_name_89 WHERE artist = "linda martin" |
WHAT IS THE SCORE WITH A WEEK LARGER THAN 13, AND VISITOR TEAM MONTREAL ALOUETTES? | CREATE TABLE table_name_39 (score VARCHAR, week VARCHAR, visitor VARCHAR) | SELECT score FROM table_name_39 WHERE week > 13 AND visitor = "montreal alouettes" | ### Context: CREATE TABLE table_name_39 (score VARCHAR, week VARCHAR, visitor VARCHAR) ### Question: WHAT IS THE SCORE WITH A WEEK LARGER THAN 13, AND VISITOR TEAM MONTREAL ALOUETTES? ### Answer: SELECT score FROM table_name_39 WHERE week > 13 AND visitor = "montreal alouettes" |
WHAT IS THE AVERAGE WEEK WITH A DATE OF JULY 25? | CREATE TABLE table_name_5 (week INTEGER, date VARCHAR) | SELECT AVG(week) FROM table_name_5 WHERE date = "july 25" | ### Context: CREATE TABLE table_name_5 (week INTEGER, date VARCHAR) ### Question: WHAT IS THE AVERAGE WEEK WITH A DATE OF JULY 25? ### Answer: SELECT AVG(week) FROM table_name_5 WHERE date = "july 25" |
What was the tie for the Crystal Palace team? | CREATE TABLE table_name_42 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_42 WHERE home_team = "crystal palace" | ### Context: CREATE TABLE table_name_42 (tie_no VARCHAR, home_team VARCHAR) ### Question: What was the tie for the Crystal Palace team? ### Answer: SELECT tie_no FROM table_name_42 WHERE home_team = "crystal palace" |
What is the attendance for No. 15 tie? | CREATE TABLE table_name_72 (attendance VARCHAR, tie_no VARCHAR) | SELECT attendance FROM table_name_72 WHERE tie_no = "15" | ### Context: CREATE TABLE table_name_72 (attendance VARCHAR, tie_no VARCHAR) ### Question: What is the attendance for No. 15 tie? ### Answer: SELECT attendance FROM table_name_72 WHERE tie_no = "15" |
WHich Open Cup has a Division larger than 4? | CREATE TABLE table_name_30 (open_cup VARCHAR, division INTEGER) | SELECT open_cup FROM table_name_30 WHERE division > 4 | ### Context: CREATE TABLE table_name_30 (open_cup VARCHAR, division INTEGER) ### Question: WHich Open Cup has a Division larger than 4? ### Answer: SELECT open_cup FROM table_name_30 WHERE division > 4 |
Name the League which has a Regular Season of 3rd, atlantic? | CREATE TABLE table_name_86 (league VARCHAR, regular_season VARCHAR) | SELECT league FROM table_name_86 WHERE regular_season = "3rd, atlantic" | ### Context: CREATE TABLE table_name_86 (league VARCHAR, regular_season VARCHAR) ### Question: Name the League which has a Regular Season of 3rd, atlantic? ### Answer: SELECT league FROM table_name_86 WHERE regular_season = "3rd, atlantic" |
WHICH Regular Season has a Division of 4? | CREATE TABLE table_name_19 (regular_season VARCHAR, division VARCHAR) | SELECT regular_season FROM table_name_19 WHERE division = 4 | ### Context: CREATE TABLE table_name_19 (regular_season VARCHAR, division VARCHAR) ### Question: WHICH Regular Season has a Division of 4? ### Answer: SELECT regular_season FROM table_name_19 WHERE division = 4 |
WHICH Regular Season has a League of npsl, and a Year of 2008? | CREATE TABLE table_name_64 (regular_season VARCHAR, league VARCHAR, year VARCHAR) | SELECT regular_season FROM table_name_64 WHERE league = "npsl" AND year = "2008" | ### Context: CREATE TABLE table_name_64 (regular_season VARCHAR, league VARCHAR, year VARCHAR) ### Question: WHICH Regular Season has a League of npsl, and a Year of 2008? ### Answer: SELECT regular_season FROM table_name_64 WHERE league = "npsl" AND year = "2008" |
NAME THE Playoffs that HAVE a League of npsl, and a Open Cup of did not enter, and a Year of 2013? | CREATE TABLE table_name_8 (playoffs VARCHAR, year VARCHAR, league VARCHAR, open_cup VARCHAR) | SELECT playoffs FROM table_name_8 WHERE league = "npsl" AND open_cup = "did not enter" AND year = "2013" | ### Context: CREATE TABLE table_name_8 (playoffs VARCHAR, year VARCHAR, league VARCHAR, open_cup VARCHAR) ### Question: NAME THE Playoffs that HAVE a League of npsl, and a Open Cup of did not enter, and a Year of 2013? ### Answer: SELECT playoffs FROM table_name_8 WHERE league = "npsl" AND open_cup = "did not enter" AND year = "2013" |
What is the average February that has 18-26-10 as the record, with a game less than 54? | CREATE TABLE table_name_11 (february INTEGER, record VARCHAR, game VARCHAR) | SELECT AVG(february) FROM table_name_11 WHERE record = "18-26-10" AND game < 54 | ### Context: CREATE TABLE table_name_11 (february INTEGER, record VARCHAR, game VARCHAR) ### Question: What is the average February that has 18-26-10 as the record, with a game less than 54? ### Answer: SELECT AVG(february) FROM table_name_11 WHERE record = "18-26-10" AND game < 54 |
How many Februarys have montreal canadiens as the opponent, and 18-25-10 as the record, with a game greater than 53? | CREATE TABLE table_name_32 (february VARCHAR, game VARCHAR, opponent VARCHAR, record VARCHAR) | SELECT COUNT(february) FROM table_name_32 WHERE opponent = "montreal canadiens" AND record = "18-25-10" AND game > 53 | ### Context: CREATE TABLE table_name_32 (february VARCHAR, game VARCHAR, opponent VARCHAR, record VARCHAR) ### Question: How many Februarys have montreal canadiens as the opponent, and 18-25-10 as the record, with a game greater than 53? ### Answer: SELECT COUNT(february) FROM table_name_32 WHERE opponent = "montreal canadiens" AND record = "18-25-10" AND game > 53 |
what is the surface when the opponent is selma babic? | CREATE TABLE table_name_31 (surface VARCHAR, opponent VARCHAR) | SELECT surface FROM table_name_31 WHERE opponent = "selma babic" | ### Context: CREATE TABLE table_name_31 (surface VARCHAR, opponent VARCHAR) ### Question: what is the surface when the opponent is selma babic? ### Answer: SELECT surface FROM table_name_31 WHERE opponent = "selma babic" |
what is the surface when the round is gii play-offs and the edition is 2009 fed cup europe/africa group ii? | CREATE TABLE table_name_65 (surface VARCHAR, round VARCHAR, edition VARCHAR) | SELECT surface FROM table_name_65 WHERE round = "gii play-offs" AND edition = "2009 fed cup europe/africa group ii" | ### Context: CREATE TABLE table_name_65 (surface VARCHAR, round VARCHAR, edition VARCHAR) ### Question: what is the surface when the round is gii play-offs and the edition is 2009 fed cup europe/africa group ii? ### Answer: SELECT surface FROM table_name_65 WHERE round = "gii play-offs" AND edition = "2009 fed cup europe/africa group ii" |
what is the date when the surface is clay and the result is 6β7 (4β7) , 1β6? | CREATE TABLE table_name_99 (date VARCHAR, surface VARCHAR, result VARCHAR) | SELECT date FROM table_name_99 WHERE surface = "clay" AND result = "6β7 (4β7) , 1β6" | ### Context: CREATE TABLE table_name_99 (date VARCHAR, surface VARCHAR, result VARCHAR) ### Question: what is the date when the surface is clay and the result is 6β7 (4β7) , 1β6? ### Answer: SELECT date FROM table_name_99 WHERE surface = "clay" AND result = "6β7 (4β7) , 1β6" |
who is the opponent when norway is against? | CREATE TABLE table_name_67 (opponent VARCHAR, against VARCHAR) | SELECT opponent FROM table_name_67 WHERE against = "norway" | ### Context: CREATE TABLE table_name_67 (opponent VARCHAR, against VARCHAR) ### Question: who is the opponent when norway is against? ### Answer: SELECT opponent FROM table_name_67 WHERE against = "norway" |
What is Postion, when Weight is greater than 220, and when Player is "Travis Knight"? | CREATE TABLE table_name_28 (position VARCHAR, weight VARCHAR, player VARCHAR) | SELECT position FROM table_name_28 WHERE weight > 220 AND player = "travis knight" | ### Context: CREATE TABLE table_name_28 (position VARCHAR, weight VARCHAR, player VARCHAR) ### Question: What is Postion, when Weight is greater than 220, and when Player is "Travis Knight"? ### Answer: SELECT position FROM table_name_28 WHERE weight > 220 AND player = "travis knight" |
What is the lowest Number, when College is "University of Alabama"? | CREATE TABLE table_name_48 (number INTEGER, college VARCHAR) | SELECT MIN(number) FROM table_name_48 WHERE college = "university of alabama" | ### Context: CREATE TABLE table_name_48 (number INTEGER, college VARCHAR) ### Question: What is the lowest Number, when College is "University of Alabama"? ### Answer: SELECT MIN(number) FROM table_name_48 WHERE college = "university of alabama" |
What is the total number of Weight, when Position is "Forward/Center", when Player is "Othella Harrington", and when Number is less than 32? | CREATE TABLE table_name_90 (weight VARCHAR, number VARCHAR, position VARCHAR, player VARCHAR) | SELECT COUNT(weight) FROM table_name_90 WHERE position = "forward/center" AND player = "othella harrington" AND number < 32 | ### Context: CREATE TABLE table_name_90 (weight VARCHAR, number VARCHAR, position VARCHAR, player VARCHAR) ### Question: What is the total number of Weight, when Position is "Forward/Center", when Player is "Othella Harrington", and when Number is less than 32? ### Answer: SELECT COUNT(weight) FROM table_name_90 WHERE position = "forward/center" AND player = "othella harrington" AND number < 32 |
What is Years Exp, when Height is "7-2"? | CREATE TABLE table_name_94 (years_exp VARCHAR, height VARCHAR) | SELECT years_exp FROM table_name_94 WHERE height = "7-2" | ### Context: CREATE TABLE table_name_94 (years_exp VARCHAR, height VARCHAR) ### Question: What is Years Exp, when Height is "7-2"? ### Answer: SELECT years_exp FROM table_name_94 WHERE height = "7-2" |
What is Position, when Weight is greater than 200, when Number is less than 44, when Years Exp is 9, and when College is "University of New Mexico"? | CREATE TABLE table_name_68 (position VARCHAR, college VARCHAR, years_exp VARCHAR, weight VARCHAR, number VARCHAR) | SELECT position FROM table_name_68 WHERE weight > 200 AND number < 44 AND years_exp = "9" AND college = "university of new mexico" | ### Context: CREATE TABLE table_name_68 (position VARCHAR, college VARCHAR, years_exp VARCHAR, weight VARCHAR, number VARCHAR) ### Question: What is Position, when Weight is greater than 200, when Number is less than 44, when Years Exp is 9, and when College is "University of New Mexico"? ### Answer: SELECT position FROM table_name_68 WHERE weight > 200 AND number < 44 AND years_exp = "9" AND college = "university of new mexico" |
What was the release price of the Atom Z510PT processor? | CREATE TABLE table_name_53 (release_price___usd__ VARCHAR, model_number VARCHAR) | SELECT release_price___usd__ FROM table_name_53 WHERE model_number = "atom z510pt" | ### Context: CREATE TABLE table_name_53 (release_price___usd__ VARCHAR, model_number VARCHAR) ### Question: What was the release price of the Atom Z510PT processor? ### Answer: SELECT release_price___usd__ FROM table_name_53 WHERE model_number = "atom z510pt" |
Which part number was used for the Atom Z500 processor? | CREATE TABLE table_name_51 (part_number_s_ VARCHAR, model_number VARCHAR) | SELECT part_number_s_ FROM table_name_51 WHERE model_number = "atom z500" | ### Context: CREATE TABLE table_name_51 (part_number_s_ VARCHAR, model_number VARCHAR) ### Question: Which part number was used for the Atom Z500 processor? ### Answer: SELECT part_number_s_ FROM table_name_51 WHERE model_number = "atom z500" |
What was the multiplier of the processor with sSpec number of SLGPR(C0) and a release price of N/A? | CREATE TABLE table_name_35 (mult VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR) | SELECT mult FROM table_name_35 WHERE release_price___usd__ = "n/a" AND sspec_number = "slgpr(c0)" | ### Context: CREATE TABLE table_name_35 (mult VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR) ### Question: What was the multiplier of the processor with sSpec number of SLGPR(C0) and a release price of N/A? ### Answer: SELECT mult FROM table_name_35 WHERE release_price___usd__ = "n/a" AND sspec_number = "slgpr(c0)" |
Who is the runner-up at the Chicago challenge? | CREATE TABLE table_name_68 (runner_s__up VARCHAR, tournament VARCHAR) | SELECT runner_s__up FROM table_name_68 WHERE tournament = "chicago challenge" | ### Context: CREATE TABLE table_name_68 (runner_s__up VARCHAR, tournament VARCHAR) ### Question: Who is the runner-up at the Chicago challenge? ### Answer: SELECT runner_s__up FROM table_name_68 WHERE tournament = "chicago challenge" |
Who is the runner-up of Atlantic city classic? | CREATE TABLE table_name_42 (runner_s__up VARCHAR, tournament VARCHAR) | SELECT runner_s__up FROM table_name_42 WHERE tournament = "atlantic city classic" | ### Context: CREATE TABLE table_name_42 (runner_s__up VARCHAR, tournament VARCHAR) ### Question: Who is the runner-up of Atlantic city classic? ### Answer: SELECT runner_s__up FROM table_name_42 WHERE tournament = "atlantic city classic" |
What is the date of the U.S. Women's open? | CREATE TABLE table_name_61 (date VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_61 WHERE tournament = "u.s. women's open" | ### Context: CREATE TABLE table_name_61 (date VARCHAR, tournament VARCHAR) ### Question: What is the date of the U.S. Women's open? ### Answer: SELECT date FROM table_name_61 WHERE tournament = "u.s. women's open" |
What is the margin of victory of the gna/glendale federal classic? | CREATE TABLE table_name_8 (margin_of_victory VARCHAR, tournament VARCHAR) | SELECT margin_of_victory FROM table_name_8 WHERE tournament = "gna/glendale federal classic" | ### Context: CREATE TABLE table_name_8 (margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What is the margin of victory of the gna/glendale federal classic? ### Answer: SELECT margin_of_victory FROM table_name_8 WHERE tournament = "gna/glendale federal classic" |
Which class has *buranaz as Part 4? | CREATE TABLE table_name_34 (class VARCHAR, part_4 VARCHAR) | SELECT class FROM table_name_34 WHERE part_4 = "*buranaz" | ### Context: CREATE TABLE table_name_34 (class VARCHAR, part_4 VARCHAR) ### Question: Which class has *buranaz as Part 4? ### Answer: SELECT class FROM table_name_34 WHERE part_4 = "*buranaz" |
What is the verb meaning for *bar as Part 2? | CREATE TABLE table_name_88 (verb_meaning VARCHAR, part_2 VARCHAR) | SELECT verb_meaning FROM table_name_88 WHERE part_2 = "*bar" | ### Context: CREATE TABLE table_name_88 (verb_meaning VARCHAR, part_2 VARCHAR) ### Question: What is the verb meaning for *bar as Part 2? ### Answer: SELECT verb_meaning FROM table_name_88 WHERE part_2 = "*bar" |
Which class has *alanaz as Part 4? | CREATE TABLE table_name_62 (class VARCHAR, part_4 VARCHAR) | SELECT class FROM table_name_62 WHERE part_4 = "*alanaz" | ### Context: CREATE TABLE table_name_62 (class VARCHAR, part_4 VARCHAR) ### Question: Which class has *alanaz as Part 4? ### Answer: SELECT class FROM table_name_62 WHERE part_4 = "*alanaz" |
Which class has *fraus as Part 2? | CREATE TABLE table_name_59 (class VARCHAR, part_2 VARCHAR) | SELECT class FROM table_name_59 WHERE part_2 = "*fraus" | ### Context: CREATE TABLE table_name_59 (class VARCHAR, part_2 VARCHAR) ### Question: Which class has *fraus as Part 2? ### Answer: SELECT class FROM table_name_59 WHERE part_2 = "*fraus" |
what is the transfer fee for evilasio? | CREATE TABLE table_name_60 (transfer_fee VARCHAR, name VARCHAR) | SELECT transfer_fee FROM table_name_60 WHERE name = "evilasio" | ### Context: CREATE TABLE table_name_60 (transfer_fee VARCHAR, name VARCHAR) ### Question: what is the transfer fee for evilasio? ### Answer: SELECT transfer_fee FROM table_name_60 WHERE name = "evilasio" |
What team did James Vanderberg belong to when the Completions had a status of redshirt? | CREATE TABLE table_name_21 (team VARCHAR, completions VARCHAR) | SELECT team FROM table_name_21 WHERE completions = "redshirt" | ### Context: CREATE TABLE table_name_21 (team VARCHAR, completions VARCHAR) ### Question: What team did James Vanderberg belong to when the Completions had a status of redshirt? ### Answer: SELECT team FROM table_name_21 WHERE completions = "redshirt" |
What were the number of completions for James Vanderberg on Iowa when his yards were 45? | CREATE TABLE table_name_72 (completions VARCHAR, team VARCHAR, yards VARCHAR) | SELECT completions FROM table_name_72 WHERE team = "iowa" AND yards = "45" | ### Context: CREATE TABLE table_name_72 (completions VARCHAR, team VARCHAR, yards VARCHAR) ### Question: What were the number of completions for James Vanderberg on Iowa when his yards were 45? ### Answer: SELECT completions FROM table_name_72 WHERE team = "iowa" AND yards = "45" |
What was the team Vanderberg belonged to when there was 42 completions? | CREATE TABLE table_name_19 (team VARCHAR, completions VARCHAR) | SELECT team FROM table_name_19 WHERE completions = "42" | ### Context: CREATE TABLE table_name_19 (team VARCHAR, completions VARCHAR) ### Question: What was the team Vanderberg belonged to when there was 42 completions? ### Answer: SELECT team FROM table_name_19 WHERE completions = "42" |
What number of attempts were recorded when the completions were 223? | CREATE TABLE table_name_17 (attempts VARCHAR, completions VARCHAR) | SELECT attempts FROM table_name_17 WHERE completions = "223" | ### Context: CREATE TABLE table_name_17 (attempts VARCHAR, completions VARCHAR) ### Question: What number of attempts were recorded when the completions were 223? ### Answer: SELECT attempts FROM table_name_17 WHERE completions = "223" |
In what year was the number of attempts 888? | CREATE TABLE table_name_96 (year VARCHAR, attempts VARCHAR) | SELECT year FROM table_name_96 WHERE attempts = "888" | ### Context: CREATE TABLE table_name_96 (year VARCHAR, attempts VARCHAR) ### Question: In what year was the number of attempts 888? ### Answer: SELECT year FROM table_name_96 WHERE attempts = "888" |
What was the number of attempts for Vanderberg on Iowa when the recorded yards were 2,249? | CREATE TABLE table_name_42 (attempts VARCHAR, team VARCHAR, yards VARCHAR) | SELECT attempts FROM table_name_42 WHERE team = "iowa" AND yards = "2,249" | ### Context: CREATE TABLE table_name_42 (attempts VARCHAR, team VARCHAR, yards VARCHAR) ### Question: What was the number of attempts for Vanderberg on Iowa when the recorded yards were 2,249? ### Answer: SELECT attempts FROM table_name_42 WHERE team = "iowa" AND yards = "2,249" |
Which Leading Scorer has an Opponent of @ indiana? | CREATE TABLE table_name_10 (Leading VARCHAR, opponent VARCHAR) | SELECT Leading AS scorer FROM table_name_10 WHERE opponent = "@ indiana" | ### Context: CREATE TABLE table_name_10 (Leading VARCHAR, opponent VARCHAR) ### Question: Which Leading Scorer has an Opponent of @ indiana? ### Answer: SELECT Leading AS scorer FROM table_name_10 WHERE opponent = "@ indiana" |
Which Leading Scorer has a Record of 3-3? | CREATE TABLE table_name_70 (Leading VARCHAR, record VARCHAR) | SELECT Leading AS scorer FROM table_name_70 WHERE record = "3-3" | ### Context: CREATE TABLE table_name_70 (Leading VARCHAR, record VARCHAR) ### Question: Which Leading Scorer has a Record of 3-3? ### Answer: SELECT Leading AS scorer FROM table_name_70 WHERE record = "3-3" |
What is the date when tie number is 6? | CREATE TABLE table_name_98 (date VARCHAR, tie_no VARCHAR) | SELECT date FROM table_name_98 WHERE tie_no = "6" | ### Context: CREATE TABLE table_name_98 (date VARCHAR, tie_no VARCHAR) ### Question: What is the date when tie number is 6? ### Answer: SELECT date FROM table_name_98 WHERE tie_no = "6" |
Who is the home team with tie number 9? | CREATE TABLE table_name_93 (home_team VARCHAR, tie_no VARCHAR) | SELECT home_team FROM table_name_93 WHERE tie_no = "9" | ### Context: CREATE TABLE table_name_93 (home_team VARCHAR, tie_no VARCHAR) ### Question: Who is the home team with tie number 9? ### Answer: SELECT home_team FROM table_name_93 WHERE tie_no = "9" |
Who is the home team when Sheffield United is the away team? | CREATE TABLE table_name_38 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_38 WHERE away_team = "sheffield united" | ### Context: CREATE TABLE table_name_38 (home_team VARCHAR, away_team VARCHAR) ### Question: Who is the home team when Sheffield United is the away team? ### Answer: SELECT home_team FROM table_name_38 WHERE away_team = "sheffield united" |
What is the date when Aston Villa is the away team? | CREATE TABLE table_name_98 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_98 WHERE away_team = "aston villa" | ### Context: CREATE TABLE table_name_98 (date VARCHAR, away_team VARCHAR) ### Question: What is the date when Aston Villa is the away team? ### Answer: SELECT date FROM table_name_98 WHERE away_team = "aston villa" |
Who is the home team on 31 January 1951 when away team was Sheffield United? | CREATE TABLE table_name_75 (home_team VARCHAR, date VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_75 WHERE date = "31 january 1951" AND away_team = "sheffield united" | ### Context: CREATE TABLE table_name_75 (home_team VARCHAR, date VARCHAR, away_team VARCHAR) ### Question: Who is the home team on 31 January 1951 when away team was Sheffield United? ### Answer: SELECT home_team FROM table_name_75 WHERE date = "31 january 1951" AND away_team = "sheffield united" |
What was the attendance during the match that took place after week 11 against the washington redskins? | CREATE TABLE table_name_62 (attendance INTEGER, week VARCHAR, opponent VARCHAR) | SELECT MAX(attendance) FROM table_name_62 WHERE week > 11 AND opponent = "washington redskins" | ### Context: CREATE TABLE table_name_62 (attendance INTEGER, week VARCHAR, opponent VARCHAR) ### Question: What was the attendance during the match that took place after week 11 against the washington redskins? ### Answer: SELECT MAX(attendance) FROM table_name_62 WHERE week > 11 AND opponent = "washington redskins" |
WHAT IS THE TO PAR FOR GEOFF OGILVY WITH A PLACE OF T3? | CREATE TABLE table_name_94 (to_par VARCHAR, place VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_94 WHERE place = "t3" AND player = "geoff ogilvy" | ### Context: CREATE TABLE table_name_94 (to_par VARCHAR, place VARCHAR, player VARCHAR) ### Question: WHAT IS THE TO PAR FOR GEOFF OGILVY WITH A PLACE OF T3? ### Answer: SELECT to_par FROM table_name_94 WHERE place = "t3" AND player = "geoff ogilvy" |
What year has the ride flight deck and a rating of less than 5? | CREATE TABLE table_name_47 (year_opened VARCHAR, ride VARCHAR, rating VARCHAR) | SELECT COUNT(year_opened) FROM table_name_47 WHERE ride = "flight deck" AND rating < 5 | ### Context: CREATE TABLE table_name_47 (year_opened VARCHAR, ride VARCHAR, rating VARCHAR) ### Question: What year has the ride flight deck and a rating of less than 5? ### Answer: SELECT COUNT(year_opened) FROM table_name_47 WHERE ride = "flight deck" AND rating < 5 |
what is other names when death is may 23, 1821? | CREATE TABLE table_name_36 (other_names VARCHAR, death VARCHAR) | SELECT other_names FROM table_name_36 WHERE death = "may 23, 1821" | ### Context: CREATE TABLE table_name_36 (other_names VARCHAR, death VARCHAR) ### Question: what is other names when death is may 23, 1821? ### Answer: SELECT other_names FROM table_name_36 WHERE death = "may 23, 1821" |
what is the name when death is november 10, 1842? | CREATE TABLE table_name_80 (name VARCHAR, death VARCHAR) | SELECT name FROM table_name_80 WHERE death = "november 10, 1842" | ### Context: CREATE TABLE table_name_80 (name VARCHAR, death VARCHAR) ### Question: what is the name when death is november 10, 1842? ### Answer: SELECT name FROM table_name_80 WHERE death = "november 10, 1842" |
What is Internet Plan, when Price is "22 EUR"? | CREATE TABLE table_name_48 (internet_plan VARCHAR, price VARCHAR) | SELECT internet_plan FROM table_name_48 WHERE price = "22 eur" | ### Context: CREATE TABLE table_name_48 (internet_plan VARCHAR, price VARCHAR) ### Question: What is Internet Plan, when Price is "22 EUR"? ### Answer: SELECT internet_plan FROM table_name_48 WHERE price = "22 eur" |
What is Downstream, when Upstream is "384 kbit"? | CREATE TABLE table_name_88 (downstream VARCHAR, upstream VARCHAR) | SELECT downstream FROM table_name_88 WHERE upstream = "384 kbit" | ### Context: CREATE TABLE table_name_88 (downstream VARCHAR, upstream VARCHAR) ### Question: What is Downstream, when Upstream is "384 kbit"? ### Answer: SELECT downstream FROM table_name_88 WHERE upstream = "384 kbit" |
What is Bandwidth Included, when Price is "50 EUR"? | CREATE TABLE table_name_45 (bandwidth_included VARCHAR, price VARCHAR) | SELECT bandwidth_included FROM table_name_45 WHERE price = "50 eur" | ### Context: CREATE TABLE table_name_45 (bandwidth_included VARCHAR, price VARCHAR) ### Question: What is Bandwidth Included, when Price is "50 EUR"? ### Answer: SELECT bandwidth_included FROM table_name_45 WHERE price = "50 eur" |
What is Upstream, when Price is "14 EUR"? | CREATE TABLE table_name_25 (upstream VARCHAR, price VARCHAR) | SELECT upstream FROM table_name_25 WHERE price = "14 eur" | ### Context: CREATE TABLE table_name_25 (upstream VARCHAR, price VARCHAR) ### Question: What is Upstream, when Price is "14 EUR"? ### Answer: SELECT upstream FROM table_name_25 WHERE price = "14 eur" |
What is Bandwidth Included, when Internet Plan is "8mb"? | CREATE TABLE table_name_85 (bandwidth_included VARCHAR, internet_plan VARCHAR) | SELECT bandwidth_included FROM table_name_85 WHERE internet_plan = "8mb" | ### Context: CREATE TABLE table_name_85 (bandwidth_included VARCHAR, internet_plan VARCHAR) ### Question: What is Bandwidth Included, when Internet Plan is "8mb"? ### Answer: SELECT bandwidth_included FROM table_name_85 WHERE internet_plan = "8mb" |
What is the Price, when Upstream is "256 kbit"? | CREATE TABLE table_name_64 (price VARCHAR, upstream VARCHAR) | SELECT price FROM table_name_64 WHERE upstream = "256 kbit" | ### Context: CREATE TABLE table_name_64 (price VARCHAR, upstream VARCHAR) ### Question: What is the Price, when Upstream is "256 kbit"? ### Answer: SELECT price FROM table_name_64 WHERE upstream = "256 kbit" |
Which Semifinalists has a Finalist of andre agassi? | CREATE TABLE table_name_23 (semifinalists VARCHAR, finalist VARCHAR) | SELECT semifinalists FROM table_name_23 WHERE finalist = "andre agassi" | ### Context: CREATE TABLE table_name_23 (semifinalists VARCHAR, finalist VARCHAR) ### Question: Which Semifinalists has a Finalist of andre agassi? ### Answer: SELECT semifinalists FROM table_name_23 WHERE finalist = "andre agassi" |
WHich Tournament has a Finalist of gustavo kuerten (4)? | CREATE TABLE table_name_31 (tournament VARCHAR, finalist VARCHAR) | SELECT tournament FROM table_name_31 WHERE finalist = "gustavo kuerten (4)" | ### Context: CREATE TABLE table_name_31 (tournament VARCHAR, finalist VARCHAR) ### Question: WHich Tournament has a Finalist of gustavo kuerten (4)? ### Answer: SELECT tournament FROM table_name_31 WHERE finalist = "gustavo kuerten (4)" |
Which finalist has Semifinalists of andre agassi (1) lleyton hewitt (14)? | CREATE TABLE table_name_3 (finalist VARCHAR, semifinalists VARCHAR) | SELECT finalist FROM table_name_3 WHERE semifinalists = "andre agassi (1) lleyton hewitt (14)" | ### Context: CREATE TABLE table_name_3 (finalist VARCHAR, semifinalists VARCHAR) ### Question: Which finalist has Semifinalists of andre agassi (1) lleyton hewitt (14)? ### Answer: SELECT finalist FROM table_name_3 WHERE semifinalists = "andre agassi (1) lleyton hewitt (14)" |
Which Finalist has a Tournament of monte carlo? | CREATE TABLE table_name_20 (finalist VARCHAR, tournament VARCHAR) | SELECT finalist FROM table_name_20 WHERE tournament = "monte carlo" | ### Context: CREATE TABLE table_name_20 (finalist VARCHAR, tournament VARCHAR) ### Question: Which Finalist has a Tournament of monte carlo? ### Answer: SELECT finalist FROM table_name_20 WHERE tournament = "monte carlo" |
WHo is the Winner of andre agassi Finalist? | CREATE TABLE table_name_97 (winner VARCHAR, finalist VARCHAR) | SELECT winner FROM table_name_97 WHERE finalist = "andre agassi" | ### Context: CREATE TABLE table_name_97 (winner VARCHAR, finalist VARCHAR) ### Question: WHo is the Winner of andre agassi Finalist? ### Answer: SELECT winner FROM table_name_97 WHERE finalist = "andre agassi" |
WHich Tournament has a Finalist of marat safin (12)? | CREATE TABLE table_name_47 (tournament VARCHAR, finalist VARCHAR) | SELECT tournament FROM table_name_47 WHERE finalist = "marat safin (12)" | ### Context: CREATE TABLE table_name_47 (tournament VARCHAR, finalist VARCHAR) ### Question: WHich Tournament has a Finalist of marat safin (12)? ### Answer: SELECT tournament FROM table_name_47 WHERE finalist = "marat safin (12)" |
What was the date for the Sepang International circuit, round 3? | CREATE TABLE table_name_40 (date VARCHAR, circuit VARCHAR, round VARCHAR) | SELECT date FROM table_name_40 WHERE circuit = "sepang international circuit" AND round = "3" | ### Context: CREATE TABLE table_name_40 (date VARCHAR, circuit VARCHAR, round VARCHAR) ### Question: What was the date for the Sepang International circuit, round 3? ### Answer: SELECT date FROM table_name_40 WHERE circuit = "sepang international circuit" AND round = "3" |
Which round had a winning driver of Uwe Alzen, at the Sepang International circuit? | CREATE TABLE table_name_80 (round VARCHAR, winning_driver VARCHAR, circuit VARCHAR) | SELECT round FROM table_name_80 WHERE winning_driver = "uwe alzen" AND circuit = "sepang international circuit" | ### Context: CREATE TABLE table_name_80 (round VARCHAR, winning_driver VARCHAR, circuit VARCHAR) ### Question: Which round had a winning driver of Uwe Alzen, at the Sepang International circuit? ### Answer: SELECT round FROM table_name_80 WHERE winning_driver = "uwe alzen" AND circuit = "sepang international circuit" |
What was the round number for March 22? | CREATE TABLE table_name_92 (round VARCHAR, date VARCHAR) | SELECT round FROM table_name_92 WHERE date = "march 22" | ### Context: CREATE TABLE table_name_92 (round VARCHAR, date VARCHAR) ### Question: What was the round number for March 22? ### Answer: SELECT round FROM table_name_92 WHERE date = "march 22" |
Who had the high points in the game @ Charlotte? | CREATE TABLE table_name_98 (high_points VARCHAR, team VARCHAR) | SELECT high_points FROM table_name_98 WHERE team = "@ charlotte" | ### Context: CREATE TABLE table_name_98 (high_points VARCHAR, team VARCHAR) ### Question: Who had the high points in the game @ Charlotte? ### Answer: SELECT high_points FROM table_name_98 WHERE team = "@ charlotte" |
What's the record of Game 70? | CREATE TABLE table_name_77 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_77 WHERE game = 70 | ### Context: CREATE TABLE table_name_77 (record VARCHAR, game VARCHAR) ### Question: What's the record of Game 70? ### Answer: SELECT record FROM table_name_77 WHERE game = 70 |
Who had the high points when they played in Philips Arena 14,413? | CREATE TABLE table_name_48 (high_points VARCHAR, location_attendance VARCHAR) | SELECT high_points FROM table_name_48 WHERE location_attendance = "philips arena 14,413" | ### Context: CREATE TABLE table_name_48 (high_points VARCHAR, location_attendance VARCHAR) ### Question: Who had the high points when they played in Philips Arena 14,413? ### Answer: SELECT high_points FROM table_name_48 WHERE location_attendance = "philips arena 14,413" |
What is the date of the game that took place at the Resch Center? | CREATE TABLE table_name_41 (date VARCHAR, game_site VARCHAR) | SELECT date FROM table_name_41 WHERE game_site = "resch center" | ### Context: CREATE TABLE table_name_41 (date VARCHAR, game_site VARCHAR) ### Question: What is the date of the game that took place at the Resch Center? ### Answer: SELECT date FROM table_name_41 WHERE game_site = "resch center" |
Which network returns april 3, and a Show of shop 'til you drop? | CREATE TABLE table_name_35 (new_returning_same_network VARCHAR, returning VARCHAR, show VARCHAR) | SELECT new_returning_same_network FROM table_name_35 WHERE returning = "april 3" AND show = "shop 'til you drop" | ### Context: CREATE TABLE table_name_35 (new_returning_same_network VARCHAR, returning VARCHAR, show VARCHAR) ### Question: Which network returns april 3, and a Show of shop 'til you drop? ### Answer: SELECT new_returning_same_network FROM table_name_35 WHERE returning = "april 3" AND show = "shop 'til you drop" |
Which retitled network has a Show of supermarket sweep? | CREATE TABLE table_name_92 (retitled_as_same VARCHAR, show VARCHAR) | SELECT retitled_as_same FROM table_name_92 WHERE show = "supermarket sweep" | ### Context: CREATE TABLE table_name_92 (retitled_as_same VARCHAR, show VARCHAR) ### Question: Which retitled network has a Show of supermarket sweep? ### Answer: SELECT retitled_as_same FROM table_name_92 WHERE show = "supermarket sweep" |
Which show returns april 3 with a Previous Network of lifetime? | CREATE TABLE table_name_44 (retitled_as_same VARCHAR, returning VARCHAR, previous_network VARCHAR) | SELECT retitled_as_same FROM table_name_44 WHERE returning = "april 3" AND previous_network = "lifetime" | ### Context: CREATE TABLE table_name_44 (retitled_as_same VARCHAR, returning VARCHAR, previous_network VARCHAR) ### Question: Which show returns april 3 with a Previous Network of lifetime? ### Answer: SELECT retitled_as_same FROM table_name_44 WHERE returning = "april 3" AND previous_network = "lifetime" |
What is the lowest grid number for Yamaha? | CREATE TABLE table_name_3 (grid INTEGER, manufacturer VARCHAR) | SELECT MIN(grid) FROM table_name_3 WHERE manufacturer = "yamaha" | ### Context: CREATE TABLE table_name_3 (grid INTEGER, manufacturer VARCHAR) ### Question: What is the lowest grid number for Yamaha? ### Answer: SELECT MIN(grid) FROM table_name_3 WHERE manufacturer = "yamaha" |
How many laps had a grid over 16 and a Time of +1:35.890? | CREATE TABLE table_name_79 (laps VARCHAR, grid VARCHAR, time VARCHAR) | SELECT laps FROM table_name_79 WHERE grid > 16 AND time = "+1:35.890" | ### Context: CREATE TABLE table_name_79 (laps VARCHAR, grid VARCHAR, time VARCHAR) ### Question: How many laps had a grid over 16 and a Time of +1:35.890? ### Answer: SELECT laps FROM table_name_79 WHERE grid > 16 AND time = "+1:35.890" |
What was the lowest lab for Gilera with a grid less than 12? | CREATE TABLE table_name_81 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR) | SELECT MIN(laps) FROM table_name_81 WHERE manufacturer = "gilera" AND grid < 12 | ### Context: CREATE TABLE table_name_81 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR) ### Question: What was the lowest lab for Gilera with a grid less than 12? ### Answer: SELECT MIN(laps) FROM table_name_81 WHERE manufacturer = "gilera" AND grid < 12 |
What is the highest Grid with a time of +1:19.905, and less than 20 laps? | CREATE TABLE table_name_22 (grid INTEGER, time VARCHAR, laps VARCHAR) | SELECT MAX(grid) FROM table_name_22 WHERE time = "+1:19.905" AND laps < 20 | ### Context: CREATE TABLE table_name_22 (grid INTEGER, time VARCHAR, laps VARCHAR) ### Question: What is the highest Grid with a time of +1:19.905, and less than 20 laps? ### Answer: SELECT MAX(grid) FROM table_name_22 WHERE time = "+1:19.905" AND laps < 20 |
What Rider has a Grid of 21? | CREATE TABLE table_name_91 (rider VARCHAR, grid VARCHAR) | SELECT rider FROM table_name_91 WHERE grid = 21 | ### Context: CREATE TABLE table_name_91 (rider VARCHAR, grid VARCHAR) ### Question: What Rider has a Grid of 21? ### Answer: SELECT rider FROM table_name_91 WHERE grid = 21 |
Who is the away captain when the game resulted in [[|]] by 7 wickets? | CREATE TABLE table_name_68 (away_captain VARCHAR, result VARCHAR) | SELECT away_captain FROM table_name_68 WHERE result = "[[|]] by 7 wickets" | ### Context: CREATE TABLE table_name_68 (away_captain VARCHAR, result VARCHAR) ### Question: Who is the away captain when the game resulted in [[|]] by 7 wickets? ### Answer: SELECT away_captain FROM table_name_68 WHERE result = "[[|]] by 7 wickets" |
Who is the home captain of the match that resulted [[|]] by 151 runs? | CREATE TABLE table_name_70 (home_captain VARCHAR, result VARCHAR) | SELECT home_captain FROM table_name_70 WHERE result = "[[|]] by 151 runs" | ### Context: CREATE TABLE table_name_70 (home_captain VARCHAR, result VARCHAR) ### Question: Who is the home captain of the match that resulted [[|]] by 151 runs? ### Answer: SELECT home_captain FROM table_name_70 WHERE result = "[[|]] by 151 runs" |
How many totals have a To par of β1? | CREATE TABLE table_name_98 (total INTEGER, to_par VARCHAR) | SELECT SUM(total) FROM table_name_98 WHERE to_par = "β1" | ### Context: CREATE TABLE table_name_98 (total INTEGER, to_par VARCHAR) ### Question: How many totals have a To par of β1? ### Answer: SELECT SUM(total) FROM table_name_98 WHERE to_par = "β1" |
Which Year(s) won has a Total smaller than 285, and a Player of tom watson? | CREATE TABLE table_name_51 (year_s__won VARCHAR, total VARCHAR, player VARCHAR) | SELECT year_s__won FROM table_name_51 WHERE total < 285 AND player = "tom watson" | ### Context: CREATE TABLE table_name_51 (year_s__won VARCHAR, total VARCHAR, player VARCHAR) ### Question: Which Year(s) won has a Total smaller than 285, and a Player of tom watson? ### Answer: SELECT year_s__won FROM table_name_51 WHERE total < 285 AND player = "tom watson" |
Which Finish has a Total of 288? | CREATE TABLE table_name_12 (finish VARCHAR, total VARCHAR) | SELECT finish FROM table_name_12 WHERE total = 288 | ### Context: CREATE TABLE table_name_12 (finish VARCHAR, total VARCHAR) ### Question: Which Finish has a Total of 288? ### Answer: SELECT finish FROM table_name_12 WHERE total = 288 |
Who won in 1991? | CREATE TABLE table_name_89 (player VARCHAR, year_s__won VARCHAR) | SELECT player FROM table_name_89 WHERE year_s__won = "1991" | ### Context: CREATE TABLE table_name_89 (player VARCHAR, year_s__won VARCHAR) ### Question: Who won in 1991? ### Answer: SELECT player FROM table_name_89 WHERE year_s__won = "1991" |
Who was picked before 149 in round 9? | CREATE TABLE table_name_64 (player VARCHAR, pick VARCHAR, round VARCHAR) | SELECT player FROM table_name_64 WHERE pick < 149 AND round = 9 | ### Context: CREATE TABLE table_name_64 (player VARCHAR, pick VARCHAR, round VARCHAR) ### Question: Who was picked before 149 in round 9? ### Answer: SELECT player FROM table_name_64 WHERE pick < 149 AND round = 9 |
Who was pick 16 and before round 10? | CREATE TABLE table_name_30 (player VARCHAR, round VARCHAR, pick VARCHAR) | SELECT player FROM table_name_30 WHERE round < 10 AND pick = 16 | ### Context: CREATE TABLE table_name_30 (player VARCHAR, round VARCHAR, pick VARCHAR) ### Question: Who was pick 16 and before round 10? ### Answer: SELECT player FROM table_name_30 WHERE round < 10 AND pick = 16 |
What is Affiliation, when Nickname is Bulldogs? | CREATE TABLE table_name_4 (affiliation VARCHAR, nickname VARCHAR) | SELECT affiliation FROM table_name_4 WHERE nickname = "bulldogs" | ### Context: CREATE TABLE table_name_4 (affiliation VARCHAR, nickname VARCHAR) ### Question: What is Affiliation, when Nickname is Bulldogs? ### Answer: SELECT affiliation FROM table_name_4 WHERE nickname = "bulldogs" |
What is the average Founded, when Enrollment is 4,000? | CREATE TABLE table_name_68 (founded INTEGER, enrollment VARCHAR) | SELECT AVG(founded) FROM table_name_68 WHERE enrollment = 4 OFFSET 000 | ### Context: CREATE TABLE table_name_68 (founded INTEGER, enrollment VARCHAR) ### Question: What is the average Founded, when Enrollment is 4,000? ### Answer: SELECT AVG(founded) FROM table_name_68 WHERE enrollment = 4 OFFSET 000 |
Which team raced at Amaroo Park? | CREATE TABLE table_name_65 (team VARCHAR, circuit VARCHAR) | SELECT team FROM table_name_65 WHERE circuit = "amaroo park" | ### Context: CREATE TABLE table_name_65 (team VARCHAR, circuit VARCHAR) ### Question: Which team raced at Amaroo Park? ### Answer: SELECT team FROM table_name_65 WHERE circuit = "amaroo park" |
On what date did Dick Johnson with at Calder? | CREATE TABLE table_name_10 (date VARCHAR, winner VARCHAR, race_title VARCHAR) | SELECT date FROM table_name_10 WHERE winner = "dick johnson" AND race_title = "calder" | ### Context: CREATE TABLE table_name_10 (date VARCHAR, winner VARCHAR, race_title VARCHAR) ### Question: On what date did Dick Johnson with at Calder? ### Answer: SELECT date FROM table_name_10 WHERE winner = "dick johnson" AND race_title = "calder" |
On what date was the race in Melbourne, Victoria? | CREATE TABLE table_name_42 (date VARCHAR, city___state VARCHAR) | SELECT date FROM table_name_42 WHERE city___state = "melbourne, victoria" | ### Context: CREATE TABLE table_name_42 (date VARCHAR, city___state VARCHAR) ### Question: On what date was the race in Melbourne, Victoria? ### Answer: SELECT date FROM table_name_42 WHERE city___state = "melbourne, victoria" |
Which city or state contains Calder Park Raceway? | CREATE TABLE table_name_80 (city___state VARCHAR, circuit VARCHAR) | SELECT city___state FROM table_name_80 WHERE circuit = "calder park raceway" | ### Context: CREATE TABLE table_name_80 (city___state VARCHAR, circuit VARCHAR) ### Question: Which city or state contains Calder Park Raceway? ### Answer: SELECT city___state FROM table_name_80 WHERE circuit = "calder park raceway" |
What is the most reduced Margin that has a St Kilda Saints of 11.13 (79)? | CREATE TABLE table_name_79 (margin INTEGER, st_kilda_saints VARCHAR) | SELECT MIN(margin) FROM table_name_79 WHERE st_kilda_saints = "11.13 (79)" | ### Context: CREATE TABLE table_name_79 (margin INTEGER, st_kilda_saints VARCHAR) ### Question: What is the most reduced Margin that has a St Kilda Saints of 11.13 (79)? ### Answer: SELECT MIN(margin) FROM table_name_79 WHERE st_kilda_saints = "11.13 (79)" |
What is the average Margin that has a Round of 13. (h)? | CREATE TABLE table_name_3 (margin INTEGER, round VARCHAR) | SELECT AVG(margin) FROM table_name_3 WHERE round = "13. (h)" | ### Context: CREATE TABLE table_name_3 (margin INTEGER, round VARCHAR) ### Question: What is the average Margin that has a Round of 13. (h)? ### Answer: SELECT AVG(margin) FROM table_name_3 WHERE round = "13. (h)" |
What is the location of South Adelaide? | CREATE TABLE table_name_46 (location VARCHAR, team VARCHAR) | SELECT location FROM table_name_46 WHERE team = "south adelaide" | ### Context: CREATE TABLE table_name_46 (location VARCHAR, team VARCHAR) ### Question: What is the location of South Adelaide? ### Answer: SELECT location FROM table_name_46 WHERE team = "south adelaide" |
Which team has an unknown coach and location of Athelstone? | CREATE TABLE table_name_98 (team VARCHAR, coach VARCHAR, location VARCHAR) | SELECT team FROM table_name_98 WHERE coach = "unknown" AND location = "athelstone" | ### Context: CREATE TABLE table_name_98 (team VARCHAR, coach VARCHAR, location VARCHAR) ### Question: Which team has an unknown coach and location of Athelstone? ### Answer: SELECT team FROM table_name_98 WHERE coach = "unknown" AND location = "athelstone" |
When was the team that plays at Athelstone founded? | CREATE TABLE table_name_59 (founded VARCHAR, location VARCHAR) | SELECT founded FROM table_name_59 WHERE location = "athelstone" | ### Context: CREATE TABLE table_name_59 (founded VARCHAR, location VARCHAR) ### Question: When was the team that plays at Athelstone founded? ### Answer: SELECT founded FROM table_name_59 WHERE location = "athelstone" |
Who is the coach of the team from Port Pirie? | CREATE TABLE table_name_6 (coach VARCHAR, location VARCHAR) | SELECT coach FROM table_name_6 WHERE location = "port pirie" | ### Context: CREATE TABLE table_name_6 (coach VARCHAR, location VARCHAR) ### Question: Who is the coach of the team from Port Pirie? ### Answer: SELECT coach FROM table_name_6 WHERE location = "port pirie" |
Who is the coach of the team with home ground at Club Cove? | CREATE TABLE table_name_25 (coach VARCHAR, home_ground VARCHAR) | SELECT coach FROM table_name_25 WHERE home_ground = "club cove" | ### Context: CREATE TABLE table_name_25 (coach VARCHAR, home_ground VARCHAR) ### Question: Who is the coach of the team with home ground at Club Cove? ### Answer: SELECT coach FROM table_name_25 WHERE home_ground = "club cove" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.