question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Who had the high rebounds when the team played Sacramento?
CREATE TABLE table_17355408_9 (high_rebounds VARCHAR, team VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT date FROM table_17355408_4 WHERE team = \"Chicago\"" }
Name the record for new orleans
CREATE TABLE table_17355408_4 (record VARCHAR, team VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MAX(series__number) FROM table_17355579_1 WHERE directed_by = \"Richard Thorpe\" AND written_by = \"Dee Johnson\"" }
Name the team where the date is november 17
CREATE TABLE table_17355716_5 (team VARCHAR, date VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MAX(series__number) FROM table_17356106_1 WHERE directed_by = \"Laura Innes\" AND season__number < 7.0" }
If Arthur Albert is the director, what is the maximum series number?
CREATE TABLE table_17356106_1 (series__number INTEGER, directed_by VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT record FROM table_17360840_9 WHERE location = \"St. Pete Times Forum\" AND opponent = \"Columbus Blue Jackets\"" }
What was the score when the record was 21-31-13?
CREATE TABLE table_17360840_9 (score VARCHAR, record VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MAX(attendance) FROM table_17360840_9 WHERE opponent = \"Ottawa Senators\" AND record = \"24-35-17\"" }
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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT power_provided FROM table_174151_5 WHERE transfer_speed__mb_s_ = \"300\" AND max_cable_length__m_ = \"10\"" }
Name the colorado when alaska is connecticut
CREATE TABLE table_17425749_1 (colorado VARCHAR, alaska VARCHAR)
{ "SQL_Query": "SELECT colorado FROM table_17425749_1 WHERE alaska = \"Connecticut\"" }
Name the california where alaska tennessee
CREATE TABLE table_17425749_1 (california VARCHAR, alaska VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MIN(occ_championships) FROM table_17429402_7 WHERE last_outright_occ_championship = \"2006\"" }
What are the years of participation for pickerington north?
CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT fis_nordic_world_ski_championships FROM table_174491_1 WHERE country = \"Norway\" AND holmenkollen = \"1958\"" }
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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT COUNT(verb_meaning) FROM table_1745843_7 WHERE part_4 = \"gegeven\"" }