combined_text
stringlengths
106
1.05k
###question:Who had the high rebounds when the team played Sacramento?###answer: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 points on April 8?###answer: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 assists in game 80?###answer:SELECT high_assists FROM table_17355408_9 WHERE game = 80###context:CREATE TABLE table_17355408_9 (high_assists VARCHAR, game VARCHAR)
###question:Name the highh points for december 29###answer: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 high assists for 29 game###answer: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 points for pepsi center 18,611###answer: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 date for chicago###answer:SELECT date FROM table_17355408_4 WHERE team = "Chicago"###context:CREATE TABLE table_17355408_4 (date VARCHAR, team VARCHAR)
###question:Name the record for new orleans###answer:SELECT record FROM table_17355408_4 WHERE team = "New Orleans"###context:CREATE TABLE table_17355408_4 (record VARCHAR, team 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)"###context:CREATE TABLE table_17355408_4 (high_assists VARCHAR, high_points VARCHAR)
###question:What was the final score for @ Orlando?###answer:SELECT score FROM table_17355408_7 WHERE team = "@ Orlando"###context:CREATE TABLE table_17355408_7 (score VARCHAR, team 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)"###context:CREATE TABLE table_17355408_7 (date VARCHAR, high_assists VARCHAR)
###question:@ Chicago had a high points of what?###answer:SELECT high_points FROM table_17355408_7 WHERE team = "@ Chicago"###context:CREATE TABLE table_17355408_7 (high_points VARCHAR, team 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)"###context:CREATE TABLE table_17355408_7 (record VARCHAR, high_assists VARCHAR)
###question:Name the high assists for april 8###answer: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 score for charlotte###answer:SELECT score FROM table_17355628_10 WHERE team = "Charlotte"###context:CREATE TABLE table_17355628_10 (score VARCHAR, team 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)"###context:CREATE TABLE table_17355628_10 (location_attendance VARCHAR, high_assists 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 Johnson"###context:CREATE TABLE table_17355579_1 (series__number INTEGER, directed_by VARCHAR, written_by VARCHAR)
###question:Name the team where the date is november 17###answer:SELECT team FROM table_17355716_5 WHERE date = "November 17"###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"###context:CREATE TABLE table_17355716_5 (team VARCHAR, date 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 season__number < 7.0###context:CREATE TABLE table_17356106_1 (series__number INTEGER, directed_by VARCHAR, season__nu...
###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"###context:CREATE TABLE table_17356106_1 (series__number INTEGER, 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"###context:CREATE TABLE table_17356106_1 (season__number VARCHAR, directed_by 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###context:CREATE TABLE table_17356106_1 (original_air_date VARCHAR, series__number VARCHAR)
###question:What season episode is directed by Skipp Sudduth?###answer: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: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"###context:CREATE TABLE table_17356205_1 (title 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"###context:CREATE TABLE table_17356205_1 (original_air_date VARCHAR, directed_by VARCHAR)
###question:Which seasons were directed by Nelson McCormick?###answer:SELECT title FROM table_17355933_1 WHERE directed_by = "Nelson McCormick"###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"###context:CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR)
###question:Which episodes did Nelson McCormick direct?###answer: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:How many episodes were there in season 19?###answer:SELECT COUNT(title) FROM table_17355820_1 WHERE season__number = 19###context:CREATE TABLE table_17355820_1 (title VARCHAR, season__number 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"###context:CREATE TABLE table_17355820_1 (season__number INTEGER, 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"###context:CREATE TABLE table_17355820_1 (original_air_date VARCHAR, directed_by VARCHAR)
###question:What is the fewest number of games lost?###answer:SELECT MIN(lost) FROM table_17357929_1###context:CREATE TABLE table_17357929_1 (lost INTEGER)
###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###context:CREATE TABLE table_17357929_1 (goal_average_1 VARCHAR, lost 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###context:CREATE TABLE table_17357929_1 (position VARCHAR, points_2 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###context:CREATE TABLE table_17357929_1 (drawn INTEGER, goals_for VARCHAR)
###question:How many games with record 1-3-3###answer: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 attended on mathches against atlanta thrashers###answer:SELECT COUNT(attendance) FROM table_17360840_4 WHERE opponent = "Atlanta Thrashers"###context:CREATE TABLE table_17360840_4 (attendance VARCHAR, opponent VARCHAR)
###question:Give the date of games against minnesota wild###answer:SELECT date FROM table_17360840_4 WHERE opponent = "Minnesota Wild"###context:CREATE TABLE table_17360840_4 (date VARCHAR, opponent VARCHAR)
###question:State the dates of games with record 1-2-3###answer:SELECT date FROM table_17360840_4 WHERE record = "1-2-3"###context:CREATE TABLE table_17360840_4 (date VARCHAR, 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"###context:CREATE TABLE table_17360840_4 (attendance INTEGER, record VARCHAR)
###question:Which venue does Mardan sponsor?###answer:SELECT venue FROM table_17356873_1 WHERE shirt_sponsor = "Mardan"###context:CREATE TABLE table_17356873_1 (venue VARCHAR, shirt_sponsor 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"###context:CREATE TABLE table_17356873_1 (venue VARCHAR, head_coach 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"###context:CREATE TABLE table_17360840_5 (points 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"###context:CREATE TABLE table_17360840_5 (game VARCHAR, record VARCHAR)
###question:When they played at the Bankatlantic Center, what was their record?###answer:SELECT record FROM table_17360840_5 WHERE location = "BankAtlantic Center"###context:CREATE TABLE table_17360840_5 (record VARCHAR, location VARCHAR)
###question:Who was the opponent on December 27?###answer:SELECT opponent FROM table_17360840_6 WHERE date = "December 27"###context:CREATE TABLE table_17360840_6 (opponent 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"###context:CREATE TABLE table_17360840_6 (score VARCHAR, date 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 Blue Jackets"###context:CREATE TABLE table_17360840_9 (record VARCHAR, location VARCHAR, opponent VA...
###question:What was the score when the record was 21-31-13?###answer:SELECT score FROM table_17360840_9 WHERE record = "21-31-13"###context:CREATE TABLE table_17360840_9 (score VARCHAR, record 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"###context:CREATE TABLE table_17360840_9 (location VARCHAR, opponent 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 = "24-35-17"###context:CREATE TABLE table_17360840_9 (attendance INTEGER, opponent VARCHAR, record 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"###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"###context:CREATE TABLE table_17371135_30 (college_junior_club_team__league_ VARCHAR, position VARCHAR)
###question:How many were played when there were 39 tries for? ###answer: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 won when the points were 12? ###answer: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 there were 49 points? ###answer:SELECT won FROM table_17369472_2 WHERE points = "49"###context:CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR)
###question:How many points were there when tries for were 84? ###answer:SELECT points FROM table_17369472_2 WHERE tries_for = "84"###context:CREATE TABLE table_17369472_2 (points VARCHAR, tries_for VARCHAR)
###question:what team play in february 18 in the supersonic season ###answer:SELECT team FROM table_17382360_7 WHERE date = "February 18"###context:CREATE TABLE table_17382360_7 (team VARCHAR, date 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"###context:CREATE TABLE table_17382360_7 (score VARCHAR, team 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"###context:CREATE TABLE table_17386066_2 (opponent 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"###context:CREATE TABLE table_17386066_2 (record VARCHAR, stadium 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"###context:CREATE TABLE table_17386066_2 (result VARCHAR, date 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"###context:CREATE TABLE table_1740431_3 (tamil_months VARCHAR, season_in_english 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"###context:CREATE TABLE table_1740431_3 (english_translation VARCHAR, tamil_months 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 = "இளவேனில்"###context:CREATE TABLE table_1740431_3 (gregorian_months VARCHAR, season_in_tamil 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"###context:CREATE TABLE table_1740431_3 (season_in_tamil VARCHAR, season_in_sanskrit VARCHAR)
###question:Which departments have M.Phil(Maths)?###answer:SELECT department FROM table_17384764_1 WHERE qualification = "M.Phil(Maths)"###context:CREATE TABLE table_17384764_1 (department VARCHAR, qualification VARCHAR)
###question:How many faculty members have 20 years of experience? ###answer:SELECT COUNT(designation) FROM table_17384764_1 WHERE experience = "20 years"###context:CREATE TABLE table_17384764_1 (designation VARCHAR, experience 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"###context:CREATE TABLE table_174151_5 (power_provided VARCHAR, transfer_speed__mb_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###context:CREATE TABLE table_174151_5 (devices_per_channel VARCHAR, raw_bandwidth__mbit_s_ 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 max_cable_length__m_ = "10"###context:CREATE TABLE table_174151_5 (power_provided VARCHAR, transfer_speed__mb_s_ VARCHAR, max_cable_l...
###question:Name the colorado when alaska is connecticut###answer:SELECT colorado FROM table_17425749_1 WHERE alaska = "Connecticut"###context:CREATE TABLE table_17425749_1 (colorado VARCHAR, alaska VARCHAR)
###question:Name the california where alaska tennessee###answer:SELECT california FROM table_17425749_1 WHERE alaska = "Tennessee"###context:CREATE TABLE table_17425749_1 (california VARCHAR, alaska VARCHAR)
###question:Name the date for score of 95-101###answer:SELECT date FROM table_17432028_1 WHERE score = "95-101"###context:CREATE TABLE table_17432028_1 (date VARCHAR, score VARCHAR)
###question:Name the high rebounds for march 15###answer: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 score for record of 2-5###answer:SELECT score FROM table_17432028_1 WHERE record = "2-5"###context:CREATE TABLE table_17432028_1 (score VARCHAR, record 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"###context:CREATE TABLE table_17429402_7 (school VARCHAR, last_occ_championship 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"###context:CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school 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_occ_championship = "2006"###context:CREATE TABLE table_17429402_7 (occ_championships INTEGER, last_outright_occ_cha...
###question:What are the years of participation for pickerington north?###answer: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:Name the event for redouane bouchtouk###answer:SELECT event FROM table_17417383_6 WHERE athlete = "Redouane Bouchtouk"###context:CREATE TABLE table_17417383_6 (event VARCHAR, athlete 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"###context:CREATE TABLE table_17417383_6 (round_of_16 VARCHAR, quarterfinals VARCHAR, event 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"###context:CREATE TABLE table_17417383_6 (athlete VARCHAR, round_of_32 VARCHAR)
###question:Who did Abdelhafid Benchebla face in the quarterfinals?###answer:SELECT quarterfinals FROM table_17427004_7 WHERE athlete = "Abdelhafid Benchebla"###context:CREATE TABLE table_17427004_7 (quarterfinals 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"###context:CREATE TABLE table_17427004_7 (round_of_32 VARCHAR, athlete VARCHAR)
###question:How did Hamza Kramou fare in the semifinals?###answer:SELECT semifinals FROM table_17427004_7 WHERE athlete = "Hamza Kramou"###context:CREATE TABLE table_17427004_7 (semifinals VARCHAR, athlete 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"###context:CREATE TABLE table_174491_1 (winter_olympics VARCHAR, fis_nordic_world_ski_championships VARCHAR)
###question:What year did Thorleif Haug win the Winter Olympics?###answer: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 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_174491_1 WHERE country = "Norway" AND holmenkollen = "1958"###context:CREATE TABLE table_174491_1 (fis_nordic_world_ski_championships V...
###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"###context:CREATE TABLE table_174491_2 (holmenkollen VARCHAR, fis_nordic_world_ski_championships 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"###context:CREATE TABLE table_174491_2 (fis_nordic_world_ski_championships 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"###context:CREATE TABLE table_174491_2 (winter_olympics VARCHAR, winner 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"###context:CREATE TABLE table_174491_2 (fis_nordic_world_ski_championships 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"###context:CREATE TABLE table_174491_2 (winter_olympics VARCHAR, holmenkollen 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"###context:CREATE TABLE table_1745843_7 (part_4 VARCHAR, part_3 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"###context:CREATE TABLE table_1745843_7 (verb_meaning VARCHAR, part_1 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"###context:CREATE TABLE table_1745843_7 (class 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"###context:CREATE TABLE table_1745843_7 (part_1 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"###context:CREATE TABLE table_1745843_7 (verb_meaning VARCHAR, part_4 VARCHAR)