question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
How many elevations are listed for Paratia? | CREATE TABLE table_2251578_4 (elevation__m_ VARCHAR, district VARCHAR) | SELECT COUNT(elevation__m_) FROM table_2251578_4 WHERE district = "Paratia" | ### Context: CREATE TABLE table_2251578_4 (elevation__m_ VARCHAR, district VARCHAR) ### Question: How many elevations are listed for Paratia? ### Answer: SELECT COUNT(elevation__m_) FROM table_2251578_4 WHERE district = "Paratia" |
What province is in the district of Condoroma? | CREATE TABLE table_2251578_4 (province VARCHAR, district VARCHAR) | SELECT province FROM table_2251578_4 WHERE district = "Condoroma" | ### Context: CREATE TABLE table_2251578_4 (province VARCHAR, district VARCHAR) ### Question: What province is in the district of Condoroma? ### Answer: SELECT province FROM table_2251578_4 WHERE district = "Condoroma" |
Name the reporters for 2003 | CREATE TABLE table_22514845_2 (reporters VARCHAR, year VARCHAR) | SELECT reporters FROM table_22514845_2 WHERE year = 2003 | ### Context: CREATE TABLE table_22514845_2 (reporters VARCHAR, year VARCHAR) ### Question: Name the reporters for 2003 ### Answer: SELECT reporters FROM table_22514845_2 WHERE year = 2003 |
Name the total number for race caller for bob costas and charlsie cantey | CREATE TABLE table_22514845_2 (race_caller VARCHAR, trophy_presentation VARCHAR) | SELECT COUNT(race_caller) FROM table_22514845_2 WHERE trophy_presentation = "Bob Costas and Charlsie Cantey" | ### Context: CREATE TABLE table_22514845_2 (race_caller VARCHAR, trophy_presentation VARCHAR) ### Question: Name the total number for race caller for bob costas and charlsie cantey ### Answer: SELECT COUNT(race_caller) FROM table_22514845_2 WHERE trophy_presentation = "Bob Costas and Charlsie Cantey" |
Who is the race caller for the year 1994? | CREATE TABLE table_22514845_3 (race_caller VARCHAR, year VARCHAR) | SELECT race_caller FROM table_22514845_3 WHERE year = 1994 | ### Context: CREATE TABLE table_22514845_3 (race_caller VARCHAR, year VARCHAR) ### Question: Who is the race caller for the year 1994? ### Answer: SELECT race_caller FROM table_22514845_3 WHERE year = 1994 |
How many reporters for the year 1993? | CREATE TABLE table_22514845_3 (reporters VARCHAR, year VARCHAR) | SELECT COUNT(reporters) FROM table_22514845_3 WHERE year = 1993 | ### Context: CREATE TABLE table_22514845_3 (reporters VARCHAR, year VARCHAR) ### Question: How many reporters for the year 1993? ### Answer: SELECT COUNT(reporters) FROM table_22514845_3 WHERE year = 1993 |
What were the starting odds for the opening odds of 2-1? | CREATE TABLE table_22517564_3 (starting_odds VARCHAR, opening_odds VARCHAR) | SELECT starting_odds FROM table_22517564_3 WHERE opening_odds = "2-1" | ### Context: CREATE TABLE table_22517564_3 (starting_odds VARCHAR, opening_odds VARCHAR) ### Question: What were the starting odds for the opening odds of 2-1? ### Answer: SELECT starting_odds FROM table_22517564_3 WHERE opening_odds = "2-1" |
Who was the jockey with opening odds of 4-1? | CREATE TABLE table_22517564_3 (jockey VARCHAR, opening_odds VARCHAR) | SELECT jockey FROM table_22517564_3 WHERE opening_odds = "4-1" | ### Context: CREATE TABLE table_22517564_3 (jockey VARCHAR, opening_odds VARCHAR) ### Question: Who was the jockey with opening odds of 4-1? ### Answer: SELECT jockey FROM table_22517564_3 WHERE opening_odds = "4-1" |
HOw many jockeys had eoin harty as a trainer | CREATE TABLE table_22517564_3 (jockey VARCHAR, trainer VARCHAR) | SELECT COUNT(jockey) FROM table_22517564_3 WHERE trainer = "Eoin Harty" | ### Context: CREATE TABLE table_22517564_3 (jockey VARCHAR, trainer VARCHAR) ### Question: HOw many jockeys had eoin harty as a trainer ### Answer: SELECT COUNT(jockey) FROM table_22517564_3 WHERE trainer = "Eoin Harty" |
Which post had the horse named chocolate candy? | CREATE TABLE table_22517564_3 (post VARCHAR, horse_name VARCHAR) | SELECT post FROM table_22517564_3 WHERE horse_name = "Chocolate Candy" | ### Context: CREATE TABLE table_22517564_3 (post VARCHAR, horse_name VARCHAR) ### Question: Which post had the horse named chocolate candy? ### Answer: SELECT post FROM table_22517564_3 WHERE horse_name = "Chocolate Candy" |
What is every date successor seated for the Virginia 11th District? | CREATE TABLE table_225199_4 (date_successor_seated VARCHAR, district VARCHAR) | SELECT date_successor_seated FROM table_225199_4 WHERE district = "Virginia 11th" | ### Context: CREATE TABLE table_225199_4 (date_successor_seated VARCHAR, district VARCHAR) ### Question: What is every date successor seated for the Virginia 11th District? ### Answer: SELECT date_successor_seated FROM table_225199_4 WHERE district = "Virginia 11th" |
Name the successor for not filled this congress | CREATE TABLE table_225200_4 (successor VARCHAR, date_successor_seated VARCHAR) | SELECT successor FROM table_225200_4 WHERE date_successor_seated = "Not filled this congress" | ### Context: CREATE TABLE table_225200_4 (successor VARCHAR, date_successor_seated VARCHAR) ### Question: Name the successor for not filled this congress ### Answer: SELECT successor FROM table_225200_4 WHERE date_successor_seated = "Not filled this congress" |
Name the district for rep. warren r. davis died during previous congress | CREATE TABLE table_225200_4 (district VARCHAR, reason_for_change VARCHAR) | SELECT district FROM table_225200_4 WHERE reason_for_change = "Rep. Warren R. Davis died during previous congress" | ### Context: CREATE TABLE table_225200_4 (district VARCHAR, reason_for_change VARCHAR) ### Question: Name the district for rep. warren r. davis died during previous congress ### Answer: SELECT district FROM table_225200_4 WHERE reason_for_change = "Rep. Warren R. Davis died during previous congress" |
Name the total number of reason for change for not filled this congress | CREATE TABLE table_225200_4 (reason_for_change VARCHAR, date_successor_seated VARCHAR) | SELECT COUNT(reason_for_change) FROM table_225200_4 WHERE date_successor_seated = "Not filled this congress" | ### Context: CREATE TABLE table_225200_4 (reason_for_change VARCHAR, date_successor_seated VARCHAR) ### Question: Name the total number of reason for change for not filled this congress ### Answer: SELECT COUNT(reason_for_change) FROM table_225200_4 WHERE date_successor_seated = "Not filled this congress" |
Name the vacator for resigned february 26, 1836 because of ill health | CREATE TABLE table_225200_4 (vacator VARCHAR, reason_for_change VARCHAR) | SELECT vacator FROM table_225200_4 WHERE reason_for_change = "Resigned February 26, 1836 because of ill health" | ### Context: CREATE TABLE table_225200_4 (vacator VARCHAR, reason_for_change VARCHAR) ### Question: Name the vacator for resigned february 26, 1836 because of ill health ### Answer: SELECT vacator FROM table_225200_4 WHERE reason_for_change = "Resigned February 26, 1836 because of ill health" |
Name the vacator for failure to elect | CREATE TABLE table_225205_3 (vacator VARCHAR, reason_for_change VARCHAR) | SELECT vacator FROM table_225205_3 WHERE reason_for_change = "Failure to elect" | ### Context: CREATE TABLE table_225205_3 (vacator VARCHAR, reason_for_change VARCHAR) ### Question: Name the vacator for failure to elect ### Answer: SELECT vacator FROM table_225205_3 WHERE reason_for_change = "Failure to elect" |
Name the state class for iowa admitted to the union december 28, 1846 | CREATE TABLE table_225205_3 (state__class_ VARCHAR, reason_for_change VARCHAR) | SELECT state__class_ FROM table_225205_3 WHERE reason_for_change = "Iowa admitted to the Union December 28, 1846" | ### Context: CREATE TABLE table_225205_3 (state__class_ VARCHAR, reason_for_change VARCHAR) ### Question: Name the state class for iowa admitted to the union december 28, 1846 ### Answer: SELECT state__class_ FROM table_225205_3 WHERE reason_for_change = "Iowa admitted to the Union December 28, 1846" |
Who was the vacator when the reason for change was failure to elect? | CREATE TABLE table_225206_3 (vacator VARCHAR, reason_for_change VARCHAR) | SELECT vacator FROM table_225206_3 WHERE reason_for_change = "Failure to elect" | ### Context: CREATE TABLE table_225206_3 (vacator VARCHAR, reason_for_change VARCHAR) ### Question: Who was the vacator when the reason for change was failure to elect? ### Answer: SELECT vacator FROM table_225206_3 WHERE reason_for_change = "Failure to elect" |
Name the number of nat for total g of 6 | CREATE TABLE table_22542179_3 (nat VARCHAR, total_g VARCHAR) | SELECT COUNT(nat) FROM table_22542179_3 WHERE total_g = 6 | ### Context: CREATE TABLE table_22542179_3 (nat VARCHAR, total_g VARCHAR) ### Question: Name the number of nat for total g of 6 ### Answer: SELECT COUNT(nat) FROM table_22542179_3 WHERE total_g = 6 |
Name the l g for rubio | CREATE TABLE table_22542179_3 (l_g VARCHAR, player VARCHAR) | SELECT l_g FROM table_22542179_3 WHERE player = "Rubio" | ### Context: CREATE TABLE table_22542179_3 (l_g VARCHAR, player VARCHAR) ### Question: Name the l g for rubio ### Answer: SELECT l_g FROM table_22542179_3 WHERE player = "Rubio" |
Name the least total apaps for txema | CREATE TABLE table_22542179_3 (total_apps INTEGER, player VARCHAR) | SELECT MIN(total_apps) FROM table_22542179_3 WHERE player = "Txema" | ### Context: CREATE TABLE table_22542179_3 (total_apps INTEGER, player VARCHAR) ### Question: Name the least total apaps for txema ### Answer: SELECT MIN(total_apps) FROM table_22542179_3 WHERE player = "Txema" |
when administrative centre is egilsstaðir, what is the pop./ km²? | CREATE TABLE table_2252745_1 (pop__km² VARCHAR, administrative_centre VARCHAR) | SELECT COUNT(pop__km²) FROM table_2252745_1 WHERE administrative_centre = "Egilsstaðir" | ### Context: CREATE TABLE table_2252745_1 (pop__km² VARCHAR, administrative_centre VARCHAR) ### Question: when administrative centre is egilsstaðir, what is the pop./ km²? ### Answer: SELECT COUNT(pop__km²) FROM table_2252745_1 WHERE administrative_centre = "Egilsstaðir" |
when the area (km²) is 22721, what is the pop./ km²? | CREATE TABLE table_2252745_1 (pop__km² VARCHAR, area__km²_ VARCHAR) | SELECT pop__km² FROM table_2252745_1 WHERE area__km²_ = 22721 | ### Context: CREATE TABLE table_2252745_1 (pop__km² VARCHAR, area__km²_ VARCHAR) ### Question: when the area (km²) is 22721, what is the pop./ km²? ### Answer: SELECT pop__km² FROM table_2252745_1 WHERE area__km²_ = 22721 |
What is the max pop of 2008 for selfoss? | CREATE TABLE table_2252745_1 (population_2008_07_01 INTEGER, administrative_centre VARCHAR) | SELECT MAX(population_2008_07_01) FROM table_2252745_1 WHERE administrative_centre = "Selfoss" | ### Context: CREATE TABLE table_2252745_1 (population_2008_07_01 INTEGER, administrative_centre VARCHAR) ### Question: What is the max pop of 2008 for selfoss? ### Answer: SELECT MAX(population_2008_07_01) FROM table_2252745_1 WHERE administrative_centre = "Selfoss" |
When the # is 4, what is the pop./ km²? | CREATE TABLE table_2252745_1 (pop__km² VARCHAR, _number VARCHAR) | SELECT pop__km² FROM table_2252745_1 WHERE _number = 4 | ### Context: CREATE TABLE table_2252745_1 (pop__km² VARCHAR, _number VARCHAR) ### Question: When the # is 4, what is the pop./ km²? ### Answer: SELECT pop__km² FROM table_2252745_1 WHERE _number = 4 |
Name the player for l apps for 17 | CREATE TABLE table_22538587_3 (player VARCHAR, l_apps VARCHAR) | SELECT player FROM table_22538587_3 WHERE l_apps = 17 | ### Context: CREATE TABLE table_22538587_3 (player VARCHAR, l_apps VARCHAR) ### Question: Name the player for l apps for 17 ### Answer: SELECT player FROM table_22538587_3 WHERE l_apps = 17 |
Name the least total apps for jaime | CREATE TABLE table_22538587_3 (total_apps INTEGER, player VARCHAR) | SELECT MIN(total_apps) FROM table_22538587_3 WHERE player = "Jaime" | ### Context: CREATE TABLE table_22538587_3 (total_apps INTEGER, player VARCHAR) ### Question: Name the least total apps for jaime ### Answer: SELECT MIN(total_apps) FROM table_22538587_3 WHERE player = "Jaime" |
Name the total number of lg for cg is larger than 1.0 for c apps is 3 | CREATE TABLE table_22538587_3 (l_g VARCHAR, c_g VARCHAR, c_apps VARCHAR) | SELECT COUNT(l_g) FROM table_22538587_3 WHERE c_g > 1.0 AND c_apps = 3 | ### Context: CREATE TABLE table_22538587_3 (l_g VARCHAR, c_g VARCHAR, c_apps VARCHAR) ### Question: Name the total number of lg for cg is larger than 1.0 for c apps is 3 ### Answer: SELECT COUNT(l_g) FROM table_22538587_3 WHERE c_g > 1.0 AND c_apps = 3 |
If the runner-up is [[|]] 151/8 (50.0 overs), what were the results? | CREATE TABLE table_22577693_1 (result VARCHAR, runner_up VARCHAR) | SELECT result FROM table_22577693_1 WHERE runner_up = "[[|]] 151/8 (50.0 overs)" | ### Context: CREATE TABLE table_22577693_1 (result VARCHAR, runner_up VARCHAR) ### Question: If the runner-up is [[|]] 151/8 (50.0 overs), what were the results? ### Answer: SELECT result FROM table_22577693_1 WHERE runner_up = "[[|]] 151/8 (50.0 overs)" |
What is the name of the host nations if the winner was Hong Kong 207/6 (47.1 overs)? | CREATE TABLE table_22577693_1 (host_nation_s_ VARCHAR, winner VARCHAR) | SELECT host_nation_s_ FROM table_22577693_1 WHERE winner = "Hong Kong 207/6 (47.1 overs)" | ### Context: CREATE TABLE table_22577693_1 (host_nation_s_ VARCHAR, winner VARCHAR) ### Question: What is the name of the host nations if the winner was Hong Kong 207/6 (47.1 overs)? ### Answer: SELECT host_nation_s_ FROM table_22577693_1 WHERE winner = "Hong Kong 207/6 (47.1 overs)" |
If the results are Kuwait won by 72 runs scorecard, what are the details? | CREATE TABLE table_22577693_1 (details VARCHAR, result VARCHAR) | SELECT details FROM table_22577693_1 WHERE result = "Kuwait won by 72 runs Scorecard" | ### Context: CREATE TABLE table_22577693_1 (details VARCHAR, result VARCHAR) ### Question: If the results are Kuwait won by 72 runs scorecard, what are the details? ### Answer: SELECT details FROM table_22577693_1 WHERE result = "Kuwait won by 72 runs Scorecard" |
Who was the winner if the final venue is Kowloon Cricket Club? | CREATE TABLE table_22577693_1 (winner VARCHAR, final_venue VARCHAR) | SELECT winner FROM table_22577693_1 WHERE final_venue = "Kowloon Cricket Club" | ### Context: CREATE TABLE table_22577693_1 (winner VARCHAR, final_venue VARCHAR) ### Question: Who was the winner if the final venue is Kowloon Cricket Club? ### Answer: SELECT winner FROM table_22577693_1 WHERE final_venue = "Kowloon Cricket Club" |
How many u.s. viewers (million) have a series # 83? | CREATE TABLE table_22570439_1 (us_viewers__millions_ VARCHAR, series__number VARCHAR) | SELECT us_viewers__millions_ FROM table_22570439_1 WHERE series__number = 83 | ### Context: CREATE TABLE table_22570439_1 (us_viewers__millions_ VARCHAR, series__number VARCHAR) ### Question: How many u.s. viewers (million) have a series # 83? ### Answer: SELECT us_viewers__millions_ FROM table_22570439_1 WHERE series__number = 83 |
How many u.s. viewers (millions) have 5 as the season #? | CREATE TABLE table_22570439_1 (us_viewers__millions_ VARCHAR, season__number VARCHAR) | SELECT us_viewers__millions_ FROM table_22570439_1 WHERE season__number = 5 | ### Context: CREATE TABLE table_22570439_1 (us_viewers__millions_ VARCHAR, season__number VARCHAR) ### Question: How many u.s. viewers (millions) have 5 as the season #? ### Answer: SELECT us_viewers__millions_ FROM table_22570439_1 WHERE season__number = 5 |
How many written by have wendey stanzler as the director? | CREATE TABLE table_22570439_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT COUNT(written_by) FROM table_22570439_1 WHERE directed_by = "Wendey Stanzler" | ### Context: CREATE TABLE table_22570439_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: How many written by have wendey stanzler as the director? ### Answer: SELECT COUNT(written_by) FROM table_22570439_1 WHERE directed_by = "Wendey Stanzler" |
What is the original air date where tracy poust & jon kinnally was written by? | CREATE TABLE table_22570439_1 (original_air_date VARCHAR, written_by VARCHAR) | SELECT original_air_date FROM table_22570439_1 WHERE written_by = "Tracy Poust & Jon Kinnally" | ### Context: CREATE TABLE table_22570439_1 (original_air_date VARCHAR, written_by VARCHAR) ### Question: What is the original air date where tracy poust & jon kinnally was written by? ### Answer: SELECT original_air_date FROM table_22570439_1 WHERE written_by = "Tracy Poust & Jon Kinnally" |
Who is the written by when mark worthington is the director? | CREATE TABLE table_22570439_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT written_by FROM table_22570439_1 WHERE directed_by = "Mark Worthington" | ### Context: CREATE TABLE table_22570439_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: Who is the written by when mark worthington is the director? ### Answer: SELECT written_by FROM table_22570439_1 WHERE directed_by = "Mark Worthington" |
In 1976, who was the reporter for the Belmont Stakes? | CREATE TABLE table_22583466_5 (reporters VARCHAR, year VARCHAR) | SELECT reporters FROM table_22583466_5 WHERE year = 1976 | ### Context: CREATE TABLE table_22583466_5 (reporters VARCHAR, year VARCHAR) ### Question: In 1976, who was the reporter for the Belmont Stakes? ### Answer: SELECT reporters FROM table_22583466_5 WHERE year = 1976 |
Who called the race in 1978? | CREATE TABLE table_22583466_5 (race_caller VARCHAR, year VARCHAR) | SELECT race_caller FROM table_22583466_5 WHERE year = 1978 | ### Context: CREATE TABLE table_22583466_5 (race_caller VARCHAR, year VARCHAR) ### Question: Who called the race in 1978? ### Answer: SELECT race_caller FROM table_22583466_5 WHERE year = 1978 |
For the race called by Marshall Cassidy, who was the host? | CREATE TABLE table_22583466_5 (s_host VARCHAR, race_caller VARCHAR) | SELECT s_host FROM table_22583466_5 WHERE race_caller = "Marshall Cassidy" | ### Context: CREATE TABLE table_22583466_5 (s_host VARCHAR, race_caller VARCHAR) ### Question: For the race called by Marshall Cassidy, who was the host? ### Answer: SELECT s_host FROM table_22583466_5 WHERE race_caller = "Marshall Cassidy" |
Who were the reporters for the 1977 Belmont Stakes? | CREATE TABLE table_22583466_5 (reporters VARCHAR, year VARCHAR) | SELECT reporters FROM table_22583466_5 WHERE year = 1977 | ### Context: CREATE TABLE table_22583466_5 (reporters VARCHAR, year VARCHAR) ### Question: Who were the reporters for the 1977 Belmont Stakes? ### Answer: SELECT reporters FROM table_22583466_5 WHERE year = 1977 |
Who called the race in 1998? | CREATE TABLE table_22583466_3 (race_caller VARCHAR, year VARCHAR) | SELECT race_caller FROM table_22583466_3 WHERE year = 1998 | ### Context: CREATE TABLE table_22583466_3 (race_caller VARCHAR, year VARCHAR) ### Question: Who called the race in 1998? ### Answer: SELECT race_caller FROM table_22583466_3 WHERE year = 1998 |
who was position 3 in 2007-2008? | CREATE TABLE table_22591910_4 (position VARCHAR) | SELECT 2007 AS _2008 FROM table_22591910_4 WHERE position = 3 | ### Context: CREATE TABLE table_22591910_4 (position VARCHAR) ### Question: who was position 3 in 2007-2008? ### Answer: SELECT 2007 AS _2008 FROM table_22591910_4 WHERE position = 3 |
What was the standing when goal against were 279? | CREATE TABLE table_2259285_1 (standing VARCHAR, goals_against VARCHAR) | SELECT standing FROM table_2259285_1 WHERE goals_against = 279 | ### Context: CREATE TABLE table_2259285_1 (standing VARCHAR, goals_against VARCHAR) ### Question: What was the standing when goal against were 279? ### Answer: SELECT standing FROM table_2259285_1 WHERE goals_against = 279 |
What is the winning pct % if the goal for are 229? | CREATE TABLE table_2259285_1 (winning_pct__percentage VARCHAR, goals_for VARCHAR) | SELECT winning_pct__percentage FROM table_2259285_1 WHERE goals_for = 229 | ### Context: CREATE TABLE table_2259285_1 (winning_pct__percentage VARCHAR, goals_for VARCHAR) ### Question: What is the winning pct % if the goal for are 229? ### Answer: SELECT winning_pct__percentage FROM table_2259285_1 WHERE goals_for = 229 |
What was the winning % when there were 322 goals? | CREATE TABLE table_2259285_1 (winning_pct__percentage VARCHAR, goals_for VARCHAR) | SELECT winning_pct__percentage FROM table_2259285_1 WHERE goals_for = 322 | ### Context: CREATE TABLE table_2259285_1 (winning_pct__percentage VARCHAR, goals_for VARCHAR) ### Question: What was the winning % when there were 322 goals? ### Answer: SELECT winning_pct__percentage FROM table_2259285_1 WHERE goals_for = 322 |
Name the year for willie goggin | CREATE TABLE table_225880_1 (year VARCHAR, runner_s__up VARCHAR) | SELECT year FROM table_225880_1 WHERE runner_s__up = "Willie Goggin" | ### Context: CREATE TABLE table_225880_1 (year VARCHAR, runner_s__up VARCHAR) ### Question: Name the year for willie goggin ### Answer: SELECT year FROM table_225880_1 WHERE runner_s__up = "Willie Goggin" |
Name the winning score for pga championship | CREATE TABLE table_225880_1 (winning_score VARCHAR, championship VARCHAR) | SELECT winning_score FROM table_225880_1 WHERE championship = "PGA championship" | ### Context: CREATE TABLE table_225880_1 (winning_score VARCHAR, championship VARCHAR) ### Question: Name the winning score for pga championship ### Answer: SELECT winning_score FROM table_225880_1 WHERE championship = "PGA championship" |
Name the least year for walter hagen | CREATE TABLE table_225880_1 (year INTEGER, runner_s__up VARCHAR) | SELECT MIN(year) FROM table_225880_1 WHERE runner_s__up = "Walter Hagen" | ### Context: CREATE TABLE table_225880_1 (year INTEGER, runner_s__up VARCHAR) ### Question: Name the least year for walter hagen ### Answer: SELECT MIN(year) FROM table_225880_1 WHERE runner_s__up = "Walter Hagen" |
What was the score in the final where one of the opponents in the final was fitzgerald vilas? | CREATE TABLE table_22597626_17 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR) | SELECT score_in_the_final FROM table_22597626_17 WHERE opponents_in_the_final = "Fitzgerald Vilas" | ### Context: CREATE TABLE table_22597626_17 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR) ### Question: What was the score in the final where one of the opponents in the final was fitzgerald vilas? ### Answer: SELECT score_in_the_final FROM table_22597626_17 WHERE opponents_in_the_final = "Fitzgerald Vil... |
What was the surface for the opponents in the final with fitzgerald vilas? | CREATE TABLE table_22597626_17 (surface VARCHAR, opponents_in_the_final VARCHAR) | SELECT surface FROM table_22597626_17 WHERE opponents_in_the_final = "Fitzgerald Vilas" | ### Context: CREATE TABLE table_22597626_17 (surface VARCHAR, opponents_in_the_final VARCHAR) ### Question: What was the surface for the opponents in the final with fitzgerald vilas? ### Answer: SELECT surface FROM table_22597626_17 WHERE opponents_in_the_final = "Fitzgerald Vilas" |
Who were the opponents in the final where the score in the final is 6–4, 7–6 2? | CREATE TABLE table_22597626_17 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR) | SELECT opponents_in_the_final FROM table_22597626_17 WHERE score_in_the_final = "6–4, 7–6 2" | ### Context: CREATE TABLE table_22597626_17 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR) ### Question: Who were the opponents in the final where the score in the final is 6–4, 7–6 2? ### Answer: SELECT opponents_in_the_final FROM table_22597626_17 WHERE score_in_the_final = "6–4, 7–6 2" |
What was the partner count when the opponents in the final was forget leconte? | CREATE TABLE table_22597626_17 (partner VARCHAR, opponents_in_the_final VARCHAR) | SELECT COUNT(partner) FROM table_22597626_17 WHERE opponents_in_the_final = "Forget Leconte" | ### Context: CREATE TABLE table_22597626_17 (partner VARCHAR, opponents_in_the_final VARCHAR) ### Question: What was the partner count when the opponents in the final was forget leconte? ### Answer: SELECT COUNT(partner) FROM table_22597626_17 WHERE opponents_in_the_final = "Forget Leconte" |
What was the year date when one of the opponents in the final was bahrami leconte and score in the final is 7–6 2 , 6–1? | CREATE TABLE table_22597626_17 (year INTEGER, opponents_in_the_final VARCHAR, score_in_the_final VARCHAR) | SELECT MIN(year) FROM table_22597626_17 WHERE opponents_in_the_final = "Bahrami Leconte" AND score_in_the_final = "7–6 2 , 6–1" | ### Context: CREATE TABLE table_22597626_17 (year INTEGER, opponents_in_the_final VARCHAR, score_in_the_final VARCHAR) ### Question: What was the year date when one of the opponents in the final was bahrami leconte and score in the final is 7–6 2 , 6–1? ### Answer: SELECT MIN(year) FROM table_22597626_17 WHERE opponent... |
Name the number of year for score being 6–3, 6–2, 6–4 | CREATE TABLE table_22597626_6 (year VARCHAR, score_in_the_final VARCHAR) | SELECT COUNT(year) FROM table_22597626_6 WHERE score_in_the_final = "6–3, 6–2, 6–4" | ### Context: CREATE TABLE table_22597626_6 (year VARCHAR, score_in_the_final VARCHAR) ### Question: Name the number of year for score being 6–3, 6–2, 6–4 ### Answer: SELECT COUNT(year) FROM table_22597626_6 WHERE score_in_the_final = "6–3, 6–2, 6–4" |
Name the surface for 6–0, 6–3 | CREATE TABLE table_22597626_6 (surface VARCHAR, score_in_the_final VARCHAR) | SELECT surface FROM table_22597626_6 WHERE score_in_the_final = "6–0, 6–3" | ### Context: CREATE TABLE table_22597626_6 (surface VARCHAR, score_in_the_final VARCHAR) ### Question: Name the surface for 6–0, 6–3 ### Answer: SELECT surface FROM table_22597626_6 WHERE score_in_the_final = "6–0, 6–3" |
Name the championship for peter mcnamara | CREATE TABLE table_22597626_6 (championship VARCHAR, opponent_in_the_final VARCHAR) | SELECT championship FROM table_22597626_6 WHERE opponent_in_the_final = "Peter McNamara" | ### Context: CREATE TABLE table_22597626_6 (championship VARCHAR, opponent_in_the_final VARCHAR) ### Question: Name the championship for peter mcnamara ### Answer: SELECT championship FROM table_22597626_6 WHERE opponent_in_the_final = "Peter McNamara" |
Name the championship for 1980 hard surface | CREATE TABLE table_22597626_6 (championship VARCHAR, year VARCHAR, surface VARCHAR) | SELECT championship FROM table_22597626_6 WHERE year = 1980 AND surface = "Hard" | ### Context: CREATE TABLE table_22597626_6 (championship VARCHAR, year VARCHAR, surface VARCHAR) ### Question: Name the championship for 1980 hard surface ### Answer: SELECT championship FROM table_22597626_6 WHERE year = 1980 AND surface = "Hard" |
If the team is Billy Ballew Motorsports, what is the race time? | CREATE TABLE table_2260452_1 (race_time VARCHAR, team VARCHAR) | SELECT race_time FROM table_2260452_1 WHERE team = "Billy Ballew Motorsports" | ### Context: CREATE TABLE table_2260452_1 (race_time VARCHAR, team VARCHAR) ### Question: If the team is Billy Ballew Motorsports, what is the race time? ### Answer: SELECT race_time FROM table_2260452_1 WHERE team = "Billy Ballew Motorsports" |
What was the date if the driver was Robert Pressley? | CREATE TABLE table_2260452_1 (date VARCHAR, driver VARCHAR) | SELECT date FROM table_2260452_1 WHERE driver = "Robert Pressley" | ### Context: CREATE TABLE table_2260452_1 (date VARCHAR, driver VARCHAR) ### Question: What was the date if the driver was Robert Pressley? ### Answer: SELECT date FROM table_2260452_1 WHERE driver = "Robert Pressley" |
If the race time is 2:00:33, what is the average speed? | CREATE TABLE table_2260452_1 (average_speed__mph_ VARCHAR, race_time VARCHAR) | SELECT average_speed__mph_ FROM table_2260452_1 WHERE race_time = "2:00:33" | ### Context: CREATE TABLE table_2260452_1 (average_speed__mph_ VARCHAR, race_time VARCHAR) ### Question: If the race time is 2:00:33, what is the average speed? ### Answer: SELECT average_speed__mph_ FROM table_2260452_1 WHERE race_time = "2:00:33" |
What is every entry for 1982-83 for rank 1? | CREATE TABLE table_22606461_10 (rank VARCHAR) | SELECT 1982 AS _83 FROM table_22606461_10 WHERE rank = 1 | ### Context: CREATE TABLE table_22606461_10 (rank VARCHAR) ### Question: What is every entry for 1982-83 for rank 1? ### Answer: SELECT 1982 AS _83 FROM table_22606461_10 WHERE rank = 1 |
How many heights are listed for Jesse Holley in the WR position? | CREATE TABLE table_22603701_1 (height VARCHAR, position VARCHAR, name VARCHAR) | SELECT COUNT(height) FROM table_22603701_1 WHERE position = "WR" AND name = "Jesse Holley" | ### Context: CREATE TABLE table_22603701_1 (height VARCHAR, position VARCHAR, name VARCHAR) ### Question: How many heights are listed for Jesse Holley in the WR position? ### Answer: SELECT COUNT(height) FROM table_22603701_1 WHERE position = "WR" AND name = "Jesse Holley" |
What is the result for Wisconsin? | CREATE TABLE table_22603701_1 (result VARCHAR, college VARCHAR) | SELECT result FROM table_22603701_1 WHERE college = "Wisconsin" | ### Context: CREATE TABLE table_22603701_1 (result VARCHAR, college VARCHAR) ### Question: What is the result for Wisconsin? ### Answer: SELECT result FROM table_22603701_1 WHERE college = "Wisconsin" |
What is the result for Steve Gonzalez? | CREATE TABLE table_22603701_1 (result VARCHAR, name VARCHAR) | SELECT result FROM table_22603701_1 WHERE name = "Steve Gonzalez" | ### Context: CREATE TABLE table_22603701_1 (result VARCHAR, name VARCHAR) ### Question: What is the result for Steve Gonzalez? ### Answer: SELECT result FROM table_22603701_1 WHERE name = "Steve Gonzalez" |
What are the positions for Menlo College? | CREATE TABLE table_22603701_1 (position VARCHAR, college VARCHAR) | SELECT position FROM table_22603701_1 WHERE college = "Menlo college" | ### Context: CREATE TABLE table_22603701_1 (position VARCHAR, college VARCHAR) ### Question: What are the positions for Menlo College? ### Answer: SELECT position FROM table_22603701_1 WHERE college = "Menlo college" |
If the distribution mechanism is the Microsoft website and the security issues id 98-004, what are all of the features? | CREATE TABLE table_2263152_1 (features VARCHAR, security_issues VARCHAR, distribution_mechanism VARCHAR) | SELECT features FROM table_2263152_1 WHERE security_issues = "98-004" AND distribution_mechanism = "Microsoft website" | ### Context: CREATE TABLE table_2263152_1 (features VARCHAR, security_issues VARCHAR, distribution_mechanism VARCHAR) ### Question: If the distribution mechanism is the Microsoft website and the security issues id 98-004, what are all of the features? ### Answer: SELECT features FROM table_2263152_1 WHERE security_issu... |
With the distribution mechanism of Microsoft website and the security issues of 98-004, what is the version? | CREATE TABLE table_2263152_1 (version VARCHAR, security_issues VARCHAR, distribution_mechanism VARCHAR) | SELECT version FROM table_2263152_1 WHERE security_issues = "98-004" AND distribution_mechanism = "Microsoft website" | ### Context: CREATE TABLE table_2263152_1 (version VARCHAR, security_issues VARCHAR, distribution_mechanism VARCHAR) ### Question: With the distribution mechanism of Microsoft website and the security issues of 98-004, what is the version? ### Answer: SELECT version FROM table_2263152_1 WHERE security_issues = "98-004"... |
If the security issues is 99-025 and the distribution mechanism is the Microsoft website, what is the release date total number? | CREATE TABLE table_2263152_1 (release_date VARCHAR, security_issues VARCHAR, distribution_mechanism VARCHAR) | SELECT COUNT(release_date) FROM table_2263152_1 WHERE security_issues = "99-025" AND distribution_mechanism = "Microsoft website" | ### Context: CREATE TABLE table_2263152_1 (release_date VARCHAR, security_issues VARCHAR, distribution_mechanism VARCHAR) ### Question: If the security issues is 99-025 and the distribution mechanism is the Microsoft website, what is the release date total number? ### Answer: SELECT COUNT(release_date) FROM table_22631... |
With the version of 1.5a, what is the release date? | CREATE TABLE table_2263152_1 (release_date VARCHAR, version VARCHAR) | SELECT release_date FROM table_2263152_1 WHERE version = "1.5a" | ### Context: CREATE TABLE table_2263152_1 (release_date VARCHAR, version VARCHAR) ### Question: With the version of 1.5a, what is the release date? ### Answer: SELECT release_date FROM table_2263152_1 WHERE version = "1.5a" |
If the distribution mechanism is windows nt 4.0 option pack Microsoft office 97 and the features is service release, what is the version? | CREATE TABLE table_2263152_1 (version VARCHAR, features VARCHAR, distribution_mechanism VARCHAR) | SELECT version FROM table_2263152_1 WHERE features = "Service release" AND distribution_mechanism = "Windows NT 4.0 Option Pack Microsoft Office 97" | ### Context: CREATE TABLE table_2263152_1 (version VARCHAR, features VARCHAR, distribution_mechanism VARCHAR) ### Question: If the distribution mechanism is windows nt 4.0 option pack Microsoft office 97 and the features is service release, what is the version? ### Answer: SELECT version FROM table_2263152_1 WHERE feat... |
If the version is 1.5b, what is the distribution mechanism? | CREATE TABLE table_2263152_1 (distribution_mechanism VARCHAR, version VARCHAR) | SELECT distribution_mechanism FROM table_2263152_1 WHERE version = "1.5b" | ### Context: CREATE TABLE table_2263152_1 (distribution_mechanism VARCHAR, version VARCHAR) ### Question: If the version is 1.5b, what is the distribution mechanism? ### Answer: SELECT distribution_mechanism FROM table_2263152_1 WHERE version = "1.5b" |
How many locations are listed for the winner Temple? | CREATE TABLE table_22645714_5 (tournament_venue__city_ VARCHAR, tournament_winner VARCHAR) | SELECT COUNT(tournament_venue__city_) FROM table_22645714_5 WHERE tournament_winner = "Temple" | ### Context: CREATE TABLE table_22645714_5 (tournament_venue__city_ VARCHAR, tournament_winner VARCHAR) ### Question: How many locations are listed for the winner Temple? ### Answer: SELECT COUNT(tournament_venue__city_) FROM table_22645714_5 WHERE tournament_winner = "Temple" |
How many locations are listed for the Big 12 Conference? | CREATE TABLE table_22645714_5 (tournament_venue__city_ VARCHAR, conference VARCHAR) | SELECT COUNT(tournament_venue__city_) FROM table_22645714_5 WHERE conference = "Big 12 conference" | ### Context: CREATE TABLE table_22645714_5 (tournament_venue__city_ VARCHAR, conference VARCHAR) ### Question: How many locations are listed for the Big 12 Conference? ### Answer: SELECT COUNT(tournament_venue__city_) FROM table_22645714_5 WHERE conference = "Big 12 conference" |
Who had the best regular season in the contest won by Arkansas-Pine Bluff? | CREATE TABLE table_22645714_5 (regular_season_winner VARCHAR, tournament_winner VARCHAR) | SELECT regular_season_winner FROM table_22645714_5 WHERE tournament_winner = "Arkansas-Pine Bluff" | ### Context: CREATE TABLE table_22645714_5 (regular_season_winner VARCHAR, tournament_winner VARCHAR) ### Question: Who had the best regular season in the contest won by Arkansas-Pine Bluff? ### Answer: SELECT regular_season_winner FROM table_22645714_5 WHERE tournament_winner = "Arkansas-Pine Bluff" |
How old was the official with Chinese name 孫明揚? | CREATE TABLE table_2263674_1 (age_at_appointment VARCHAR, chinese_name VARCHAR) | SELECT age_at_appointment FROM table_2263674_1 WHERE chinese_name = "孫明揚" | ### Context: CREATE TABLE table_2263674_1 (age_at_appointment VARCHAR, chinese_name VARCHAR) ### Question: How old was the official with Chinese name 孫明揚? ### Answer: SELECT age_at_appointment FROM table_2263674_1 WHERE chinese_name = "孫明揚" |
What's 梁愛詩's romanised name? | CREATE TABLE table_2263674_1 (romanised_name VARCHAR, chinese_name VARCHAR) | SELECT romanised_name FROM table_2263674_1 WHERE chinese_name = "梁愛詩" | ### Context: CREATE TABLE table_2263674_1 (romanised_name VARCHAR, chinese_name VARCHAR) ### Question: What's 梁愛詩's romanised name? ### Answer: SELECT romanised_name FROM table_2263674_1 WHERE chinese_name = "梁愛詩" |
What's the romanised name of the official who was Secretary for health, welfare and food? | CREATE TABLE table_2263674_1 (romanised_name VARCHAR, portfolio VARCHAR) | SELECT romanised_name FROM table_2263674_1 WHERE portfolio = "Secretary for Health, Welfare and Food" | ### Context: CREATE TABLE table_2263674_1 (romanised_name VARCHAR, portfolio VARCHAR) ### Question: What's the romanised name of the official who was Secretary for health, welfare and food? ### Answer: SELECT romanised_name FROM table_2263674_1 WHERE portfolio = "Secretary for Health, Welfare and Food" |
What was Anthony Leung Kam-Chung previous position? | CREATE TABLE table_2263674_1 (portfolio VARCHAR, romanised_name VARCHAR) | SELECT portfolio FROM table_2263674_1 WHERE romanised_name = "Anthony Leung Kam-chung" | ### Context: CREATE TABLE table_2263674_1 (portfolio VARCHAR, romanised_name VARCHAR) ### Question: What was Anthony Leung Kam-Chung previous position? ### Answer: SELECT portfolio FROM table_2263674_1 WHERE romanised_name = "Anthony Leung Kam-chung" |
List all high rebound entries from May 11. | CREATE TABLE table_22654073_13 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_22654073_13 WHERE date = "May 11" | ### Context: CREATE TABLE table_22654073_13 (high_rebounds VARCHAR, date VARCHAR) ### Question: List all high rebound entries from May 11. ### Answer: SELECT high_rebounds FROM table_22654073_13 WHERE date = "May 11" |
How many games were there on May 1? | CREATE TABLE table_22654073_13 (game VARCHAR, date VARCHAR) | SELECT COUNT(game) FROM table_22654073_13 WHERE date = "May 1" | ### Context: CREATE TABLE table_22654073_13 (game VARCHAR, date VARCHAR) ### Question: How many games were there on May 1? ### Answer: SELECT COUNT(game) FROM table_22654073_13 WHERE date = "May 1" |
List all high assists in series 2-3. | CREATE TABLE table_22654073_13 (high_assists VARCHAR, series VARCHAR) | SELECT high_assists FROM table_22654073_13 WHERE series = "2-3" | ### Context: CREATE TABLE table_22654073_13 (high_assists VARCHAR, series VARCHAR) ### Question: List all high assists in series 2-3. ### Answer: SELECT high_assists FROM table_22654073_13 WHERE series = "2-3" |
How many games were played on May 11? | CREATE TABLE table_22654073_13 (game VARCHAR, date VARCHAR) | SELECT COUNT(game) FROM table_22654073_13 WHERE date = "May 11" | ### Context: CREATE TABLE table_22654073_13 (game VARCHAR, date VARCHAR) ### Question: How many games were played on May 11? ### Answer: SELECT COUNT(game) FROM table_22654073_13 WHERE date = "May 11" |
Name the score for chicago bulls | CREATE TABLE table_22654073_7 (score VARCHAR, team VARCHAR) | SELECT score FROM table_22654073_7 WHERE team = "Chicago Bulls" | ### Context: CREATE TABLE table_22654073_7 (score VARCHAR, team VARCHAR) ### Question: Name the score for chicago bulls ### Answer: SELECT score FROM table_22654073_7 WHERE team = "Chicago Bulls" |
Name the location attendance for 22-8 | CREATE TABLE table_22654073_7 (location_attendance VARCHAR, record VARCHAR) | SELECT location_attendance FROM table_22654073_7 WHERE record = "22-8" | ### Context: CREATE TABLE table_22654073_7 (location_attendance VARCHAR, record VARCHAR) ### Question: Name the location attendance for 22-8 ### Answer: SELECT location_attendance FROM table_22654073_7 WHERE record = "22-8" |
Name the high points for mo williams , lebron james , j.j. hickson (6) | CREATE TABLE table_22654073_7 (high_points VARCHAR, high_rebounds VARCHAR) | SELECT COUNT(high_points) FROM table_22654073_7 WHERE high_rebounds = "Mo Williams , LeBron James , J.J. Hickson (6)" | ### Context: CREATE TABLE table_22654073_7 (high_points VARCHAR, high_rebounds VARCHAR) ### Question: Name the high points for mo williams , lebron james , j.j. hickson (6) ### Answer: SELECT COUNT(high_points) FROM table_22654073_7 WHERE high_rebounds = "Mo Williams , LeBron James , J.J. Hickson (6)" |
Name the high assists for december 13 | CREATE TABLE table_22654073_7 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_22654073_7 WHERE date = "December 13" | ### Context: CREATE TABLE table_22654073_7 (high_assists VARCHAR, date VARCHAR) ### Question: Name the high assists for december 13 ### Answer: SELECT high_assists FROM table_22654073_7 WHERE date = "December 13" |
What value can you find under the column "august 21-22" and the row of June 11, 1983? | CREATE TABLE table_22651355_3 (august_21_22 VARCHAR, june_10_11 VARCHAR) | SELECT august_21_22 FROM table_22651355_3 WHERE june_10_11 = "June 11, 1983" | ### Context: CREATE TABLE table_22651355_3 (august_21_22 VARCHAR, june_10_11 VARCHAR) ### Question: What value can you find under the column "august 21-22" and the row of June 11, 1983? ### Answer: SELECT august_21_22 FROM table_22651355_3 WHERE june_10_11 = "June 11, 1983" |
What was the location and attendance for the game against the team with a 51-15 record with the Cavaliers? | CREATE TABLE table_22654073_10 (location_attendance VARCHAR, record VARCHAR) | SELECT location_attendance FROM table_22654073_10 WHERE record = "51-15" | ### Context: CREATE TABLE table_22654073_10 (location_attendance VARCHAR, record VARCHAR) ### Question: What was the location and attendance for the game against the team with a 51-15 record with the Cavaliers? ### Answer: SELECT location_attendance FROM table_22654073_10 WHERE record = "51-15" |
How many scores are associated with a record of 27-9? | CREATE TABLE table_22654073_8 (score VARCHAR, record VARCHAR) | SELECT COUNT(score) FROM table_22654073_8 WHERE record = "27-9" | ### Context: CREATE TABLE table_22654073_8 (score VARCHAR, record VARCHAR) ### Question: How many scores are associated with a record of 27-9? ### Answer: SELECT COUNT(score) FROM table_22654073_8 WHERE record = "27-9" |
How many games are associated with a record of 29-10? | CREATE TABLE table_22654073_8 (game VARCHAR, record VARCHAR) | SELECT COUNT(game) FROM table_22654073_8 WHERE record = "29-10" | ### Context: CREATE TABLE table_22654073_8 (game VARCHAR, record VARCHAR) ### Question: How many games are associated with a record of 29-10? ### Answer: SELECT COUNT(game) FROM table_22654073_8 WHERE record = "29-10" |
Name the team for record 3-2 | CREATE TABLE table_22654073_6 (team VARCHAR, record VARCHAR) | SELECT team FROM table_22654073_6 WHERE record = "3-2" | ### Context: CREATE TABLE table_22654073_6 (team VARCHAR, record VARCHAR) ### Question: Name the team for record 3-2 ### Answer: SELECT team FROM table_22654073_6 WHERE record = "3-2" |
Name the date for lebron james , mo williams (21) | CREATE TABLE table_22654073_6 (date VARCHAR, high_points VARCHAR) | SELECT date FROM table_22654073_6 WHERE high_points = "LeBron James , Mo Williams (21)" | ### Context: CREATE TABLE table_22654073_6 (date VARCHAR, high_points VARCHAR) ### Question: Name the date for lebron james , mo williams (21) ### Answer: SELECT date FROM table_22654073_6 WHERE high_points = "LeBron James , Mo Williams (21)" |
Name the high points for record 9-4 | CREATE TABLE table_22654073_6 (high_points VARCHAR, record VARCHAR) | SELECT high_points FROM table_22654073_6 WHERE record = "9-4" | ### Context: CREATE TABLE table_22654073_6 (high_points VARCHAR, record VARCHAR) ### Question: Name the high points for record 9-4 ### Answer: SELECT high_points FROM table_22654073_6 WHERE record = "9-4" |
Name the total number of date for l 85–86 (ot) | CREATE TABLE table_22654073_6 (date VARCHAR, score VARCHAR) | SELECT COUNT(date) FROM table_22654073_6 WHERE score = "L 85–86 (OT)" | ### Context: CREATE TABLE table_22654073_6 (date VARCHAR, score VARCHAR) ### Question: Name the total number of date for l 85–86 (ot) ### Answer: SELECT COUNT(date) FROM table_22654073_6 WHERE score = "L 85–86 (OT)" |
Name the network for 2007 total | CREATE TABLE table_22654139_2 (network VARCHAR, year VARCHAR) | SELECT COUNT(network) FROM table_22654139_2 WHERE year = 2007 | ### Context: CREATE TABLE table_22654139_2 (network VARCHAR, year VARCHAR) ### Question: Name the network for 2007 total ### Answer: SELECT COUNT(network) FROM table_22654139_2 WHERE year = 2007 |
Name the analysts | CREATE TABLE table_22654139_2 (s_analyst VARCHAR) | SELECT s_analyst FROM table_22654139_2 | ### Context: CREATE TABLE table_22654139_2 (s_analyst VARCHAR) ### Question: Name the analysts ### Answer: SELECT s_analyst FROM table_22654139_2 |
What was the result for a partnering of Frederica Piedade? | CREATE TABLE table_22656187_9 (result VARCHAR, partnering VARCHAR) | SELECT result FROM table_22656187_9 WHERE partnering = "Frederica Piedade" | ### Context: CREATE TABLE table_22656187_9 (result VARCHAR, partnering VARCHAR) ### Question: What was the result for a partnering of Frederica Piedade? ### Answer: SELECT result FROM table_22656187_9 WHERE partnering = "Frederica Piedade" |
Which round has a win-loss result of loss and an edition of 2012 Fed Cup Europe/Africa Group I? | CREATE TABLE table_22656187_9 (round VARCHAR, w_l VARCHAR, edition VARCHAR) | SELECT round FROM table_22656187_9 WHERE w_l = "Loss" AND edition = "2012 Fed Cup Europe/Africa Group I" | ### Context: CREATE TABLE table_22656187_9 (round VARCHAR, w_l VARCHAR, edition VARCHAR) ### Question: Which round has a win-loss result of loss and an edition of 2012 Fed Cup Europe/Africa Group I? ### Answer: SELECT round FROM table_22656187_9 WHERE w_l = "Loss" AND edition = "2012 Fed Cup Europe/Africa Group I" |
Name the manufacturer for cale yarborough for 1984 | CREATE TABLE table_2266230_1 (manufacturer VARCHAR, driver VARCHAR, year VARCHAR) | SELECT manufacturer FROM table_2266230_1 WHERE driver = "Cale Yarborough" AND year = "1984" | ### Context: CREATE TABLE table_2266230_1 (manufacturer VARCHAR, driver VARCHAR, year VARCHAR) ### Question: Name the manufacturer for cale yarborough for 1984 ### Answer: SELECT manufacturer FROM table_2266230_1 WHERE driver = "Cale Yarborough" AND year = "1984" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.