question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Who had the high rebounds when the team played Sacramento? | CREATE TABLE table_17355408_9 (high_rebounds VARCHAR, team VARCHAR) | SELECT high_rebounds FROM table_17355408_9 WHERE team = "Sacramento" | ### Context: CREATE TABLE table_17355408_9 (high_rebounds VARCHAR, team VARCHAR) ### Question: Who had the high rebounds when the team played Sacramento? ### Answer: SELECT high_rebounds FROM table_17355408_9 WHERE team = "Sacramento" |
Who had the high points on April 8? | CREATE TABLE table_17355408_9 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_17355408_9 WHERE date = "April 8" | ### Context: CREATE TABLE table_17355408_9 (high_points VARCHAR, date VARCHAR) ### Question: Who had the high points on April 8? ### Answer: SELECT high_points FROM table_17355408_9 WHERE date = "April 8" |
Who had the high assists in game 80? | CREATE TABLE table_17355408_9 (high_assists VARCHAR, game VARCHAR) | SELECT high_assists FROM table_17355408_9 WHERE game = 80 | ### Context: CREATE TABLE table_17355408_9 (high_assists VARCHAR, game VARCHAR) ### Question: Who had the high assists in game 80? ### Answer: SELECT high_assists FROM table_17355408_9 WHERE game = 80 |
Name the highh points for december 29 | CREATE TABLE table_17355408_5 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_17355408_5 WHERE date = "December 29" | ### Context: CREATE TABLE table_17355408_5 (high_points VARCHAR, date VARCHAR) ### Question: Name the highh points for december 29 ### Answer: SELECT high_points FROM table_17355408_5 WHERE date = "December 29" |
Name the high assists for 29 game | CREATE TABLE table_17355408_5 (high_assists VARCHAR, game VARCHAR) | SELECT high_assists FROM table_17355408_5 WHERE game = 29 | ### Context: CREATE TABLE table_17355408_5 (high_assists VARCHAR, game VARCHAR) ### Question: Name the high assists for 29 game ### Answer: SELECT high_assists FROM table_17355408_5 WHERE game = 29 |
Name the high points for pepsi center 18,611 | CREATE TABLE table_17355408_5 (high_points VARCHAR, location_attendance VARCHAR) | SELECT high_points FROM table_17355408_5 WHERE location_attendance = "Pepsi Center 18,611" | ### Context: CREATE TABLE table_17355408_5 (high_points VARCHAR, location_attendance VARCHAR) ### Question: Name the high points for pepsi center 18,611 ### Answer: SELECT high_points FROM table_17355408_5 WHERE location_attendance = "Pepsi Center 18,611" |
Name the date for chicago | CREATE TABLE table_17355408_4 (date VARCHAR, team VARCHAR) | SELECT date FROM table_17355408_4 WHERE team = "Chicago" | ### Context: CREATE TABLE table_17355408_4 (date VARCHAR, team VARCHAR) ### Question: Name the date for chicago ### Answer: SELECT date FROM table_17355408_4 WHERE team = "Chicago" |
Name the record for new orleans | CREATE TABLE table_17355408_4 (record VARCHAR, team VARCHAR) | SELECT record FROM table_17355408_4 WHERE team = "New Orleans" | ### Context: CREATE TABLE table_17355408_4 (record VARCHAR, team VARCHAR) ### Question: Name the record for new orleans ### Answer: SELECT record FROM table_17355408_4 WHERE team = "New Orleans" |
Name the high assists for chauncey billups , carmelo anthony (18) | CREATE TABLE table_17355408_4 (high_assists VARCHAR, high_points VARCHAR) | SELECT high_assists FROM table_17355408_4 WHERE high_points = "Chauncey Billups , Carmelo Anthony (18)" | ### Context: CREATE TABLE table_17355408_4 (high_assists VARCHAR, high_points VARCHAR) ### Question: Name the high assists for chauncey billups , carmelo anthony (18) ### Answer: SELECT high_assists FROM table_17355408_4 WHERE high_points = "Chauncey Billups , Carmelo Anthony (18)" |
What was the final score for @ Orlando? | CREATE TABLE table_17355408_7 (score VARCHAR, team VARCHAR) | SELECT score FROM table_17355408_7 WHERE team = "@ Orlando" | ### Context: CREATE TABLE table_17355408_7 (score VARCHAR, team VARCHAR) ### Question: What was the final score for @ Orlando? ### Answer: SELECT score FROM table_17355408_7 WHERE team = "@ Orlando" |
Chauncey Billups (6) had a high assist on what date? | CREATE TABLE table_17355408_7 (date VARCHAR, high_assists VARCHAR) | SELECT date FROM table_17355408_7 WHERE high_assists = "Chauncey Billups (6)" | ### Context: CREATE TABLE table_17355408_7 (date VARCHAR, high_assists VARCHAR) ### Question: Chauncey Billups (6) had a high assist on what date? ### Answer: SELECT date FROM table_17355408_7 WHERE high_assists = "Chauncey Billups (6)" |
@ Chicago had a high points of what? | CREATE TABLE table_17355408_7 (high_points VARCHAR, team VARCHAR) | SELECT high_points FROM table_17355408_7 WHERE team = "@ Chicago" | ### Context: CREATE TABLE table_17355408_7 (high_points VARCHAR, team VARCHAR) ### Question: @ Chicago had a high points of what? ### Answer: SELECT high_points FROM table_17355408_7 WHERE team = "@ Chicago" |
High assists belonging to Carmelo Anthony (11) have a record of what? | CREATE TABLE table_17355408_7 (record VARCHAR, high_assists VARCHAR) | SELECT record FROM table_17355408_7 WHERE high_assists = "Carmelo Anthony (11)" | ### Context: CREATE TABLE table_17355408_7 (record VARCHAR, high_assists VARCHAR) ### Question: High assists belonging to Carmelo Anthony (11) have a record of what? ### Answer: SELECT record FROM table_17355408_7 WHERE high_assists = "Carmelo Anthony (11)" |
Name the high assists for april 8 | CREATE TABLE table_17355628_10 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_17355628_10 WHERE date = "April 8" | ### Context: CREATE TABLE table_17355628_10 (high_assists VARCHAR, date VARCHAR) ### Question: Name the high assists for april 8 ### Answer: SELECT high_assists FROM table_17355628_10 WHERE date = "April 8" |
Name the score for charlotte | CREATE TABLE table_17355628_10 (score VARCHAR, team VARCHAR) | SELECT score FROM table_17355628_10 WHERE team = "Charlotte" | ### Context: CREATE TABLE table_17355628_10 (score VARCHAR, team VARCHAR) ### Question: Name the score for charlotte ### Answer: SELECT score FROM table_17355628_10 WHERE team = "Charlotte" |
Name the location attendance for chucky atkins , russell westbrook (4) | CREATE TABLE table_17355628_10 (location_attendance VARCHAR, high_assists VARCHAR) | SELECT location_attendance FROM table_17355628_10 WHERE high_assists = "Chucky Atkins , Russell Westbrook (4)" | ### Context: CREATE TABLE table_17355628_10 (location_attendance VARCHAR, high_assists VARCHAR) ### Question: Name the location attendance for chucky atkins , russell westbrook (4) ### Answer: SELECT location_attendance FROM table_17355628_10 WHERE high_assists = "Chucky Atkins , Russell Westbrook (4)" |
Name the series number directed by richard thorpe written by dee johnson | CREATE TABLE table_17355579_1 (series__number INTEGER, directed_by VARCHAR, written_by VARCHAR) | SELECT MAX(series__number) FROM table_17355579_1 WHERE directed_by = "Richard Thorpe" AND written_by = "Dee Johnson" | ### Context: CREATE TABLE table_17355579_1 (series__number INTEGER, directed_by VARCHAR, written_by VARCHAR) ### Question: Name the series number directed by richard thorpe written by dee johnson ### Answer: SELECT MAX(series__number) FROM table_17355579_1 WHERE directed_by = "Richard Thorpe" AND written_by = "Dee John... |
Name the team where the date is november 17 | CREATE TABLE table_17355716_5 (team VARCHAR, date VARCHAR) | SELECT team FROM table_17355716_5 WHERE date = "November 17" | ### Context: CREATE TABLE table_17355716_5 (team VARCHAR, date VARCHAR) ### Question: Name the team where the date is november 17 ### Answer: SELECT team FROM table_17355716_5 WHERE date = "November 17" |
Name the team for november 5 | CREATE TABLE table_17355716_5 (team VARCHAR, date VARCHAR) | SELECT team FROM table_17355716_5 WHERE date = "November 5" | ### Context: CREATE TABLE table_17355716_5 (team VARCHAR, date VARCHAR) ### Question: Name the team for november 5 ### Answer: SELECT team FROM table_17355716_5 WHERE date = "November 5" |
What is the maximum series number what is smaller than season 7.0 and directed by Laura Innes? | CREATE TABLE table_17356106_1 (series__number INTEGER, directed_by VARCHAR, season__number VARCHAR) | SELECT MAX(series__number) FROM table_17356106_1 WHERE directed_by = "Laura Innes" AND season__number < 7.0 | ### Context: CREATE TABLE table_17356106_1 (series__number INTEGER, directed_by VARCHAR, season__number VARCHAR) ### Question: What is the maximum series number what is smaller than season 7.0 and directed by Laura Innes? ### Answer: SELECT MAX(series__number) FROM table_17356106_1 WHERE directed_by = "Laura Innes" AND... |
If Arthur Albert is the director, what is the maximum series number? | CREATE TABLE table_17356106_1 (series__number INTEGER, directed_by VARCHAR) | SELECT MAX(series__number) FROM table_17356106_1 WHERE directed_by = "Arthur Albert" | ### Context: CREATE TABLE table_17356106_1 (series__number INTEGER, directed_by VARCHAR) ### Question: If Arthur Albert is the director, what is the maximum series number? ### Answer: SELECT MAX(series__number) FROM table_17356106_1 WHERE directed_by = "Arthur Albert" |
What was the number of seasons that was directed by Joanna Kerns? | CREATE TABLE table_17356106_1 (season__number VARCHAR, directed_by VARCHAR) | SELECT COUNT(season__number) FROM table_17356106_1 WHERE directed_by = "Joanna Kerns" | ### Context: CREATE TABLE table_17356106_1 (season__number VARCHAR, directed_by VARCHAR) ### Question: What was the number of seasons that was directed by Joanna Kerns? ### Answer: SELECT COUNT(season__number) FROM table_17356106_1 WHERE directed_by = "Joanna Kerns" |
For series number 256, what was the original air date? | CREATE TABLE table_17356106_1 (original_air_date VARCHAR, series__number VARCHAR) | SELECT original_air_date FROM table_17356106_1 WHERE series__number = 256 | ### Context: CREATE TABLE table_17356106_1 (original_air_date VARCHAR, series__number VARCHAR) ### Question: For series number 256, what was the original air date? ### Answer: SELECT original_air_date FROM table_17356106_1 WHERE series__number = 256 |
What season episode is directed by Skipp Sudduth? | CREATE TABLE table_17356205_1 (season__number VARCHAR, directed_by VARCHAR) | SELECT season__number FROM table_17356205_1 WHERE directed_by = "Skipp Sudduth" | ### Context: CREATE TABLE table_17356205_1 (season__number VARCHAR, directed_by VARCHAR) ### Question: What season episode is directed by Skipp Sudduth? ### Answer: SELECT season__number FROM table_17356205_1 WHERE directed_by = "Skipp Sudduth" |
How many titles are given for the episode directed by Joanna Kerns? | CREATE TABLE table_17356205_1 (title VARCHAR, directed_by VARCHAR) | SELECT COUNT(title) FROM table_17356205_1 WHERE directed_by = "Joanna Kerns" | ### Context: CREATE TABLE table_17356205_1 (title VARCHAR, directed_by VARCHAR) ### Question: How many titles are given for the episode directed by Joanna Kerns? ### Answer: SELECT COUNT(title) FROM table_17356205_1 WHERE directed_by = "Joanna Kerns" |
What is the original air date of the episode directed by Terrence Nightingall? | CREATE TABLE table_17356205_1 (original_air_date VARCHAR, directed_by VARCHAR) | SELECT original_air_date FROM table_17356205_1 WHERE directed_by = "Terrence Nightingall" | ### Context: CREATE TABLE table_17356205_1 (original_air_date VARCHAR, directed_by VARCHAR) ### Question: What is the original air date of the episode directed by Terrence Nightingall? ### Answer: SELECT original_air_date FROM table_17356205_1 WHERE directed_by = "Terrence Nightingall" |
Which seasons were directed by Nelson McCormick? | CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR) | SELECT title FROM table_17355933_1 WHERE directed_by = "Nelson McCormick" | ### Context: CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR) ### Question: Which seasons were directed by Nelson McCormick? ### Answer: SELECT title FROM table_17355933_1 WHERE directed_by = "Nelson McCormick" |
Which season titles were directed by Laura Innes? | CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR) | SELECT title FROM table_17355933_1 WHERE directed_by = "Laura Innes" | ### Context: CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR) ### Question: Which season titles were directed by Laura Innes? ### Answer: SELECT title FROM table_17355933_1 WHERE directed_by = "Laura Innes" |
Which episodes did Nelson McCormick direct? | CREATE TABLE table_17355820_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT written_by FROM table_17355820_1 WHERE directed_by = "Nelson McCormick" | ### Context: CREATE TABLE table_17355820_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: Which episodes did Nelson McCormick direct? ### Answer: SELECT written_by FROM table_17355820_1 WHERE directed_by = "Nelson McCormick" |
How many episodes were there in season 19? | CREATE TABLE table_17355820_1 (title VARCHAR, season__number VARCHAR) | SELECT COUNT(title) FROM table_17355820_1 WHERE season__number = 19 | ### Context: CREATE TABLE table_17355820_1 (title VARCHAR, season__number VARCHAR) ### Question: How many episodes were there in season 19? ### Answer: SELECT COUNT(title) FROM table_17355820_1 WHERE season__number = 19 |
In which season did Paul McCrane first direct an episode? | CREATE TABLE table_17355820_1 (season__number INTEGER, directed_by VARCHAR) | SELECT MIN(season__number) FROM table_17355820_1 WHERE directed_by = "Paul McCrane" | ### Context: CREATE TABLE table_17355820_1 (season__number INTEGER, directed_by VARCHAR) ### Question: In which season did Paul McCrane first direct an episode? ### Answer: SELECT MIN(season__number) FROM table_17355820_1 WHERE directed_by = "Paul McCrane" |
On which dates did the episodes directed by TR Babu Subramaniam air? | CREATE TABLE table_17355820_1 (original_air_date VARCHAR, directed_by VARCHAR) | SELECT original_air_date FROM table_17355820_1 WHERE directed_by = "TR Babu Subramaniam" | ### Context: CREATE TABLE table_17355820_1 (original_air_date VARCHAR, directed_by VARCHAR) ### Question: On which dates did the episodes directed by TR Babu Subramaniam air? ### Answer: SELECT original_air_date FROM table_17355820_1 WHERE directed_by = "TR Babu Subramaniam" |
What is the fewest number of games lost? | CREATE TABLE table_17357929_1 (lost INTEGER) | SELECT MIN(lost) FROM table_17357929_1 | ### Context: CREATE TABLE table_17357929_1 (lost INTEGER) ### Question: What is the fewest number of games lost? ### Answer: SELECT MIN(lost) FROM table_17357929_1 |
What is the goal average 1 for teams that lost 9 games? | CREATE TABLE table_17357929_1 (goal_average_1 VARCHAR, lost VARCHAR) | SELECT goal_average_1 FROM table_17357929_1 WHERE lost = 9 | ### Context: CREATE TABLE table_17357929_1 (goal_average_1 VARCHAR, lost VARCHAR) ### Question: What is the goal average 1 for teams that lost 9 games? ### Answer: SELECT goal_average_1 FROM table_17357929_1 WHERE lost = 9 |
How many teams finished with a 2nd points total of 31? | CREATE TABLE table_17357929_1 (position VARCHAR, points_2 VARCHAR) | SELECT COUNT(position) FROM table_17357929_1 WHERE points_2 = 31 | ### Context: CREATE TABLE table_17357929_1 (position VARCHAR, points_2 VARCHAR) ### Question: How many teams finished with a 2nd points total of 31? ### Answer: SELECT COUNT(position) FROM table_17357929_1 WHERE points_2 = 31 |
How many games drawn for the team that had 72 goals for? | CREATE TABLE table_17357929_1 (drawn INTEGER, goals_for VARCHAR) | SELECT MAX(drawn) FROM table_17357929_1 WHERE goals_for = 72 | ### Context: CREATE TABLE table_17357929_1 (drawn INTEGER, goals_for VARCHAR) ### Question: How many games drawn for the team that had 72 goals for? ### Answer: SELECT MAX(drawn) FROM table_17357929_1 WHERE goals_for = 72 |
How many games with record 1-3-3 | CREATE TABLE table_17360840_4 (game VARCHAR, record VARCHAR) | SELECT COUNT(game) FROM table_17360840_4 WHERE record = "1-3-3" | ### Context: CREATE TABLE table_17360840_4 (game VARCHAR, record VARCHAR) ### Question: How many games with record 1-3-3 ### Answer: SELECT COUNT(game) FROM table_17360840_4 WHERE record = "1-3-3" |
How many attended on mathches against atlanta thrashers | CREATE TABLE table_17360840_4 (attendance VARCHAR, opponent VARCHAR) | SELECT COUNT(attendance) FROM table_17360840_4 WHERE opponent = "Atlanta Thrashers" | ### Context: CREATE TABLE table_17360840_4 (attendance VARCHAR, opponent VARCHAR) ### Question: How many attended on mathches against atlanta thrashers ### Answer: SELECT COUNT(attendance) FROM table_17360840_4 WHERE opponent = "Atlanta Thrashers" |
Give the date of games against minnesota wild | CREATE TABLE table_17360840_4 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_17360840_4 WHERE opponent = "Minnesota Wild" | ### Context: CREATE TABLE table_17360840_4 (date VARCHAR, opponent VARCHAR) ### Question: Give the date of games against minnesota wild ### Answer: SELECT date FROM table_17360840_4 WHERE opponent = "Minnesota Wild" |
State the dates of games with record 1-2-3 | CREATE TABLE table_17360840_4 (date VARCHAR, record VARCHAR) | SELECT date FROM table_17360840_4 WHERE record = "1-2-3" | ### Context: CREATE TABLE table_17360840_4 (date VARCHAR, record VARCHAR) ### Question: State the dates of games with record 1-2-3 ### Answer: SELECT date FROM table_17360840_4 WHERE record = "1-2-3" |
What is the minimum attendance on games of record 0-2-1 | CREATE TABLE table_17360840_4 (attendance INTEGER, record VARCHAR) | SELECT MIN(attendance) FROM table_17360840_4 WHERE record = "0-2-1" | ### Context: CREATE TABLE table_17360840_4 (attendance INTEGER, record VARCHAR) ### Question: What is the minimum attendance on games of record 0-2-1 ### Answer: SELECT MIN(attendance) FROM table_17360840_4 WHERE record = "0-2-1" |
Which venue does Mardan sponsor? | CREATE TABLE table_17356873_1 (venue VARCHAR, shirt_sponsor VARCHAR) | SELECT venue FROM table_17356873_1 WHERE shirt_sponsor = "Mardan" | ### Context: CREATE TABLE table_17356873_1 (venue VARCHAR, shirt_sponsor VARCHAR) ### Question: Which venue does Mardan sponsor? ### Answer: SELECT venue FROM table_17356873_1 WHERE shirt_sponsor = "Mardan" |
Erdoğan Arıca is the head coach at what venue? | CREATE TABLE table_17356873_1 (venue VARCHAR, head_coach VARCHAR) | SELECT venue FROM table_17356873_1 WHERE head_coach = "Erdoğan Arıca" | ### Context: CREATE TABLE table_17356873_1 (venue VARCHAR, head_coach VARCHAR) ### Question: Erdoğan Arıca is the head coach at what venue? ### Answer: SELECT venue FROM table_17356873_1 WHERE head_coach = "Erdoğan Arıca" |
How many points were scored when the record was 6-8-6? | CREATE TABLE table_17360840_5 (points VARCHAR, record VARCHAR) | SELECT COUNT(points) FROM table_17360840_5 WHERE record = "6-8-6" | ### Context: CREATE TABLE table_17360840_5 (points VARCHAR, record VARCHAR) ### Question: How many points were scored when the record was 6-8-6? ### Answer: SELECT COUNT(points) FROM table_17360840_5 WHERE record = "6-8-6" |
Which game had a record of 6-9-7? | CREATE TABLE table_17360840_5 (game VARCHAR, record VARCHAR) | SELECT game FROM table_17360840_5 WHERE record = "6-9-7" | ### Context: CREATE TABLE table_17360840_5 (game VARCHAR, record VARCHAR) ### Question: Which game had a record of 6-9-7? ### Answer: SELECT game FROM table_17360840_5 WHERE record = "6-9-7" |
When they played at the Bankatlantic Center, what was their record? | CREATE TABLE table_17360840_5 (record VARCHAR, location VARCHAR) | SELECT record FROM table_17360840_5 WHERE location = "BankAtlantic Center" | ### Context: CREATE TABLE table_17360840_5 (record VARCHAR, location VARCHAR) ### Question: When they played at the Bankatlantic Center, what was their record? ### Answer: SELECT record FROM table_17360840_5 WHERE location = "BankAtlantic Center" |
Who was the opponent on December 27? | CREATE TABLE table_17360840_6 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_17360840_6 WHERE date = "December 27" | ### Context: CREATE TABLE table_17360840_6 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on December 27? ### Answer: SELECT opponent FROM table_17360840_6 WHERE date = "December 27" |
What was the score of the game on December 11? | CREATE TABLE table_17360840_6 (score VARCHAR, date VARCHAR) | SELECT score FROM table_17360840_6 WHERE date = "December 11" | ### Context: CREATE TABLE table_17360840_6 (score VARCHAR, date VARCHAR) ### Question: What was the score of the game on December 11? ### Answer: SELECT score FROM table_17360840_6 WHERE date = "December 11" |
What was the record when the opposing team was the Columbus Blue Jackets at St. Pete Times Forum? | CREATE TABLE table_17360840_9 (record VARCHAR, location VARCHAR, opponent VARCHAR) | SELECT record FROM table_17360840_9 WHERE location = "St. Pete Times Forum" AND opponent = "Columbus Blue Jackets" | ### Context: CREATE TABLE table_17360840_9 (record VARCHAR, location VARCHAR, opponent VARCHAR) ### Question: What was the record when the opposing team was the Columbus Blue Jackets at St. Pete Times Forum? ### Answer: SELECT record FROM table_17360840_9 WHERE location = "St. Pete Times Forum" AND opponent = "Columbus... |
What was the score when the record was 21-31-13? | CREATE TABLE table_17360840_9 (score VARCHAR, record VARCHAR) | SELECT score FROM table_17360840_9 WHERE record = "21-31-13" | ### Context: CREATE TABLE table_17360840_9 (score VARCHAR, record VARCHAR) ### Question: What was the score when the record was 21-31-13? ### Answer: SELECT score FROM table_17360840_9 WHERE record = "21-31-13" |
How many locations were recorded when the opponent Columbus Blue Jackets? | CREATE TABLE table_17360840_9 (location VARCHAR, opponent VARCHAR) | SELECT COUNT(location) FROM table_17360840_9 WHERE opponent = "Columbus Blue Jackets" | ### Context: CREATE TABLE table_17360840_9 (location VARCHAR, opponent VARCHAR) ### Question: How many locations were recorded when the opponent Columbus Blue Jackets? ### Answer: SELECT COUNT(location) FROM table_17360840_9 WHERE opponent = "Columbus Blue Jackets" |
What was the attendance when the opposing team was the Ottawa Senators and the record was 24-35-17? | CREATE TABLE table_17360840_9 (attendance INTEGER, opponent VARCHAR, record VARCHAR) | SELECT MAX(attendance) FROM table_17360840_9 WHERE opponent = "Ottawa Senators" AND record = "24-35-17" | ### Context: CREATE TABLE table_17360840_9 (attendance INTEGER, opponent VARCHAR, record VARCHAR) ### Question: What was the attendance when the opposing team was the Ottawa Senators and the record was 24-35-17? ### Answer: SELECT MAX(attendance) FROM table_17360840_9 WHERE opponent = "Ottawa Senators" AND record = "2... |
The player who plays left wing is from what college/junior/club team? | CREATE TABLE table_17371135_30 (college_junior_club_team__league_ VARCHAR, position VARCHAR) | SELECT college_junior_club_team__league_ FROM table_17371135_30 WHERE position = "Left Wing" | ### Context: CREATE TABLE table_17371135_30 (college_junior_club_team__league_ VARCHAR, position VARCHAR) ### Question: The player who plays left wing is from what college/junior/club team? ### Answer: SELECT college_junior_club_team__league_ FROM table_17371135_30 WHERE position = "Left Wing" |
The player who plays goaltender is from what college/junior/club team? | CREATE TABLE table_17371135_30 (college_junior_club_team__league_ VARCHAR, position VARCHAR) | SELECT college_junior_club_team__league_ FROM table_17371135_30 WHERE position = "Goaltender" | ### Context: CREATE TABLE table_17371135_30 (college_junior_club_team__league_ VARCHAR, position VARCHAR) ### Question: The player who plays goaltender is from what college/junior/club team? ### Answer: SELECT college_junior_club_team__league_ FROM table_17371135_30 WHERE position = "Goaltender" |
How many were played when there were 39 tries for? | CREATE TABLE table_17369472_2 (played VARCHAR, tries_for VARCHAR) | SELECT played FROM table_17369472_2 WHERE tries_for = "39" | ### Context: CREATE TABLE table_17369472_2 (played VARCHAR, tries_for VARCHAR) ### Question: How many were played when there were 39 tries for? ### Answer: SELECT played FROM table_17369472_2 WHERE tries_for = "39" |
How many were won when the points were 12? | CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR) | SELECT COUNT(won) FROM table_17369472_2 WHERE points = "12" | ### Context: CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR) ### Question: How many were won when the points were 12? ### Answer: SELECT COUNT(won) FROM table_17369472_2 WHERE points = "12" |
How many were won when there were 49 points? | CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR) | SELECT won FROM table_17369472_2 WHERE points = "49" | ### Context: CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR) ### Question: How many were won when there were 49 points? ### Answer: SELECT won FROM table_17369472_2 WHERE points = "49" |
How many points were there when tries for were 84? | CREATE TABLE table_17369472_2 (points VARCHAR, tries_for VARCHAR) | SELECT points FROM table_17369472_2 WHERE tries_for = "84" | ### Context: CREATE TABLE table_17369472_2 (points VARCHAR, tries_for VARCHAR) ### Question: How many points were there when tries for were 84? ### Answer: SELECT points FROM table_17369472_2 WHERE tries_for = "84" |
what team play in february 18 in the supersonic season | CREATE TABLE table_17382360_7 (team VARCHAR, date VARCHAR) | SELECT team FROM table_17382360_7 WHERE date = "February 18" | ### Context: CREATE TABLE table_17382360_7 (team VARCHAR, date VARCHAR) ### Question: what team play in february 18 in the supersonic season ### Answer: SELECT team FROM table_17382360_7 WHERE date = "February 18" |
what is the score in february 12 of the boston celtics team | CREATE TABLE table_17382360_7 (score VARCHAR, team VARCHAR) | SELECT score FROM table_17382360_7 WHERE team = "Boston Celtics" | ### Context: CREATE TABLE table_17382360_7 (score VARCHAR, team VARCHAR) ### Question: what is the score in february 12 of the boston celtics team ### Answer: SELECT score FROM table_17382360_7 WHERE team = "Boston Celtics" |
Who is the opposing team when the game was played on the Shea Stadium? | CREATE TABLE table_17386066_2 (opponent VARCHAR, stadium VARCHAR) | SELECT opponent FROM table_17386066_2 WHERE stadium = "Shea stadium" | ### Context: CREATE TABLE table_17386066_2 (opponent VARCHAR, stadium VARCHAR) ### Question: Who is the opposing team when the game was played on the Shea Stadium? ### Answer: SELECT opponent FROM table_17386066_2 WHERE stadium = "Shea stadium" |
How many games or records were played on the Miami Orange Bowl? | CREATE TABLE table_17386066_2 (record VARCHAR, stadium VARCHAR) | SELECT COUNT(record) FROM table_17386066_2 WHERE stadium = "Miami Orange Bowl" | ### Context: CREATE TABLE table_17386066_2 (record VARCHAR, stadium VARCHAR) ### Question: How many games or records were played on the Miami Orange Bowl? ### Answer: SELECT COUNT(record) FROM table_17386066_2 WHERE stadium = "Miami Orange Bowl" |
What was the result of the game that was played on Nov. 26, 1972? | CREATE TABLE table_17386066_2 (result VARCHAR, date VARCHAR) | SELECT result FROM table_17386066_2 WHERE date = "Nov. 26" | ### Context: CREATE TABLE table_17386066_2 (result VARCHAR, date VARCHAR) ### Question: What was the result of the game that was played on Nov. 26, 1972? ### Answer: SELECT result FROM table_17386066_2 WHERE date = "Nov. 26" |
What are all Tamil months when the season in English is monsoon? | CREATE TABLE table_1740431_3 (tamil_months VARCHAR, season_in_english VARCHAR) | SELECT tamil_months FROM table_1740431_3 WHERE season_in_english = "Monsoon" | ### Context: CREATE TABLE table_1740431_3 (tamil_months VARCHAR, season_in_english VARCHAR) ### Question: What are all Tamil months when the season in English is monsoon? ### Answer: SELECT tamil_months FROM table_1740431_3 WHERE season_in_english = "Monsoon" |
What is every English translation when Tamil months is Mārkazhi, Tai? | CREATE TABLE table_1740431_3 (english_translation VARCHAR, tamil_months VARCHAR) | SELECT english_translation FROM table_1740431_3 WHERE tamil_months = "mārkazhi, tai" | ### Context: CREATE TABLE table_1740431_3 (english_translation VARCHAR, tamil_months VARCHAR) ### Question: What is every English translation when Tamil months is Mārkazhi, Tai? ### Answer: SELECT english_translation FROM table_1740431_3 WHERE tamil_months = "mārkazhi, tai" |
What is every Gregorian month when the season in Tamil is இளவேனில்? | CREATE TABLE table_1740431_3 (gregorian_months VARCHAR, season_in_tamil VARCHAR) | SELECT gregorian_months FROM table_1740431_3 WHERE season_in_tamil = "இளவேனில்" | ### Context: CREATE TABLE table_1740431_3 (gregorian_months VARCHAR, season_in_tamil VARCHAR) ### Question: What is every Gregorian month when the season in Tamil is இளவேனில்? ### Answer: SELECT gregorian_months FROM table_1740431_3 WHERE season_in_tamil = "இளவேனில்" |
How many seasons in Tamil occur when the season in Sanskrit is Grishma? | CREATE TABLE table_1740431_3 (season_in_tamil VARCHAR, season_in_sanskrit VARCHAR) | SELECT COUNT(season_in_tamil) FROM table_1740431_3 WHERE season_in_sanskrit = "Grishma" | ### Context: CREATE TABLE table_1740431_3 (season_in_tamil VARCHAR, season_in_sanskrit VARCHAR) ### Question: How many seasons in Tamil occur when the season in Sanskrit is Grishma? ### Answer: SELECT COUNT(season_in_tamil) FROM table_1740431_3 WHERE season_in_sanskrit = "Grishma" |
Which departments have M.Phil(Maths)? | CREATE TABLE table_17384764_1 (department VARCHAR, qualification VARCHAR) | SELECT department FROM table_17384764_1 WHERE qualification = "M.Phil(Maths)" | ### Context: CREATE TABLE table_17384764_1 (department VARCHAR, qualification VARCHAR) ### Question: Which departments have M.Phil(Maths)? ### Answer: SELECT department FROM table_17384764_1 WHERE qualification = "M.Phil(Maths)" |
How many faculty members have 20 years of experience? | CREATE TABLE table_17384764_1 (designation VARCHAR, experience VARCHAR) | SELECT COUNT(designation) FROM table_17384764_1 WHERE experience = "20 years" | ### Context: CREATE TABLE table_17384764_1 (designation VARCHAR, experience VARCHAR) ### Question: How many faculty members have 20 years of experience? ### Answer: SELECT COUNT(designation) FROM table_17384764_1 WHERE experience = "20 years" |
Name the power provided for transfer speed mb/s is 1250 | CREATE TABLE table_174151_5 (power_provided VARCHAR, transfer_speed__mb_s_ VARCHAR) | SELECT power_provided FROM table_174151_5 WHERE transfer_speed__mb_s_ = "1250" | ### Context: CREATE TABLE table_174151_5 (power_provided VARCHAR, transfer_speed__mb_s_ VARCHAR) ### Question: Name the power provided for transfer speed mb/s is 1250 ### Answer: SELECT power_provided FROM table_174151_5 WHERE transfer_speed__mb_s_ = "1250" |
Name the devices per channel for 2560 | CREATE TABLE table_174151_5 (devices_per_channel VARCHAR, raw_bandwidth__mbit_s_ VARCHAR) | SELECT devices_per_channel FROM table_174151_5 WHERE raw_bandwidth__mbit_s_ = 2560 | ### Context: CREATE TABLE table_174151_5 (devices_per_channel VARCHAR, raw_bandwidth__mbit_s_ VARCHAR) ### Question: Name the devices per channel for 2560 ### Answer: SELECT devices_per_channel FROM table_174151_5 WHERE raw_bandwidth__mbit_s_ = 2560 |
Name the power provided where transfer speed mb/s is 300 and max cable length of 10 | CREATE TABLE table_174151_5 (power_provided VARCHAR, transfer_speed__mb_s_ VARCHAR, max_cable_length__m_ VARCHAR) | SELECT power_provided FROM table_174151_5 WHERE transfer_speed__mb_s_ = "300" AND max_cable_length__m_ = "10" | ### Context: CREATE TABLE table_174151_5 (power_provided VARCHAR, transfer_speed__mb_s_ VARCHAR, max_cable_length__m_ VARCHAR) ### Question: Name the power provided where transfer speed mb/s is 300 and max cable length of 10 ### Answer: SELECT power_provided FROM table_174151_5 WHERE transfer_speed__mb_s_ = "300" AND m... |
Name the colorado when alaska is connecticut | CREATE TABLE table_17425749_1 (colorado VARCHAR, alaska VARCHAR) | SELECT colorado FROM table_17425749_1 WHERE alaska = "Connecticut" | ### Context: CREATE TABLE table_17425749_1 (colorado VARCHAR, alaska VARCHAR) ### Question: Name the colorado when alaska is connecticut ### Answer: SELECT colorado FROM table_17425749_1 WHERE alaska = "Connecticut" |
Name the california where alaska tennessee | CREATE TABLE table_17425749_1 (california VARCHAR, alaska VARCHAR) | SELECT california FROM table_17425749_1 WHERE alaska = "Tennessee" | ### Context: CREATE TABLE table_17425749_1 (california VARCHAR, alaska VARCHAR) ### Question: Name the california where alaska tennessee ### Answer: SELECT california FROM table_17425749_1 WHERE alaska = "Tennessee" |
Name the date for score of 95-101 | CREATE TABLE table_17432028_1 (date VARCHAR, score VARCHAR) | SELECT date FROM table_17432028_1 WHERE score = "95-101" | ### Context: CREATE TABLE table_17432028_1 (date VARCHAR, score VARCHAR) ### Question: Name the date for score of 95-101 ### Answer: SELECT date FROM table_17432028_1 WHERE score = "95-101" |
Name the high rebounds for march 15 | CREATE TABLE table_17432028_1 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_17432028_1 WHERE date = "March 15" | ### Context: CREATE TABLE table_17432028_1 (high_rebounds VARCHAR, date VARCHAR) ### Question: Name the high rebounds for march 15 ### Answer: SELECT high_rebounds FROM table_17432028_1 WHERE date = "March 15" |
Name the score for record of 2-5 | CREATE TABLE table_17432028_1 (score VARCHAR, record VARCHAR) | SELECT score FROM table_17432028_1 WHERE record = "2-5" | ### Context: CREATE TABLE table_17432028_1 (score VARCHAR, record VARCHAR) ### Question: Name the score for record of 2-5 ### Answer: SELECT score FROM table_17432028_1 WHERE record = "2-5" |
How many schools won their last occ championship in 2006? | CREATE TABLE table_17429402_7 (school VARCHAR, last_occ_championship VARCHAR) | SELECT COUNT(school) FROM table_17429402_7 WHERE last_occ_championship = "2006" | ### Context: CREATE TABLE table_17429402_7 (school VARCHAR, last_occ_championship VARCHAR) ### Question: How many schools won their last occ championship in 2006? ### Answer: SELECT COUNT(school) FROM table_17429402_7 WHERE last_occ_championship = "2006" |
What are the years of participation for central crossing school? | CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR) | SELECT years_of_participation FROM table_17429402_7 WHERE school = "Central Crossing" | ### Context: CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR) ### Question: What are the years of participation for central crossing school? ### Answer: SELECT years_of_participation FROM table_17429402_7 WHERE school = "Central Crossing" |
What is the fewest number of occ championships for the team that last won an outright occ championship in 2006? | CREATE TABLE table_17429402_7 (occ_championships INTEGER, last_outright_occ_championship VARCHAR) | SELECT MIN(occ_championships) FROM table_17429402_7 WHERE last_outright_occ_championship = "2006" | ### Context: CREATE TABLE table_17429402_7 (occ_championships INTEGER, last_outright_occ_championship VARCHAR) ### Question: What is the fewest number of occ championships for the team that last won an outright occ championship in 2006? ### Answer: SELECT MIN(occ_championships) FROM table_17429402_7 WHERE last_outright... |
What are the years of participation for pickerington north? | CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR) | SELECT years_of_participation FROM table_17429402_7 WHERE school = "Pickerington North" | ### Context: CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR) ### Question: What are the years of participation for pickerington north? ### Answer: SELECT years_of_participation FROM table_17429402_7 WHERE school = "Pickerington North" |
Name the event for redouane bouchtouk | CREATE TABLE table_17417383_6 (event VARCHAR, athlete VARCHAR) | SELECT event FROM table_17417383_6 WHERE athlete = "Redouane Bouchtouk" | ### Context: CREATE TABLE table_17417383_6 (event VARCHAR, athlete VARCHAR) ### Question: Name the event for redouane bouchtouk ### Answer: SELECT event FROM table_17417383_6 WHERE athlete = "Redouane Bouchtouk" |
Name the round 16 for did not advance and light flyweight | CREATE TABLE table_17417383_6 (round_of_16 VARCHAR, quarterfinals VARCHAR, event VARCHAR) | SELECT round_of_16 FROM table_17417383_6 WHERE quarterfinals = "Did not advance" AND event = "Light flyweight" | ### Context: CREATE TABLE table_17417383_6 (round_of_16 VARCHAR, quarterfinals VARCHAR, event VARCHAR) ### Question: Name the round 16 for did not advance and light flyweight ### Answer: SELECT round_of_16 FROM table_17417383_6 WHERE quarterfinals = "Did not advance" AND event = "Light flyweight" |
Name the athelte for enkhzorig ( mgl ) l 1–10 | CREATE TABLE table_17417383_6 (athlete VARCHAR, round_of_32 VARCHAR) | SELECT athlete FROM table_17417383_6 WHERE round_of_32 = "Enkhzorig ( MGL ) L 1–10" | ### Context: CREATE TABLE table_17417383_6 (athlete VARCHAR, round_of_32 VARCHAR) ### Question: Name the athelte for enkhzorig ( mgl ) l 1–10 ### Answer: SELECT athlete FROM table_17417383_6 WHERE round_of_32 = "Enkhzorig ( MGL ) L 1–10" |
Who did Abdelhafid Benchebla face in the quarterfinals? | CREATE TABLE table_17427004_7 (quarterfinals VARCHAR, athlete VARCHAR) | SELECT quarterfinals FROM table_17427004_7 WHERE athlete = "Abdelhafid Benchebla" | ### Context: CREATE TABLE table_17427004_7 (quarterfinals VARCHAR, athlete VARCHAR) ### Question: Who did Abdelhafid Benchebla face in the quarterfinals? ### Answer: SELECT quarterfinals FROM table_17427004_7 WHERE athlete = "Abdelhafid Benchebla" |
Who did Nabil Kassel face in the Round of 32? | CREATE TABLE table_17427004_7 (round_of_32 VARCHAR, athlete VARCHAR) | SELECT round_of_32 FROM table_17427004_7 WHERE athlete = "Nabil Kassel" | ### Context: CREATE TABLE table_17427004_7 (round_of_32 VARCHAR, athlete VARCHAR) ### Question: Who did Nabil Kassel face in the Round of 32? ### Answer: SELECT round_of_32 FROM table_17427004_7 WHERE athlete = "Nabil Kassel" |
How did Hamza Kramou fare in the semifinals? | CREATE TABLE table_17427004_7 (semifinals VARCHAR, athlete VARCHAR) | SELECT semifinals FROM table_17427004_7 WHERE athlete = "Hamza Kramou" | ### Context: CREATE TABLE table_17427004_7 (semifinals VARCHAR, athlete VARCHAR) ### Question: How did Hamza Kramou fare in the semifinals? ### Answer: SELECT semifinals FROM table_17427004_7 WHERE athlete = "Hamza Kramou" |
In what year did the winner of the FIS championship in 1982 win the Winter Olympics? | CREATE TABLE table_174491_1 (winter_olympics VARCHAR, fis_nordic_world_ski_championships VARCHAR) | SELECT winter_olympics FROM table_174491_1 WHERE fis_nordic_world_ski_championships = "1982" | ### Context: CREATE TABLE table_174491_1 (winter_olympics VARCHAR, fis_nordic_world_ski_championships VARCHAR) ### Question: In what year did the winner of the FIS championship in 1982 win the Winter Olympics? ### Answer: SELECT winter_olympics FROM table_174491_1 WHERE fis_nordic_world_ski_championships = "1982" |
What year did Thorleif Haug win the Winter Olympics? | CREATE TABLE table_174491_1 (winter_olympics VARCHAR, winner VARCHAR) | SELECT winter_olympics FROM table_174491_1 WHERE winner = "Thorleif Haug" | ### Context: CREATE TABLE table_174491_1 (winter_olympics VARCHAR, winner VARCHAR) ### Question: What year did Thorleif Haug win the Winter Olympics? ### Answer: SELECT winter_olympics FROM table_174491_1 WHERE winner = "Thorleif Haug" |
What year did the man from Norway who won the Holmenkollen in 1958 win the FIS Nordic World Ski Championships? | CREATE TABLE table_174491_1 (fis_nordic_world_ski_championships VARCHAR, country VARCHAR, holmenkollen VARCHAR) | SELECT fis_nordic_world_ski_championships FROM table_174491_1 WHERE country = "Norway" AND holmenkollen = "1958" | ### Context: CREATE TABLE table_174491_1 (fis_nordic_world_ski_championships VARCHAR, country VARCHAR, holmenkollen VARCHAR) ### Question: What year did the man from Norway who won the Holmenkollen in 1958 win the FIS Nordic World Ski Championships? ### Answer: SELECT fis_nordic_world_ski_championships FROM table_17449... |
What is the holmenkollen for the 1982 FIS Nordic World Ski Championships? | CREATE TABLE table_174491_2 (holmenkollen VARCHAR, fis_nordic_world_ski_championships VARCHAR) | SELECT holmenkollen FROM table_174491_2 WHERE fis_nordic_world_ski_championships = "1982" | ### Context: CREATE TABLE table_174491_2 (holmenkollen VARCHAR, fis_nordic_world_ski_championships VARCHAR) ### Question: What is the holmenkollen for the 1982 FIS Nordic World Ski Championships? ### Answer: SELECT holmenkollen FROM table_174491_2 WHERE fis_nordic_world_ski_championships = "1982" |
What years did Birger Ruud win the FIS Nordic World Ski Championships? | CREATE TABLE table_174491_2 (fis_nordic_world_ski_championships VARCHAR, winner VARCHAR) | SELECT fis_nordic_world_ski_championships FROM table_174491_2 WHERE winner = "Birger Ruud" | ### Context: CREATE TABLE table_174491_2 (fis_nordic_world_ski_championships VARCHAR, winner VARCHAR) ### Question: What years did Birger Ruud win the FIS Nordic World Ski Championships? ### Answer: SELECT fis_nordic_world_ski_championships FROM table_174491_2 WHERE winner = "Birger Ruud" |
What year did Karl Schnabl win the Winter Olympics? | CREATE TABLE table_174491_2 (winter_olympics VARCHAR, winner VARCHAR) | SELECT winter_olympics FROM table_174491_2 WHERE winner = "Karl Schnabl" | ### Context: CREATE TABLE table_174491_2 (winter_olympics VARCHAR, winner VARCHAR) ### Question: What year did Karl Schnabl win the Winter Olympics? ### Answer: SELECT winter_olympics FROM table_174491_2 WHERE winner = "Karl Schnabl" |
What is the FIS Nordic World Ski Championships when holmenkollen is 1976? | CREATE TABLE table_174491_2 (fis_nordic_world_ski_championships VARCHAR, holmenkollen VARCHAR) | SELECT fis_nordic_world_ski_championships FROM table_174491_2 WHERE holmenkollen = "1976" | ### Context: CREATE TABLE table_174491_2 (fis_nordic_world_ski_championships VARCHAR, holmenkollen VARCHAR) ### Question: What is the FIS Nordic World Ski Championships when holmenkollen is 1976? ### Answer: SELECT fis_nordic_world_ski_championships FROM table_174491_2 WHERE holmenkollen = "1976" |
What year is Winter Olympics when Holmenkollen is 1957, 1960? | CREATE TABLE table_174491_2 (winter_olympics VARCHAR, holmenkollen VARCHAR) | SELECT winter_olympics FROM table_174491_2 WHERE holmenkollen = "1957, 1960" | ### Context: CREATE TABLE table_174491_2 (winter_olympics VARCHAR, holmenkollen VARCHAR) ### Question: What year is Winter Olympics when Holmenkollen is 1957, 1960? ### Answer: SELECT winter_olympics FROM table_174491_2 WHERE holmenkollen = "1957, 1960" |
What's the part 4 for the verb whose part 3 is borgen? | CREATE TABLE table_1745843_7 (part_4 VARCHAR, part_3 VARCHAR) | SELECT part_4 FROM table_1745843_7 WHERE part_3 = "borgen" | ### Context: CREATE TABLE table_1745843_7 (part_4 VARCHAR, part_3 VARCHAR) ### Question: What's the part 4 for the verb whose part 3 is borgen? ### Answer: SELECT part_4 FROM table_1745843_7 WHERE part_3 = "borgen" |
What's the meaning of the verb whose part 1 is slapen? | CREATE TABLE table_1745843_7 (verb_meaning VARCHAR, part_1 VARCHAR) | SELECT verb_meaning FROM table_1745843_7 WHERE part_1 = "slapen" | ### Context: CREATE TABLE table_1745843_7 (verb_meaning VARCHAR, part_1 VARCHAR) ### Question: What's the meaning of the verb whose part 1 is slapen? ### Answer: SELECT verb_meaning FROM table_1745843_7 WHERE part_1 = "slapen" |
In what class does the verb with part 4 gelopen belong to? | CREATE TABLE table_1745843_7 (class VARCHAR, part_4 VARCHAR) | SELECT class FROM table_1745843_7 WHERE part_4 = "gelopen" | ### Context: CREATE TABLE table_1745843_7 (class VARCHAR, part_4 VARCHAR) ### Question: In what class does the verb with part 4 gelopen belong to? ### Answer: SELECT class FROM table_1745843_7 WHERE part_4 = "gelopen" |
What's part 1 of the verb whose part 4 is gevroren? | CREATE TABLE table_1745843_7 (part_1 VARCHAR, part_4 VARCHAR) | SELECT part_1 FROM table_1745843_7 WHERE part_4 = "gevroren" | ### Context: CREATE TABLE table_1745843_7 (part_1 VARCHAR, part_4 VARCHAR) ### Question: What's part 1 of the verb whose part 4 is gevroren? ### Answer: SELECT part_1 FROM table_1745843_7 WHERE part_4 = "gevroren" |
How many different meanings does the verb with part 4 gegeven have? | CREATE TABLE table_1745843_7 (verb_meaning VARCHAR, part_4 VARCHAR) | SELECT COUNT(verb_meaning) FROM table_1745843_7 WHERE part_4 = "gegeven" | ### Context: CREATE TABLE table_1745843_7 (verb_meaning VARCHAR, part_4 VARCHAR) ### Question: How many different meanings does the verb with part 4 gegeven have? ### Answer: SELECT COUNT(verb_meaning) FROM table_1745843_7 WHERE part_4 = "gegeven" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.