question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What was the score in Hampden Park, Glasgow? | CREATE TABLE table_name_68 (score VARCHAR, venue VARCHAR) | SELECT score FROM table_name_68 WHERE venue = "hampden park, glasgow" | ### Context: CREATE TABLE table_name_68 (score VARCHAR, venue VARCHAR) ### Question: What was the score in Hampden Park, Glasgow? ### Answer: SELECT score FROM table_name_68 WHERE venue = "hampden park, glasgow" |
Which Venue has a Notes of 2:28:31? | CREATE TABLE table_name_83 (venue VARCHAR, notes VARCHAR) | SELECT venue FROM table_name_83 WHERE notes = "2:28:31" | ### Context: CREATE TABLE table_name_83 (venue VARCHAR, notes VARCHAR) ### Question: Which Venue has a Notes of 2:28:31? ### Answer: SELECT venue FROM table_name_83 WHERE notes = "2:28:31" |
Which Venue has a Competition of venice marathon? | CREATE TABLE table_name_98 (venue VARCHAR, competition VARCHAR) | SELECT venue FROM table_name_98 WHERE competition = "venice marathon" | ### Context: CREATE TABLE table_name_98 (venue VARCHAR, competition VARCHAR) ### Question: Which Venue has a Competition of venice marathon? ### Answer: SELECT venue FROM table_name_98 WHERE competition = "venice marathon" |
Which Year that has Notes of dnf? | CREATE TABLE table_name_17 (year INTEGER, notes VARCHAR) | SELECT MIN(year) FROM table_name_17 WHERE notes = "dnf" | ### Context: CREATE TABLE table_name_17 (year INTEGER, notes VARCHAR) ### Question: Which Year that has Notes of dnf? ### Answer: SELECT MIN(year) FROM table_name_17 WHERE notes = "dnf" |
Which Competition has a Year larger than 2000? | CREATE TABLE table_name_45 (competition VARCHAR, year INTEGER) | SELECT competition FROM table_name_45 WHERE year > 2000 | ### Context: CREATE TABLE table_name_45 (competition VARCHAR, year INTEGER) ### Question: Which Competition has a Year larger than 2000? ### Answer: SELECT competition FROM table_name_45 WHERE year > 2000 |
What date has a set 4 of 25-19? | CREATE TABLE table_name_33 (date VARCHAR, set_4 VARCHAR) | SELECT date FROM table_name_33 WHERE set_4 = "25-19" | ### Context: CREATE TABLE table_name_33 (date VARCHAR, set_4 VARCHAR) ### Question: What date has a set 4 of 25-19? ### Answer: SELECT date FROM table_name_33 WHERE set_4 = "25-19" |
What is the total for the set 2 of 25-18? | CREATE TABLE table_name_80 (total VARCHAR, set_2 VARCHAR) | SELECT total FROM table_name_80 WHERE set_2 = "25-18" | ### Context: CREATE TABLE table_name_80 (total VARCHAR, set_2 VARCHAR) ### Question: What is the total for the set 2 of 25-18? ### Answer: SELECT total FROM table_name_80 WHERE set_2 = "25-18" |
What is the total for set 2 of 25-19? | CREATE TABLE table_name_55 (total VARCHAR, set_2 VARCHAR) | SELECT total FROM table_name_55 WHERE set_2 = "25-19" | ### Context: CREATE TABLE table_name_55 (total VARCHAR, set_2 VARCHAR) ### Question: What is the total for set 2 of 25-19? ### Answer: SELECT total FROM table_name_55 WHERE set_2 = "25-19" |
What is set 3 when set 5 is na, set 1 is 21-25, and set 2 is 25-16? | CREATE TABLE table_name_54 (set_3 VARCHAR, set_2 VARCHAR, set_5 VARCHAR, set_1 VARCHAR) | SELECT set_3 FROM table_name_54 WHERE set_5 = "na" AND set_1 = "21-25" AND set_2 = "25-16" | ### Context: CREATE TABLE table_name_54 (set_3 VARCHAR, set_2 VARCHAR, set_5 VARCHAR, set_1 VARCHAR) ### Question: What is set 3 when set 5 is na, set 1 is 21-25, and set 2 is 25-16? ### Answer: SELECT set_3 FROM table_name_54 WHERE set_5 = "na" AND set_1 = "21-25" AND set_2 = "25-16" |
What is the set 1 for the date jun 26, and a set 2 of 25-16? | CREATE TABLE table_name_90 (set_1 VARCHAR, date VARCHAR, set_2 VARCHAR) | SELECT set_1 FROM table_name_90 WHERE date = "jun 26" AND set_2 = "25-16" | ### Context: CREATE TABLE table_name_90 (set_1 VARCHAR, date VARCHAR, set_2 VARCHAR) ### Question: What is the set 1 for the date jun 26, and a set 2 of 25-16? ### Answer: SELECT set_1 FROM table_name_90 WHERE date = "jun 26" AND set_2 = "25-16" |
What is the total for set 2 17-25? | CREATE TABLE table_name_80 (total VARCHAR, set_2 VARCHAR) | SELECT total FROM table_name_80 WHERE set_2 = "17-25" | ### Context: CREATE TABLE table_name_80 (total VARCHAR, set_2 VARCHAR) ### Question: What is the total for set 2 17-25? ### Answer: SELECT total FROM table_name_80 WHERE set_2 = "17-25" |
What Opponent has a Score that is 1-6, 3-6? | CREATE TABLE table_name_57 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_57 WHERE score = "1-6, 3-6" | ### Context: CREATE TABLE table_name_57 (opponent VARCHAR, score VARCHAR) ### Question: What Opponent has a Score that is 1-6, 3-6? ### Answer: SELECT opponent FROM table_name_57 WHERE score = "1-6, 3-6" |
What writer has mort drucker as the artist, an issue greater than 470, and law & order: svu as an actual title? | CREATE TABLE table_name_9 (writer VARCHAR, actual_title VARCHAR, artist VARCHAR, issue VARCHAR) | SELECT writer FROM table_name_9 WHERE artist = "mort drucker" AND issue > 470 AND actual_title = "law & order: svu" | ### Context: CREATE TABLE table_name_9 (writer VARCHAR, actual_title VARCHAR, artist VARCHAR, issue VARCHAR) ### Question: What writer has mort drucker as the artist, an issue greater than 470, and law & order: svu as an actual title? ### Answer: SELECT writer FROM table_name_9 WHERE artist = "mort drucker" AND issue > 470 AND actual_title = "law & order: svu" |
What date has ed as an actual title? | CREATE TABLE table_name_93 (date VARCHAR, actual_title VARCHAR) | SELECT date FROM table_name_93 WHERE actual_title = "ed" | ### Context: CREATE TABLE table_name_93 (date VARCHAR, actual_title VARCHAR) ### Question: What date has ed as an actual title? ### Answer: SELECT date FROM table_name_93 WHERE actual_title = "ed" |
What isssue has 7th heaven as an actual title? | CREATE TABLE table_name_51 (issue VARCHAR, actual_title VARCHAR) | SELECT issue FROM table_name_51 WHERE actual_title = "7th heaven" | ### Context: CREATE TABLE table_name_51 (issue VARCHAR, actual_title VARCHAR) ### Question: What isssue has 7th heaven as an actual title? ### Answer: SELECT issue FROM table_name_51 WHERE actual_title = "7th heaven" |
What issue has mort drucker as the artist and february 2001 as the date? | CREATE TABLE table_name_20 (issue VARCHAR, artist VARCHAR, date VARCHAR) | SELECT issue FROM table_name_20 WHERE artist = "mort drucker" AND date = "february 2001" | ### Context: CREATE TABLE table_name_20 (issue VARCHAR, artist VARCHAR, date VARCHAR) ### Question: What issue has mort drucker as the artist and february 2001 as the date? ### Answer: SELECT issue FROM table_name_20 WHERE artist = "mort drucker" AND date = "february 2001" |
In what Week was the Attendance 39,434? | CREATE TABLE table_name_78 (week VARCHAR, attendance INTEGER) | SELECT COUNT(week) FROM table_name_78 WHERE attendance < 39 OFFSET 434 | ### Context: CREATE TABLE table_name_78 (week VARCHAR, attendance INTEGER) ### Question: In what Week was the Attendance 39,434? ### Answer: SELECT COUNT(week) FROM table_name_78 WHERE attendance < 39 OFFSET 434 |
What year was the match were xavier malisse was the runner-up against lleyton hewitt? | CREATE TABLE table_name_3 (year VARCHAR, outcome VARCHAR, opponent VARCHAR) | SELECT year FROM table_name_3 WHERE outcome = "runner-up" AND opponent = "lleyton hewitt" | ### Context: CREATE TABLE table_name_3 (year VARCHAR, outcome VARCHAR, opponent VARCHAR) ### Question: What year was the match were xavier malisse was the runner-up against lleyton hewitt? ### Answer: SELECT year FROM table_name_3 WHERE outcome = "runner-up" AND opponent = "lleyton hewitt" |
What year was the match against filippo volandri where xavier malisse was runner-up? | CREATE TABLE table_name_39 (year VARCHAR, outcome VARCHAR, opponent VARCHAR) | SELECT year FROM table_name_39 WHERE outcome = "runner-up" AND opponent = "filippo volandri" | ### Context: CREATE TABLE table_name_39 (year VARCHAR, outcome VARCHAR, opponent VARCHAR) ### Question: What year was the match against filippo volandri where xavier malisse was runner-up? ### Answer: SELECT year FROM table_name_39 WHERE outcome = "runner-up" AND opponent = "filippo volandri" |
How many against have a difference of 6, with a played greater than 19? | CREATE TABLE table_name_57 (against INTEGER, difference VARCHAR, played VARCHAR) | SELECT SUM(against) FROM table_name_57 WHERE difference = "6" AND played > 19 | ### Context: CREATE TABLE table_name_57 (against INTEGER, difference VARCHAR, played VARCHAR) ### Question: How many against have a difference of 6, with a played greater than 19? ### Answer: SELECT SUM(against) FROM table_name_57 WHERE difference = "6" AND played > 19 |
What is the lowest drawn that has a played greater than 19, with a position less than 2? | CREATE TABLE table_name_52 (drawn INTEGER, played VARCHAR, position VARCHAR) | SELECT MIN(drawn) FROM table_name_52 WHERE played > 19 AND position < 2 | ### Context: CREATE TABLE table_name_52 (drawn INTEGER, played VARCHAR, position VARCHAR) ### Question: What is the lowest drawn that has a played greater than 19, with a position less than 2? ### Answer: SELECT MIN(drawn) FROM table_name_52 WHERE played > 19 AND position < 2 |
What is the average against that has a drawn less than 7, points greater than 22, and 19 for the played? | CREATE TABLE table_name_66 (against INTEGER, played VARCHAR, drawn VARCHAR, points VARCHAR) | SELECT AVG(against) FROM table_name_66 WHERE drawn < 7 AND points > 22 AND played = 19 | ### Context: CREATE TABLE table_name_66 (against INTEGER, played VARCHAR, drawn VARCHAR, points VARCHAR) ### Question: What is the average against that has a drawn less than 7, points greater than 22, and 19 for the played? ### Answer: SELECT AVG(against) FROM table_name_66 WHERE drawn < 7 AND points > 22 AND played = 19 |
When has a TV Time of fox 12:00 pm cdt? | CREATE TABLE table_name_75 (date VARCHAR, tv_time VARCHAR) | SELECT date FROM table_name_75 WHERE tv_time = "fox 12:00 pm cdt" | ### Context: CREATE TABLE table_name_75 (date VARCHAR, tv_time VARCHAR) ### Question: When has a TV Time of fox 12:00 pm cdt? ### Answer: SELECT date FROM table_name_75 WHERE tv_time = "fox 12:00 pm cdt" |
When has a Week of 8? | CREATE TABLE table_name_73 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_73 WHERE week = 8 | ### Context: CREATE TABLE table_name_73 (date VARCHAR, week VARCHAR) ### Question: When has a Week of 8? ### Answer: SELECT date FROM table_name_73 WHERE week = 8 |
Which Week has a Result of l 13-16 and an Opponent of at buffalo bills? | CREATE TABLE table_name_27 (week INTEGER, result VARCHAR, opponent VARCHAR) | SELECT AVG(week) FROM table_name_27 WHERE result = "l 13-16" AND opponent = "at buffalo bills" | ### Context: CREATE TABLE table_name_27 (week INTEGER, result VARCHAR, opponent VARCHAR) ### Question: Which Week has a Result of l 13-16 and an Opponent of at buffalo bills? ### Answer: SELECT AVG(week) FROM table_name_27 WHERE result = "l 13-16" AND opponent = "at buffalo bills" |
What kind of TV Time that has a Result of w 24–10? | CREATE TABLE table_name_72 (tv_time VARCHAR, result VARCHAR) | SELECT tv_time FROM table_name_72 WHERE result = "w 24–10" | ### Context: CREATE TABLE table_name_72 (tv_time VARCHAR, result VARCHAR) ### Question: What kind of TV Time that has a Result of w 24–10? ### Answer: SELECT tv_time FROM table_name_72 WHERE result = "w 24–10" |
What is the name of the conference that K. C. Jones was a head coach in? | CREATE TABLE table_name_78 (conf VARCHAR, head_coach VARCHAR) | SELECT conf FROM table_name_78 WHERE head_coach = "k. c. jones" | ### Context: CREATE TABLE table_name_78 (conf VARCHAR, head_coach VARCHAR) ### Question: What is the name of the conference that K. C. Jones was a head coach in? ### Answer: SELECT conf FROM table_name_78 WHERE head_coach = "k. c. jones" |
Who had the highest assists of the game on March 5? | CREATE TABLE table_name_50 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_name_50 WHERE date = "march 5" | ### Context: CREATE TABLE table_name_50 (high_assists VARCHAR, date VARCHAR) ### Question: Who had the highest assists of the game on March 5? ### Answer: SELECT high_assists FROM table_name_50 WHERE date = "march 5" |
What is the least amount of appearances by new zealand when they scored 4 goals? | CREATE TABLE table_name_85 (appearances INTEGER, goals VARCHAR, nationality VARCHAR) | SELECT MIN(appearances) FROM table_name_85 WHERE goals = 4 AND nationality = "new zealand" | ### Context: CREATE TABLE table_name_85 (appearances INTEGER, goals VARCHAR, nationality VARCHAR) ### Question: What is the least amount of appearances by new zealand when they scored 4 goals? ### Answer: SELECT MIN(appearances) FROM table_name_85 WHERE goals = 4 AND nationality = "new zealand" |
how many appearances did batram suri category:articles with hcards have scoring less than 2 goals? | CREATE TABLE table_name_41 (appearances VARCHAR, name VARCHAR, goals VARCHAR) | SELECT COUNT(appearances) FROM table_name_41 WHERE name = "batram suri category:articles with hcards" AND goals < 2 | ### Context: CREATE TABLE table_name_41 (appearances VARCHAR, name VARCHAR, goals VARCHAR) ### Question: how many appearances did batram suri category:articles with hcards have scoring less than 2 goals? ### Answer: SELECT COUNT(appearances) FROM table_name_41 WHERE name = "batram suri category:articles with hcards" AND goals < 2 |
What province has a v valparaíso region and an area of 927.2? | CREATE TABLE table_name_31 (province VARCHAR, region VARCHAR, area VARCHAR) | SELECT province FROM table_name_31 WHERE region = "v valparaíso" AND area = 927.2 | ### Context: CREATE TABLE table_name_31 (province VARCHAR, region VARCHAR, area VARCHAR) ### Question: What province has a v valparaíso region and an area of 927.2? ### Answer: SELECT province FROM table_name_31 WHERE region = "v valparaíso" AND area = 927.2 |
What is the average area with valparaíso as the capital? | CREATE TABLE table_name_34 (area INTEGER, capital VARCHAR) | SELECT AVG(area) FROM table_name_34 WHERE capital = "valparaíso" | ### Context: CREATE TABLE table_name_34 (area INTEGER, capital VARCHAR) ### Question: What is the average area with valparaíso as the capital? ### Answer: SELECT AVG(area) FROM table_name_34 WHERE capital = "valparaíso" |
WHich Category in White has a Amerindian of 4,87%? | CREATE TABLE table_name_96 (white VARCHAR, amerindian VARCHAR) | SELECT white FROM table_name_96 WHERE amerindian = "4,87%" | ### Context: CREATE TABLE table_name_96 (white VARCHAR, amerindian VARCHAR) ### Question: WHich Category in White has a Amerindian of 4,87%? ### Answer: SELECT white FROM table_name_96 WHERE amerindian = "4,87%" |
WHich Category in White has a Black of 38,05%? | CREATE TABLE table_name_35 (white VARCHAR, black VARCHAR) | SELECT white FROM table_name_35 WHERE black = "38,05%" | ### Context: CREATE TABLE table_name_35 (white VARCHAR, black VARCHAR) ### Question: WHich Category in White has a Black of 38,05%? ### Answer: SELECT white FROM table_name_35 WHERE black = "38,05%" |
Which Category in Brown has a Frequency of 0.08%? | CREATE TABLE table_name_84 (brown VARCHAR, frequency VARCHAR) | SELECT brown FROM table_name_84 WHERE frequency = "0.08%" | ### Context: CREATE TABLE table_name_84 (brown VARCHAR, frequency VARCHAR) ### Question: Which Category in Brown has a Frequency of 0.08%? ### Answer: SELECT brown FROM table_name_84 WHERE frequency = "0.08%" |
Which Category in Black has a Brown of 6,54%? | CREATE TABLE table_name_61 (black VARCHAR, brown VARCHAR) | SELECT black FROM table_name_61 WHERE brown = "6,54%" | ### Context: CREATE TABLE table_name_61 (black VARCHAR, brown VARCHAR) ### Question: Which Category in Black has a Brown of 6,54%? ### Answer: SELECT black FROM table_name_61 WHERE brown = "6,54%" |
What is the Capacity in use with an Annual change that is 21.8%? | CREATE TABLE table_name_31 (capacity_in_use VARCHAR, annual_change VARCHAR) | SELECT capacity_in_use FROM table_name_31 WHERE annual_change = "21.8%" | ### Context: CREATE TABLE table_name_31 (capacity_in_use VARCHAR, annual_change VARCHAR) ### Question: What is the Capacity in use with an Annual change that is 21.8%? ### Answer: SELECT capacity_in_use FROM table_name_31 WHERE annual_change = "21.8%" |
How many Tries has Points for smaller than 137, and Tries against larger than 12? | CREATE TABLE table_name_81 (tries_for VARCHAR, points_for VARCHAR, tries_against VARCHAR) | SELECT COUNT(tries_for) FROM table_name_81 WHERE points_for < 137 AND tries_against > 12 | ### Context: CREATE TABLE table_name_81 (tries_for VARCHAR, points_for VARCHAR, tries_against VARCHAR) ### Question: How many Tries has Points for smaller than 137, and Tries against larger than 12? ### Answer: SELECT COUNT(tries_for) FROM table_name_81 WHERE points_for < 137 AND tries_against > 12 |
WHich Team that has Points against of 43? | CREATE TABLE table_name_17 (team VARCHAR, points_against VARCHAR) | SELECT team FROM table_name_17 WHERE points_against = 43 | ### Context: CREATE TABLE table_name_17 (team VARCHAR, points_against VARCHAR) ### Question: WHich Team that has Points against of 43? ### Answer: SELECT team FROM table_name_17 WHERE points_against = 43 |
WHich Tries has a Team of pau and Points against larger than 103? | CREATE TABLE table_name_48 (tries_for INTEGER, team VARCHAR, points_against VARCHAR) | SELECT MIN(tries_for) FROM table_name_48 WHERE team = "pau" AND points_against > 103 | ### Context: CREATE TABLE table_name_48 (tries_for INTEGER, team VARCHAR, points_against VARCHAR) ### Question: WHich Tries has a Team of pau and Points against larger than 103? ### Answer: SELECT MIN(tries_for) FROM table_name_48 WHERE team = "pau" AND points_against > 103 |
How many Points against has Tries for smaller than 14, and a Team of llanelli? | CREATE TABLE table_name_13 (points_against INTEGER, tries_for VARCHAR, team VARCHAR) | SELECT AVG(points_against) FROM table_name_13 WHERE tries_for < 14 AND team = "llanelli" | ### Context: CREATE TABLE table_name_13 (points_against INTEGER, tries_for VARCHAR, team VARCHAR) ### Question: How many Points against has Tries for smaller than 14, and a Team of llanelli? ### Answer: SELECT AVG(points_against) FROM table_name_13 WHERE tries_for < 14 AND team = "llanelli" |
How many Tries against has a Try diff of –17 and Points for smaller than 80? | CREATE TABLE table_name_30 (tries_against VARCHAR, try_diff VARCHAR, points_for VARCHAR) | SELECT COUNT(tries_against) FROM table_name_30 WHERE try_diff = "–17" AND points_for < 80 | ### Context: CREATE TABLE table_name_30 (tries_against VARCHAR, try_diff VARCHAR, points_for VARCHAR) ### Question: How many Tries against has a Try diff of –17 and Points for smaller than 80? ### Answer: SELECT COUNT(tries_against) FROM table_name_30 WHERE try_diff = "–17" AND points_for < 80 |
Which player was the forward? | CREATE TABLE table_name_7 (player VARCHAR, position VARCHAR) | SELECT player FROM table_name_7 WHERE position = "forward" | ### Context: CREATE TABLE table_name_7 (player VARCHAR, position VARCHAR) ### Question: Which player was the forward? ### Answer: SELECT player FROM table_name_7 WHERE position = "forward" |
Which years in Orlando are featured with the center position? | CREATE TABLE table_name_11 (years_in_orlando VARCHAR, position VARCHAR) | SELECT years_in_orlando FROM table_name_11 WHERE position = "center" | ### Context: CREATE TABLE table_name_11 (years_in_orlando VARCHAR, position VARCHAR) ### Question: Which years in Orlando are featured with the center position? ### Answer: SELECT years_in_orlando FROM table_name_11 WHERE position = "center" |
Which position was in Orlando in 2000? | CREATE TABLE table_name_15 (position VARCHAR, years_in_orlando VARCHAR) | SELECT position FROM table_name_15 WHERE years_in_orlando = "2000" | ### Context: CREATE TABLE table_name_15 (position VARCHAR, years_in_orlando VARCHAR) ### Question: Which position was in Orlando in 2000? ### Answer: SELECT position FROM table_name_15 WHERE years_in_orlando = "2000" |
What is the Name with Goals that are 135? | CREATE TABLE table_name_61 (name VARCHAR, goals VARCHAR) | SELECT name FROM table_name_61 WHERE goals = 135 | ### Context: CREATE TABLE table_name_61 (name VARCHAR, goals VARCHAR) ### Question: What is the Name with Goals that are 135? ### Answer: SELECT name FROM table_name_61 WHERE goals = 135 |
Which American Labor candidate ran against Democratic candidate Robert F. Wagner? | CREATE TABLE table_name_51 (american_labor_ticket VARCHAR, democratic_ticket VARCHAR) | SELECT american_labor_ticket FROM table_name_51 WHERE democratic_ticket = "robert f. wagner" | ### Context: CREATE TABLE table_name_51 (american_labor_ticket VARCHAR, democratic_ticket VARCHAR) ### Question: Which American Labor candidate ran against Democratic candidate Robert F. Wagner? ### Answer: SELECT american_labor_ticket FROM table_name_51 WHERE democratic_ticket = "robert f. wagner" |
Which Socialist candidate ran against American Labor candidate Caroline O'Day? | CREATE TABLE table_name_65 (socialist_ticket VARCHAR, american_labor_ticket VARCHAR) | SELECT socialist_ticket FROM table_name_65 WHERE american_labor_ticket = "caroline o'day" | ### Context: CREATE TABLE table_name_65 (socialist_ticket VARCHAR, american_labor_ticket VARCHAR) ### Question: Which Socialist candidate ran against American Labor candidate Caroline O'Day? ### Answer: SELECT socialist_ticket FROM table_name_65 WHERE american_labor_ticket = "caroline o'day" |
Which Democrtic candidate ran against the Socialist candidate Edna Mitchell Blue? | CREATE TABLE table_name_71 (democratic_ticket VARCHAR, socialist_ticket VARCHAR) | SELECT democratic_ticket FROM table_name_71 WHERE socialist_ticket = "edna mitchell blue" | ### Context: CREATE TABLE table_name_71 (democratic_ticket VARCHAR, socialist_ticket VARCHAR) ### Question: Which Democrtic candidate ran against the Socialist candidate Edna Mitchell Blue? ### Answer: SELECT democratic_ticket FROM table_name_71 WHERE socialist_ticket = "edna mitchell blue" |
Which American Labor candidate is running against the Socialist candidate Herman J. Hahn? | CREATE TABLE table_name_55 (american_labor_ticket VARCHAR, socialist_ticket VARCHAR) | SELECT american_labor_ticket FROM table_name_55 WHERE socialist_ticket = "herman j. hahn" | ### Context: CREATE TABLE table_name_55 (american_labor_ticket VARCHAR, socialist_ticket VARCHAR) ### Question: Which American Labor candidate is running against the Socialist candidate Herman J. Hahn? ### Answer: SELECT american_labor_ticket FROM table_name_55 WHERE socialist_ticket = "herman j. hahn" |
Which Republican ran against the American Labor candidate Matthew J. Merritt? | CREATE TABLE table_name_5 (republican_ticket VARCHAR, american_labor_ticket VARCHAR) | SELECT republican_ticket FROM table_name_5 WHERE american_labor_ticket = "matthew j. merritt" | ### Context: CREATE TABLE table_name_5 (republican_ticket VARCHAR, american_labor_ticket VARCHAR) ### Question: Which Republican ran against the American Labor candidate Matthew J. Merritt? ### Answer: SELECT republican_ticket FROM table_name_5 WHERE american_labor_ticket = "matthew j. merritt" |
Which American Labor candidate ran against Republican Thomas E. Dewey? | CREATE TABLE table_name_91 (american_labor_ticket VARCHAR, republican_ticket VARCHAR) | SELECT american_labor_ticket FROM table_name_91 WHERE republican_ticket = "thomas e. dewey" | ### Context: CREATE TABLE table_name_91 (american_labor_ticket VARCHAR, republican_ticket VARCHAR) ### Question: Which American Labor candidate ran against Republican Thomas E. Dewey? ### Answer: SELECT american_labor_ticket FROM table_name_91 WHERE republican_ticket = "thomas e. dewey" |
Who is the Opponent in the final after 1983 with an Outcome of runner-up? | CREATE TABLE table_name_48 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_48 WHERE outcome = "runner-up" AND date > 1983 | ### Context: CREATE TABLE table_name_48 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR) ### Question: Who is the Opponent in the final after 1983 with an Outcome of runner-up? ### Answer: SELECT opponent_in_the_final FROM table_name_48 WHERE outcome = "runner-up" AND date > 1983 |
What Opponent in the final had a match with a Score in the final of 7–5, 6–2? | CREATE TABLE table_name_31 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR) | SELECT opponent_in_the_final FROM table_name_31 WHERE score_in_the_final = "7–5, 6–2" | ### Context: CREATE TABLE table_name_31 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR) ### Question: What Opponent in the final had a match with a Score in the final of 7–5, 6–2? ### Answer: SELECT opponent_in_the_final FROM table_name_31 WHERE score_in_the_final = "7–5, 6–2" |
What is the Championship with Vitas Gerulaitis as Opponent in the final in a match on Clay Surface? | CREATE TABLE table_name_3 (championship VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) | SELECT championship FROM table_name_3 WHERE surface = "clay" AND opponent_in_the_final = "vitas gerulaitis" | ### Context: CREATE TABLE table_name_3 (championship VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) ### Question: What is the Championship with Vitas Gerulaitis as Opponent in the final in a match on Clay Surface? ### Answer: SELECT championship FROM table_name_3 WHERE surface = "clay" AND opponent_in_the_final = "vitas gerulaitis" |
What is the smallest percentage of marine area for Pacific Marine ecozone and percentage of total area greater than 3.1? | CREATE TABLE table_name_50 (percentage_of_marine_area__foreez_ INTEGER, ecozone VARCHAR, percentage_of_total_area__foreez_ VARCHAR) | SELECT MIN(percentage_of_marine_area__foreez_) FROM table_name_50 WHERE ecozone = "pacific marine" AND percentage_of_total_area__foreez_ > 3.1 | ### Context: CREATE TABLE table_name_50 (percentage_of_marine_area__foreez_ INTEGER, ecozone VARCHAR, percentage_of_total_area__foreez_ VARCHAR) ### Question: What is the smallest percentage of marine area for Pacific Marine ecozone and percentage of total area greater than 3.1? ### Answer: SELECT MIN(percentage_of_marine_area__foreez_) FROM table_name_50 WHERE ecozone = "pacific marine" AND percentage_of_total_area__foreez_ > 3.1 |
How many values for percentage of marine area are for the Atlantic marine ecozone with an exclusive economic zone area less than 996,439? | CREATE TABLE table_name_78 (percentage_of_marine_area__foreez_ VARCHAR, ecozone VARCHAR, area__km²__exclusive_economic_zone VARCHAR) | SELECT COUNT(percentage_of_marine_area__foreez_) FROM table_name_78 WHERE ecozone = "atlantic marine" AND area__km²__exclusive_economic_zone < 996 OFFSET 439 | ### Context: CREATE TABLE table_name_78 (percentage_of_marine_area__foreez_ VARCHAR, ecozone VARCHAR, area__km²__exclusive_economic_zone VARCHAR) ### Question: How many values for percentage of marine area are for the Atlantic marine ecozone with an exclusive economic zone area less than 996,439? ### Answer: SELECT COUNT(percentage_of_marine_area__foreez_) FROM table_name_78 WHERE ecozone = "atlantic marine" AND area__km²__exclusive_economic_zone < 996 OFFSET 439 |
What is the team when alvin williams (6) has the high assists? | CREATE TABLE table_name_29 (team VARCHAR, high_assists VARCHAR) | SELECT team FROM table_name_29 WHERE high_assists = "alvin williams (6)" | ### Context: CREATE TABLE table_name_29 (team VARCHAR, high_assists VARCHAR) ### Question: What is the team when alvin williams (6) has the high assists? ### Answer: SELECT team FROM table_name_29 WHERE high_assists = "alvin williams (6)" |
What is the Record for a game less than 3 and the score was l 91–96 (ot)? | CREATE TABLE table_name_19 (record VARCHAR, game VARCHAR, score VARCHAR) | SELECT record FROM table_name_19 WHERE game < 3 AND score = "l 91–96 (ot)" | ### Context: CREATE TABLE table_name_19 (record VARCHAR, game VARCHAR, score VARCHAR) ### Question: What is the Record for a game less than 3 and the score was l 91–96 (ot)? ### Answer: SELECT record FROM table_name_19 WHERE game < 3 AND score = "l 91–96 (ot)" |
What is the Date when the high points went to Dell Curry (17)? | CREATE TABLE table_name_84 (date VARCHAR, high_points VARCHAR) | SELECT date FROM table_name_84 WHERE high_points = "dell curry (17)" | ### Context: CREATE TABLE table_name_84 (date VARCHAR, high_points VARCHAR) ### Question: What is the Date when the high points went to Dell Curry (17)? ### Answer: SELECT date FROM table_name_84 WHERE high_points = "dell curry (17)" |
What is the Team when antonio davis (8) had the high rebounds? | CREATE TABLE table_name_53 (team VARCHAR, high_rebounds VARCHAR) | SELECT team FROM table_name_53 WHERE high_rebounds = "antonio davis (8)" | ### Context: CREATE TABLE table_name_53 (team VARCHAR, high_rebounds VARCHAR) ### Question: What is the Team when antonio davis (8) had the high rebounds? ### Answer: SELECT team FROM table_name_53 WHERE high_rebounds = "antonio davis (8)" |
What is the Tournament with a Date that is apr 16, 1967? | CREATE TABLE table_name_56 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_56 WHERE date = "apr 16, 1967" | ### Context: CREATE TABLE table_name_56 (tournament VARCHAR, date VARCHAR) ### Question: What is the Tournament with a Date that is apr 16, 1967? ### Answer: SELECT tournament FROM table_name_56 WHERE date = "apr 16, 1967" |
What is the Date with a Runner(s)-up that is jerry steelsmith? | CREATE TABLE table_name_69 (date VARCHAR, runner_s__up VARCHAR) | SELECT date FROM table_name_69 WHERE runner_s__up = "jerry steelsmith" | ### Context: CREATE TABLE table_name_69 (date VARCHAR, runner_s__up VARCHAR) ### Question: What is the Date with a Runner(s)-up that is jerry steelsmith? ### Answer: SELECT date FROM table_name_69 WHERE runner_s__up = "jerry steelsmith" |
What kind of Obama that has a Source of rasmussen reports? | CREATE TABLE table_name_28 (obama VARCHAR, source VARCHAR) | SELECT obama FROM table_name_28 WHERE source = "rasmussen reports" | ### Context: CREATE TABLE table_name_28 (obama VARCHAR, source VARCHAR) ### Question: What kind of Obama that has a Source of rasmussen reports? ### Answer: SELECT obama FROM table_name_28 WHERE source = "rasmussen reports" |
Which Source has a Undecided of 2%? | CREATE TABLE table_name_46 (source VARCHAR, undecided VARCHAR) | SELECT source FROM table_name_46 WHERE undecided = "2%" | ### Context: CREATE TABLE table_name_46 (source VARCHAR, undecided VARCHAR) ### Question: Which Source has a Undecided of 2%? ### Answer: SELECT source FROM table_name_46 WHERE undecided = "2%" |
What kind of Obama has a Undecided of 1%? | CREATE TABLE table_name_87 (obama VARCHAR, undecided VARCHAR) | SELECT obama FROM table_name_87 WHERE undecided = "1%" | ### Context: CREATE TABLE table_name_87 (obama VARCHAR, undecided VARCHAR) ### Question: What kind of Obama has a Undecided of 1%? ### Answer: SELECT obama FROM table_name_87 WHERE undecided = "1%" |
When has a Source of surveyusa and a Obama of 54%? | CREATE TABLE table_name_8 (date VARCHAR, source VARCHAR, obama VARCHAR) | SELECT date FROM table_name_8 WHERE source = "surveyusa" AND obama = "54%" | ### Context: CREATE TABLE table_name_8 (date VARCHAR, source VARCHAR, obama VARCHAR) ### Question: When has a Source of surveyusa and a Obama of 54%? ### Answer: SELECT date FROM table_name_8 WHERE source = "surveyusa" AND obama = "54%" |
When has a Source of rasmussen reports? | CREATE TABLE table_name_39 (date VARCHAR, source VARCHAR) | SELECT date FROM table_name_39 WHERE source = "rasmussen reports" | ### Context: CREATE TABLE table_name_39 (date VARCHAR, source VARCHAR) ### Question: When has a Source of rasmussen reports? ### Answer: SELECT date FROM table_name_39 WHERE source = "rasmussen reports" |
Which Source has a Clinton of 39% and a Undecided of 7%? | CREATE TABLE table_name_94 (source VARCHAR, clinton VARCHAR, undecided VARCHAR) | SELECT source FROM table_name_94 WHERE clinton = "39%" AND undecided = "7%" | ### Context: CREATE TABLE table_name_94 (source VARCHAR, clinton VARCHAR, undecided VARCHAR) ### Question: Which Source has a Clinton of 39% and a Undecided of 7%? ### Answer: SELECT source FROM table_name_94 WHERE clinton = "39%" AND undecided = "7%" |
What is the Date of Birth with a Block that is larger than 342? | CREATE TABLE table_name_18 (date_of_birth VARCHAR, block INTEGER) | SELECT date_of_birth FROM table_name_18 WHERE block > 342 | ### Context: CREATE TABLE table_name_18 (date_of_birth VARCHAR, block INTEGER) ### Question: What is the Date of Birth with a Block that is larger than 342? ### Answer: SELECT date_of_birth FROM table_name_18 WHERE block > 342 |
What is the number of positions that have 2012 ratings of 0.92? | CREATE TABLE table_name_21 (position VARCHAR) | SELECT COUNT(position) FROM table_name_21 WHERE 2012 = "0.92" | ### Context: CREATE TABLE table_name_21 (position VARCHAR) ### Question: What is the number of positions that have 2012 ratings of 0.92? ### Answer: SELECT COUNT(position) FROM table_name_21 WHERE 2012 = "0.92" |
What is the owner of the channel that has a 2012 rating of 5.42? | CREATE TABLE table_name_96 (owner VARCHAR) | SELECT owner FROM table_name_96 WHERE 2012 = "5.42" | ### Context: CREATE TABLE table_name_96 (owner VARCHAR) ### Question: What is the owner of the channel that has a 2012 rating of 5.42? ### Answer: SELECT owner FROM table_name_96 WHERE 2012 = "5.42" |
What is the 2007 rating of the channel with a position of 6? | CREATE TABLE table_name_28 (position VARCHAR) | SELECT 2007 FROM table_name_28 WHERE position = 6 | ### Context: CREATE TABLE table_name_28 (position VARCHAR) ### Question: What is the 2007 rating of the channel with a position of 6? ### Answer: SELECT 2007 FROM table_name_28 WHERE position = 6 |
What is the channel with a 2011 rating of 8.5? | CREATE TABLE table_name_64 (channel VARCHAR) | SELECT channel FROM table_name_64 WHERE 2011 = "8.5" | ### Context: CREATE TABLE table_name_64 (channel VARCHAR) ### Question: What is the channel with a 2011 rating of 8.5? ### Answer: SELECT channel FROM table_name_64 WHERE 2011 = "8.5" |
What is ASTC Member, when State is Arkansas, when AAM Member is No, and when AAM Accredited is Yes? | CREATE TABLE table_name_39 (astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR) | SELECT astc_member FROM table_name_39 WHERE state = "arkansas" AND aam_member = "no" AND aam_accredited = "yes" | ### Context: CREATE TABLE table_name_39 (astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR) ### Question: What is ASTC Member, when State is Arkansas, when AAM Member is No, and when AAM Accredited is Yes? ### Answer: SELECT astc_member FROM table_name_39 WHERE state = "arkansas" AND aam_member = "no" AND aam_accredited = "yes" |
What is City, when State is Florida, when AAM Member is No, and when AAM Accredited is No? | CREATE TABLE table_name_61 (city VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR) | SELECT city FROM table_name_61 WHERE state = "florida" AND aam_member = "no" AND aam_accredited = "no" | ### Context: CREATE TABLE table_name_61 (city VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR) ### Question: What is City, when State is Florida, when AAM Member is No, and when AAM Accredited is No? ### Answer: SELECT city FROM table_name_61 WHERE state = "florida" AND aam_member = "no" AND aam_accredited = "no" |
What is City, when ASTC Member is No, when State is California, and when AAM Member is Yes? | CREATE TABLE table_name_62 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR) | SELECT city FROM table_name_62 WHERE astc_member = "no" AND state = "california" AND aam_member = "yes" | ### Context: CREATE TABLE table_name_62 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR) ### Question: What is City, when ASTC Member is No, when State is California, and when AAM Member is Yes? ### Answer: SELECT city FROM table_name_62 WHERE astc_member = "no" AND state = "california" AND aam_member = "yes" |
What is State, when AAM Accredited is No, when ASTC Member is No, and when City is Tulsa? | CREATE TABLE table_name_49 (state VARCHAR, city VARCHAR, aam_accredited VARCHAR, astc_member VARCHAR) | SELECT state FROM table_name_49 WHERE aam_accredited = "no" AND astc_member = "no" AND city = "tulsa" | ### Context: CREATE TABLE table_name_49 (state VARCHAR, city VARCHAR, aam_accredited VARCHAR, astc_member VARCHAR) ### Question: What is State, when AAM Accredited is No, when ASTC Member is No, and when City is Tulsa? ### Answer: SELECT state FROM table_name_49 WHERE aam_accredited = "no" AND astc_member = "no" AND city = "tulsa" |
What is City, when State is California, when AAM Accredited is No, when ASTC Member is Yes, and when AAM Member is No? | CREATE TABLE table_name_30 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR, aam_accredited VARCHAR) | SELECT city FROM table_name_30 WHERE state = "california" AND aam_accredited = "no" AND astc_member = "yes" AND aam_member = "no" | ### Context: CREATE TABLE table_name_30 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR, aam_accredited VARCHAR) ### Question: What is City, when State is California, when AAM Accredited is No, when ASTC Member is Yes, and when AAM Member is No? ### Answer: SELECT city FROM table_name_30 WHERE state = "california" AND aam_accredited = "no" AND astc_member = "yes" AND aam_member = "no" |
What is AAM Member, when AAM Accredited is No, when State is California, when ASTC Member is Yes, and when City is Sacramento? | CREATE TABLE table_name_21 (aam_member VARCHAR, city VARCHAR, astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR) | SELECT aam_member FROM table_name_21 WHERE aam_accredited = "no" AND state = "california" AND astc_member = "yes" AND city = "sacramento" | ### Context: CREATE TABLE table_name_21 (aam_member VARCHAR, city VARCHAR, astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR) ### Question: What is AAM Member, when AAM Accredited is No, when State is California, when ASTC Member is Yes, and when City is Sacramento? ### Answer: SELECT aam_member FROM table_name_21 WHERE aam_accredited = "no" AND state = "california" AND astc_member = "yes" AND city = "sacramento" |
Who were the runners-up when the individual winner was Tiger Woods? | CREATE TABLE table_name_17 (runners_up VARCHAR, individual VARCHAR) | SELECT runners_up FROM table_name_17 WHERE individual = "tiger woods" | ### Context: CREATE TABLE table_name_17 (runners_up VARCHAR, individual VARCHAR) ### Question: Who were the runners-up when the individual winner was Tiger Woods? ### Answer: SELECT runners_up FROM table_name_17 WHERE individual = "tiger woods" |
How many years was the individual winner from the United States was Tiger Woods? | CREATE TABLE table_name_75 (year VARCHAR, country VARCHAR, individual VARCHAR) | SELECT COUNT(year) FROM table_name_75 WHERE country = "united states" AND individual = "tiger woods" | ### Context: CREATE TABLE table_name_75 (year VARCHAR, country VARCHAR, individual VARCHAR) ### Question: How many years was the individual winner from the United States was Tiger Woods? ### Answer: SELECT COUNT(year) FROM table_name_75 WHERE country = "united states" AND individual = "tiger woods" |
What is the earliest year that the tournament was played in Cape Town, South Africa? | CREATE TABLE table_name_71 (year INTEGER, location VARCHAR) | SELECT MIN(year) FROM table_name_71 WHERE location = "cape town, south africa" | ### Context: CREATE TABLE table_name_71 (year INTEGER, location VARCHAR) ### Question: What is the earliest year that the tournament was played in Cape Town, South Africa? ### Answer: SELECT MIN(year) FROM table_name_71 WHERE location = "cape town, south africa" |
Who is the Driver, when the Date is October 6? | CREATE TABLE table_name_98 (driver VARCHAR, date VARCHAR) | SELECT driver FROM table_name_98 WHERE date = "october 6" | ### Context: CREATE TABLE table_name_98 (driver VARCHAR, date VARCHAR) ### Question: Who is the Driver, when the Date is October 6? ### Answer: SELECT driver FROM table_name_98 WHERE date = "october 6" |
What is the total number of Seasons, when the Engine is Cosworth, and when the Team is Kraco Racing? | CREATE TABLE table_name_85 (season VARCHAR, engine VARCHAR, team VARCHAR) | SELECT COUNT(season) FROM table_name_85 WHERE engine = "cosworth" AND team = "kraco racing" | ### Context: CREATE TABLE table_name_85 (season VARCHAR, engine VARCHAR, team VARCHAR) ### Question: What is the total number of Seasons, when the Engine is Cosworth, and when the Team is Kraco Racing? ### Answer: SELECT COUNT(season) FROM table_name_85 WHERE engine = "cosworth" AND team = "kraco racing" |
Who is the Driver, when the Engine is Chevrolet, and when the Date is October 3? | CREATE TABLE table_name_90 (driver VARCHAR, engine VARCHAR, date VARCHAR) | SELECT driver FROM table_name_90 WHERE engine = "chevrolet" AND date = "october 3" | ### Context: CREATE TABLE table_name_90 (driver VARCHAR, engine VARCHAR, date VARCHAR) ### Question: Who is the Driver, when the Engine is Chevrolet, and when the Date is October 3? ### Answer: SELECT driver FROM table_name_90 WHERE engine = "chevrolet" AND date = "october 3" |
What is the sum of Seasons, when the Team is Penske Racing, and when the Date is October 3? | CREATE TABLE table_name_10 (season INTEGER, team VARCHAR, date VARCHAR) | SELECT SUM(season) FROM table_name_10 WHERE team = "penske racing" AND date = "october 3" | ### Context: CREATE TABLE table_name_10 (season INTEGER, team VARCHAR, date VARCHAR) ### Question: What is the sum of Seasons, when the Team is Penske Racing, and when the Date is October 3? ### Answer: SELECT SUM(season) FROM table_name_10 WHERE team = "penske racing" AND date = "october 3" |
What was the Year to Open for the Dandeung Bridge? | CREATE TABLE table_name_51 (year_to_open VARCHAR, name VARCHAR) | SELECT COUNT(year_to_open) FROM table_name_51 WHERE name = "dandeung bridge" | ### Context: CREATE TABLE table_name_51 (year_to_open VARCHAR, name VARCHAR) ### Question: What was the Year to Open for the Dandeung Bridge? ### Answer: SELECT COUNT(year_to_open) FROM table_name_51 WHERE name = "dandeung bridge" |
What is the Main span of the Qincaobei Bridge | CREATE TABLE table_name_64 (main_span_feet VARCHAR, name VARCHAR) | SELECT main_span_feet FROM table_name_64 WHERE name = "qincaobei bridge" | ### Context: CREATE TABLE table_name_64 (main_span_feet VARCHAR, name VARCHAR) ### Question: What is the Main span of the Qincaobei Bridge ### Answer: SELECT main_span_feet FROM table_name_64 WHERE name = "qincaobei bridge" |
What is the Main span of the bridge from China with a Year to open of 2013 and Main span feet of 2,585? | CREATE TABLE table_name_23 (main_span_metres VARCHAR, main_span_feet VARCHAR, year_to_open VARCHAR, country VARCHAR) | SELECT main_span_metres FROM table_name_23 WHERE year_to_open = 2013 AND country = "china" AND main_span_feet = "2,585" | ### Context: CREATE TABLE table_name_23 (main_span_metres VARCHAR, main_span_feet VARCHAR, year_to_open VARCHAR, country VARCHAR) ### Question: What is the Main span of the bridge from China with a Year to open of 2013 and Main span feet of 2,585? ### Answer: SELECT main_span_metres FROM table_name_23 WHERE year_to_open = 2013 AND country = "china" AND main_span_feet = "2,585" |
Which republican ticket has stanley h. fuld as the Democratic ticket? | CREATE TABLE table_name_25 (republican_ticket VARCHAR, democratic_ticket VARCHAR) | SELECT republican_ticket FROM table_name_25 WHERE democratic_ticket = "stanley h. fuld" | ### Context: CREATE TABLE table_name_25 (republican_ticket VARCHAR, democratic_ticket VARCHAR) ### Question: Which republican ticket has stanley h. fuld as the Democratic ticket? ### Answer: SELECT republican_ticket FROM table_name_25 WHERE democratic_ticket = "stanley h. fuld" |
What is the liberal ticket that has judith white as the socialist workers? | CREATE TABLE table_name_73 (liberal_ticket VARCHAR, socialist_workers_ticket VARCHAR) | SELECT liberal_ticket FROM table_name_73 WHERE socialist_workers_ticket = "judith white" | ### Context: CREATE TABLE table_name_73 (liberal_ticket VARCHAR, socialist_workers_ticket VARCHAR) ### Question: What is the liberal ticket that has judith white as the socialist workers? ### Answer: SELECT liberal_ticket FROM table_name_73 WHERE socialist_workers_ticket = "judith white" |
What socialist workers ticket has malcolm wilson as the Republican ticket? | CREATE TABLE table_name_71 (socialist_workers_ticket VARCHAR, republican_ticket VARCHAR) | SELECT socialist_workers_ticket FROM table_name_71 WHERE republican_ticket = "malcolm wilson" | ### Context: CREATE TABLE table_name_71 (socialist_workers_ticket VARCHAR, republican_ticket VARCHAR) ### Question: What socialist workers ticket has malcolm wilson as the Republican ticket? ### Answer: SELECT socialist_workers_ticket FROM table_name_71 WHERE republican_ticket = "malcolm wilson" |
Which office has kieran o'doherty as the conservative ticket? | CREATE TABLE table_name_28 (office VARCHAR, conservative_ticket VARCHAR) | SELECT office FROM table_name_28 WHERE conservative_ticket = "kieran o'doherty" | ### Context: CREATE TABLE table_name_28 (office VARCHAR, conservative_ticket VARCHAR) ### Question: Which office has kieran o'doherty as the conservative ticket? ### Answer: SELECT office FROM table_name_28 WHERE conservative_ticket = "kieran o'doherty" |
What office has (none) as the socialist labor ticket, and stanley h. fuld as the liberal ticket? | CREATE TABLE table_name_8 (office VARCHAR, socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR) | SELECT office FROM table_name_8 WHERE socialist_labor_ticket = "(none)" AND liberal_ticket = "stanley h. fuld" | ### Context: CREATE TABLE table_name_8 (office VARCHAR, socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR) ### Question: What office has (none) as the socialist labor ticket, and stanley h. fuld as the liberal ticket? ### Answer: SELECT office FROM table_name_8 WHERE socialist_labor_ticket = "(none)" AND liberal_ticket = "stanley h. fuld" |
If the call sign is w291ch what's the ERP W corresponding to that sign? | CREATE TABLE table_name_38 (erp_w VARCHAR, call_sign VARCHAR) | SELECT erp_w FROM table_name_38 WHERE call_sign = "w291ch" | ### Context: CREATE TABLE table_name_38 (erp_w VARCHAR, call_sign VARCHAR) ### Question: If the call sign is w291ch what's the ERP W corresponding to that sign? ### Answer: SELECT erp_w FROM table_name_38 WHERE call_sign = "w291ch" |
For the call sign w242at what's the city the license plate is registered to? | CREATE TABLE table_name_78 (city_of_license VARCHAR, call_sign VARCHAR) | SELECT city_of_license FROM table_name_78 WHERE call_sign = "w242at" | ### Context: CREATE TABLE table_name_78 (city_of_license VARCHAR, call_sign VARCHAR) ### Question: For the call sign w242at what's the city the license plate is registered to? ### Answer: SELECT city_of_license FROM table_name_78 WHERE call_sign = "w242at" |
What's the Class for the city the license plate was issued in great barrington, massachusetts? | CREATE TABLE table_name_16 (class VARCHAR, city_of_license VARCHAR) | SELECT class FROM table_name_16 WHERE city_of_license = "great barrington, massachusetts" | ### Context: CREATE TABLE table_name_16 (class VARCHAR, city_of_license VARCHAR) ### Question: What's the Class for the city the license plate was issued in great barrington, massachusetts? ### Answer: SELECT class FROM table_name_16 WHERE city_of_license = "great barrington, massachusetts" |
How many gold have a bronze of 1, a rank smaller than 6, and a total less than 3? | CREATE TABLE table_name_81 (gold INTEGER, total VARCHAR, bronze VARCHAR, rank VARCHAR) | SELECT SUM(gold) FROM table_name_81 WHERE bronze = 1 AND rank < 6 AND total < 3 | ### Context: CREATE TABLE table_name_81 (gold INTEGER, total VARCHAR, bronze VARCHAR, rank VARCHAR) ### Question: How many gold have a bronze of 1, a rank smaller than 6, and a total less than 3? ### Answer: SELECT SUM(gold) FROM table_name_81 WHERE bronze = 1 AND rank < 6 AND total < 3 |
How many France bronze have a gold of more than 1 and a rank of 0? | CREATE TABLE table_name_79 (bronze INTEGER, rank VARCHAR, gold VARCHAR, nation VARCHAR) | SELECT SUM(bronze) FROM table_name_79 WHERE gold > 1 AND nation = "france" AND rank < 1 | ### Context: CREATE TABLE table_name_79 (bronze INTEGER, rank VARCHAR, gold VARCHAR, nation VARCHAR) ### Question: How many France bronze have a gold of more than 1 and a rank of 0? ### Answer: SELECT SUM(bronze) FROM table_name_79 WHERE gold > 1 AND nation = "france" AND rank < 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.