Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
32,200
<question>: Who had the high rebounds when the team played Sacramento? <context>: CREATE TABLE table_17355408_9 (high_rebounds VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_17355408_9 WHERE team = "Sacramento"
32,201
<question>: Who had the high points on April 8? <context>: CREATE TABLE table_17355408_9 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_17355408_9 WHERE date = "April 8"
32,202
<question>: Who had the high assists in game 80? <context>: CREATE TABLE table_17355408_9 (high_assists VARCHAR, game VARCHAR)
SELECT high_assists FROM table_17355408_9 WHERE game = 80
32,203
<question>: Name the highh points for december 29 <context>: CREATE TABLE table_17355408_5 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_17355408_5 WHERE date = "December 29"
32,204
<question>: Name the high assists for 29 game <context>: CREATE TABLE table_17355408_5 (high_assists VARCHAR, game VARCHAR)
SELECT high_assists FROM table_17355408_5 WHERE game = 29
32,205
<question>: Name the high points for pepsi center 18,611 <context>: 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"
32,206
<question>: Name the date for chicago <context>: CREATE TABLE table_17355408_4 (date VARCHAR, team VARCHAR)
SELECT date FROM table_17355408_4 WHERE team = "Chicago"
32,207
<question>: Name the record for new orleans <context>: CREATE TABLE table_17355408_4 (record VARCHAR, team VARCHAR)
SELECT record FROM table_17355408_4 WHERE team = "New Orleans"
32,208
<question>: Name the high assists for chauncey billups , carmelo anthony (18) <context>: 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)"
32,209
<question>: What was the final score for @ Orlando? <context>: CREATE TABLE table_17355408_7 (score VARCHAR, team VARCHAR)
SELECT score FROM table_17355408_7 WHERE team = "@ Orlando"
32,210
<question>: Chauncey Billups (6) had a high assist on what date? <context>: CREATE TABLE table_17355408_7 (date VARCHAR, high_assists VARCHAR)
SELECT date FROM table_17355408_7 WHERE high_assists = "Chauncey Billups (6)"
32,211
<question>: @ Chicago had a high points of what? <context>: CREATE TABLE table_17355408_7 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_17355408_7 WHERE team = "@ Chicago"
32,212
<question>: High assists belonging to Carmelo Anthony (11) have a record of what? <context>: CREATE TABLE table_17355408_7 (record VARCHAR, high_assists VARCHAR)
SELECT record FROM table_17355408_7 WHERE high_assists = "Carmelo Anthony (11)"
32,213
<question>: Name the high assists for april 8 <context>: CREATE TABLE table_17355628_10 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_17355628_10 WHERE date = "April 8"
32,214
<question>: Name the score for charlotte <context>: CREATE TABLE table_17355628_10 (score VARCHAR, team VARCHAR)
SELECT score FROM table_17355628_10 WHERE team = "Charlotte"
32,215
<question>: Name the location attendance for chucky atkins , russell westbrook (4) <context>: 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)"
32,216
<question>: Name the series number directed by richard thorpe written by dee johnson <context>: 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"
32,217
<question>: Name the team where the date is november 17 <context>: CREATE TABLE table_17355716_5 (team VARCHAR, date VARCHAR)
SELECT team FROM table_17355716_5 WHERE date = "November 17"
32,218
<question>: Name the team for november 5 <context>: CREATE TABLE table_17355716_5 (team VARCHAR, date VARCHAR)
SELECT team FROM table_17355716_5 WHERE date = "November 5"
32,219
<question>: What is the maximum series number what is smaller than season 7.0 and directed by Laura Innes? <context>: 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
32,220
<question>: If Arthur Albert is the director, what is the maximum series number? <context>: CREATE TABLE table_17356106_1 (series__number INTEGER, directed_by VARCHAR)
SELECT MAX(series__number) FROM table_17356106_1 WHERE directed_by = "Arthur Albert"
32,221
<question>: What was the number of seasons that was directed by Joanna Kerns? <context>: CREATE TABLE table_17356106_1 (season__number VARCHAR, directed_by VARCHAR)
SELECT COUNT(season__number) FROM table_17356106_1 WHERE directed_by = "Joanna Kerns"
32,222
<question>: For series number 256, what was the original air date? <context>: CREATE TABLE table_17356106_1 (original_air_date VARCHAR, series__number VARCHAR)
SELECT original_air_date FROM table_17356106_1 WHERE series__number = 256
32,223
<question>: What season episode is directed by Skipp Sudduth? <context>: CREATE TABLE table_17356205_1 (season__number VARCHAR, directed_by VARCHAR)
SELECT season__number FROM table_17356205_1 WHERE directed_by = "Skipp Sudduth"
32,224
<question>: How many titles are given for the episode directed by Joanna Kerns? <context>: CREATE TABLE table_17356205_1 (title VARCHAR, directed_by VARCHAR)
SELECT COUNT(title) FROM table_17356205_1 WHERE directed_by = "Joanna Kerns"
32,225
<question>: What is the original air date of the episode directed by Terrence Nightingall? <context>: 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"
32,226
<question>: Which seasons were directed by Nelson McCormick? <context>: CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_17355933_1 WHERE directed_by = "Nelson McCormick"
32,227
<question>: Which season titles were directed by Laura Innes? <context>: CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_17355933_1 WHERE directed_by = "Laura Innes"
32,228
<question>: Which episodes did Nelson McCormick direct? <context>: CREATE TABLE table_17355820_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_17355820_1 WHERE directed_by = "Nelson McCormick"
32,229
<question>: How many episodes were there in season 19? <context>: CREATE TABLE table_17355820_1 (title VARCHAR, season__number VARCHAR)
SELECT COUNT(title) FROM table_17355820_1 WHERE season__number = 19
32,230
<question>: In which season did Paul McCrane first direct an episode? <context>: CREATE TABLE table_17355820_1 (season__number INTEGER, directed_by VARCHAR)
SELECT MIN(season__number) FROM table_17355820_1 WHERE directed_by = "Paul McCrane"
32,231
<question>: On which dates did the episodes directed by TR Babu Subramaniam air? <context>: 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"
32,232
<question>: What is the fewest number of games lost? <context>: CREATE TABLE table_17357929_1 (lost INTEGER)
SELECT MIN(lost) FROM table_17357929_1
32,233
<question>: What is the goal average 1 for teams that lost 9 games? <context>: CREATE TABLE table_17357929_1 (goal_average_1 VARCHAR, lost VARCHAR)
SELECT goal_average_1 FROM table_17357929_1 WHERE lost = 9
32,234
<question>: How many teams finished with a 2nd points total of 31? <context>: CREATE TABLE table_17357929_1 (position VARCHAR, points_2 VARCHAR)
SELECT COUNT(position) FROM table_17357929_1 WHERE points_2 = 31
32,235
<question>: How many games drawn for the team that had 72 goals for? <context>: CREATE TABLE table_17357929_1 (drawn INTEGER, goals_for VARCHAR)
SELECT MAX(drawn) FROM table_17357929_1 WHERE goals_for = 72
32,236
<question>: How many games with record 1-3-3 <context>: CREATE TABLE table_17360840_4 (game VARCHAR, record VARCHAR)
SELECT COUNT(game) FROM table_17360840_4 WHERE record = "1-3-3"
32,237
<question>: How many attended on mathches against atlanta thrashers <context>: CREATE TABLE table_17360840_4 (attendance VARCHAR, opponent VARCHAR)
SELECT COUNT(attendance) FROM table_17360840_4 WHERE opponent = "Atlanta Thrashers"
32,238
<question>: Give the date of games against minnesota wild <context>: CREATE TABLE table_17360840_4 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_17360840_4 WHERE opponent = "Minnesota Wild"
32,239
<question>: State the dates of games with record 1-2-3 <context>: CREATE TABLE table_17360840_4 (date VARCHAR, record VARCHAR)
SELECT date FROM table_17360840_4 WHERE record = "1-2-3"
32,240
<question>: What is the minimum attendance on games of record 0-2-1 <context>: CREATE TABLE table_17360840_4 (attendance INTEGER, record VARCHAR)
SELECT MIN(attendance) FROM table_17360840_4 WHERE record = "0-2-1"
32,241
<question>: Which venue does Mardan sponsor? <context>: CREATE TABLE table_17356873_1 (venue VARCHAR, shirt_sponsor VARCHAR)
SELECT venue FROM table_17356873_1 WHERE shirt_sponsor = "Mardan"
32,242
<question>: Erdoğan Arıca is the head coach at what venue? <context>: CREATE TABLE table_17356873_1 (venue VARCHAR, head_coach VARCHAR)
SELECT venue FROM table_17356873_1 WHERE head_coach = "Erdoğan Arıca"
32,243
<question>: How many points were scored when the record was 6-8-6? <context>: CREATE TABLE table_17360840_5 (points VARCHAR, record VARCHAR)
SELECT COUNT(points) FROM table_17360840_5 WHERE record = "6-8-6"
32,244
<question>: Which game had a record of 6-9-7? <context>: CREATE TABLE table_17360840_5 (game VARCHAR, record VARCHAR)
SELECT game FROM table_17360840_5 WHERE record = "6-9-7"
32,245
<question>: When they played at the Bankatlantic Center, what was their record? <context>: CREATE TABLE table_17360840_5 (record VARCHAR, location VARCHAR)
SELECT record FROM table_17360840_5 WHERE location = "BankAtlantic Center"
32,246
<question>: Who was the opponent on December 27? <context>: CREATE TABLE table_17360840_6 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_17360840_6 WHERE date = "December 27"
32,247
<question>: What was the score of the game on December 11? <context>: CREATE TABLE table_17360840_6 (score VARCHAR, date VARCHAR)
SELECT score FROM table_17360840_6 WHERE date = "December 11"
32,248
<question>: What was the record when the opposing team was the Columbus Blue Jackets at St. Pete Times Forum? <context>: 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"
32,249
<question>: What was the score when the record was 21-31-13? <context>: CREATE TABLE table_17360840_9 (score VARCHAR, record VARCHAR)
SELECT score FROM table_17360840_9 WHERE record = "21-31-13"
32,250
<question>: How many locations were recorded when the opponent Columbus Blue Jackets? <context>: CREATE TABLE table_17360840_9 (location VARCHAR, opponent VARCHAR)
SELECT COUNT(location) FROM table_17360840_9 WHERE opponent = "Columbus Blue Jackets"
32,251
<question>: What was the attendance when the opposing team was the Ottawa Senators and the record was 24-35-17? <context>: 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"
32,252
<question>: The player who plays left wing is from what college/junior/club team? <context>: 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"
32,253
<question>: The player who plays goaltender is from what college/junior/club team? <context>: 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"
32,254
<question>: How many were played when there were 39 tries for? <context>: CREATE TABLE table_17369472_2 (played VARCHAR, tries_for VARCHAR)
SELECT played FROM table_17369472_2 WHERE tries_for = "39"
32,255
<question>: How many were won when the points were 12? <context>: CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR)
SELECT COUNT(won) FROM table_17369472_2 WHERE points = "12"
32,256
<question>: How many were won when there were 49 points? <context>: CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR)
SELECT won FROM table_17369472_2 WHERE points = "49"
32,257
<question>: How many points were there when tries for were 84? <context>: CREATE TABLE table_17369472_2 (points VARCHAR, tries_for VARCHAR)
SELECT points FROM table_17369472_2 WHERE tries_for = "84"
32,258
<question>: what team play in february 18 in the supersonic season <context>: CREATE TABLE table_17382360_7 (team VARCHAR, date VARCHAR)
SELECT team FROM table_17382360_7 WHERE date = "February 18"
32,259
<question>: what is the score in february 12 of the boston celtics team <context>: CREATE TABLE table_17382360_7 (score VARCHAR, team VARCHAR)
SELECT score FROM table_17382360_7 WHERE team = "Boston Celtics"
32,260
<question>: Who is the opposing team when the game was played on the Shea Stadium? <context>: CREATE TABLE table_17386066_2 (opponent VARCHAR, stadium VARCHAR)
SELECT opponent FROM table_17386066_2 WHERE stadium = "Shea stadium"
32,261
<question>: How many games or records were played on the Miami Orange Bowl? <context>: CREATE TABLE table_17386066_2 (record VARCHAR, stadium VARCHAR)
SELECT COUNT(record) FROM table_17386066_2 WHERE stadium = "Miami Orange Bowl"
32,262
<question>: What was the result of the game that was played on Nov. 26, 1972? <context>: CREATE TABLE table_17386066_2 (result VARCHAR, date VARCHAR)
SELECT result FROM table_17386066_2 WHERE date = "Nov. 26"
32,263
<question>: What are all Tamil months when the season in English is monsoon? <context>: CREATE TABLE table_1740431_3 (tamil_months VARCHAR, season_in_english VARCHAR)
SELECT tamil_months FROM table_1740431_3 WHERE season_in_english = "Monsoon"
32,264
<question>: What is every English translation when Tamil months is Mārkazhi, Tai? <context>: CREATE TABLE table_1740431_3 (english_translation VARCHAR, tamil_months VARCHAR)
SELECT english_translation FROM table_1740431_3 WHERE tamil_months = "mārkazhi, tai"
32,265
<question>: What is every Gregorian month when the season in Tamil is இளவேனில்? <context>: CREATE TABLE table_1740431_3 (gregorian_months VARCHAR, season_in_tamil VARCHAR)
SELECT gregorian_months FROM table_1740431_3 WHERE season_in_tamil = "இளவேனில்"
32,266
<question>: How many seasons in Tamil occur when the season in Sanskrit is Grishma? <context>: 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"
32,267
<question>: Which departments have M.Phil(Maths)? <context>: CREATE TABLE table_17384764_1 (department VARCHAR, qualification VARCHAR)
SELECT department FROM table_17384764_1 WHERE qualification = "M.Phil(Maths)"
32,268
<question>: How many faculty members have 20 years of experience? <context>: CREATE TABLE table_17384764_1 (designation VARCHAR, experience VARCHAR)
SELECT COUNT(designation) FROM table_17384764_1 WHERE experience = "20 years"
32,269
<question>: Name the power provided for transfer speed mb/s is 1250 <context>: 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"
32,270
<question>: Name the devices per channel for 2560 <context>: 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
32,271
<question>: Name the power provided where transfer speed mb/s is 300 and max cable length of 10 <context>: 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"
32,272
<question>: Name the colorado when alaska is connecticut <context>: CREATE TABLE table_17425749_1 (colorado VARCHAR, alaska VARCHAR)
SELECT colorado FROM table_17425749_1 WHERE alaska = "Connecticut"
32,273
<question>: Name the california where alaska tennessee <context>: CREATE TABLE table_17425749_1 (california VARCHAR, alaska VARCHAR)
SELECT california FROM table_17425749_1 WHERE alaska = "Tennessee"
32,274
<question>: Name the date for score of 95-101 <context>: CREATE TABLE table_17432028_1 (date VARCHAR, score VARCHAR)
SELECT date FROM table_17432028_1 WHERE score = "95-101"
32,275
<question>: Name the high rebounds for march 15 <context>: CREATE TABLE table_17432028_1 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_17432028_1 WHERE date = "March 15"
32,276
<question>: Name the score for record of 2-5 <context>: CREATE TABLE table_17432028_1 (score VARCHAR, record VARCHAR)
SELECT score FROM table_17432028_1 WHERE record = "2-5"
32,277
<question>: How many schools won their last occ championship in 2006? <context>: CREATE TABLE table_17429402_7 (school VARCHAR, last_occ_championship VARCHAR)
SELECT COUNT(school) FROM table_17429402_7 WHERE last_occ_championship = "2006"
32,278
<question>: What are the years of participation for central crossing school? <context>: CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR)
SELECT years_of_participation FROM table_17429402_7 WHERE school = "Central Crossing"
32,279
<question>: What is the fewest number of occ championships for the team that last won an outright occ championship in 2006? <context>: 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"
32,280
<question>: What are the years of participation for pickerington north? <context>: CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR)
SELECT years_of_participation FROM table_17429402_7 WHERE school = "Pickerington North"
32,281
<question>: Name the event for redouane bouchtouk <context>: CREATE TABLE table_17417383_6 (event VARCHAR, athlete VARCHAR)
SELECT event FROM table_17417383_6 WHERE athlete = "Redouane Bouchtouk"
32,282
<question>: Name the round 16 for did not advance and light flyweight <context>: 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"
32,283
<question>: Name the athelte for enkhzorig ( mgl ) l 1–10 <context>: 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"
32,284
<question>: Who did Abdelhafid Benchebla face in the quarterfinals? <context>: CREATE TABLE table_17427004_7 (quarterfinals VARCHAR, athlete VARCHAR)
SELECT quarterfinals FROM table_17427004_7 WHERE athlete = "Abdelhafid Benchebla"
32,285
<question>: Who did Nabil Kassel face in the Round of 32? <context>: CREATE TABLE table_17427004_7 (round_of_32 VARCHAR, athlete VARCHAR)
SELECT round_of_32 FROM table_17427004_7 WHERE athlete = "Nabil Kassel"
32,286
<question>: How did Hamza Kramou fare in the semifinals? <context>: CREATE TABLE table_17427004_7 (semifinals VARCHAR, athlete VARCHAR)
SELECT semifinals FROM table_17427004_7 WHERE athlete = "Hamza Kramou"
32,287
<question>: In what year did the winner of the FIS championship in 1982 win the Winter Olympics? <context>: 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"
32,288
<question>: What year did Thorleif Haug win the Winter Olympics? <context>: CREATE TABLE table_174491_1 (winter_olympics VARCHAR, winner VARCHAR)
SELECT winter_olympics FROM table_174491_1 WHERE winner = "Thorleif Haug"
32,289
<question>: What year did the man from Norway who won the Holmenkollen in 1958 win the FIS Nordic World Ski Championships? <context>: 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"
32,290
<question>: What is the holmenkollen for the 1982 FIS Nordic World Ski Championships? <context>: 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"
32,291
<question>: What years did Birger Ruud win the FIS Nordic World Ski Championships? <context>: 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"
32,292
<question>: What year did Karl Schnabl win the Winter Olympics? <context>: CREATE TABLE table_174491_2 (winter_olympics VARCHAR, winner VARCHAR)
SELECT winter_olympics FROM table_174491_2 WHERE winner = "Karl Schnabl"
32,293
<question>: What is the FIS Nordic World Ski Championships when holmenkollen is 1976? <context>: 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"
32,294
<question>: What year is Winter Olympics when Holmenkollen is 1957, 1960? <context>: CREATE TABLE table_174491_2 (winter_olympics VARCHAR, holmenkollen VARCHAR)
SELECT winter_olympics FROM table_174491_2 WHERE holmenkollen = "1957, 1960"
32,295
<question>: What's the part 4 for the verb whose part 3 is borgen? <context>: CREATE TABLE table_1745843_7 (part_4 VARCHAR, part_3 VARCHAR)
SELECT part_4 FROM table_1745843_7 WHERE part_3 = "borgen"
32,296
<question>: What's the meaning of the verb whose part 1 is slapen? <context>: CREATE TABLE table_1745843_7 (verb_meaning VARCHAR, part_1 VARCHAR)
SELECT verb_meaning FROM table_1745843_7 WHERE part_1 = "slapen"
32,297
<question>: In what class does the verb with part 4 gelopen belong to? <context>: CREATE TABLE table_1745843_7 (class VARCHAR, part_4 VARCHAR)
SELECT class FROM table_1745843_7 WHERE part_4 = "gelopen"
32,298
<question>: What's part 1 of the verb whose part 4 is gevroren? <context>: CREATE TABLE table_1745843_7 (part_1 VARCHAR, part_4 VARCHAR)
SELECT part_1 FROM table_1745843_7 WHERE part_4 = "gevroren"
32,299
<question>: How many different meanings does the verb with part 4 gegeven have? <context>: CREATE TABLE table_1745843_7 (verb_meaning VARCHAR, part_4 VARCHAR)
SELECT COUNT(verb_meaning) FROM table_1745843_7 WHERE part_4 = "gegeven"