question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What season episode is directed by Skipp Sudduth?
CREATE TABLE "table1_17356205_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "season_num" FROM "table1_17356205_1" WHERE "directed_by"='Skipp Sudduth';
1-17356205-1
How many titles are given for the episode directed by Joanna Kerns?
CREATE TABLE "table1_17356205_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT COUNT("title") FROM "table1_17356205_1" WHERE "directed_by"='Joanna Kerns';
1-17356205-1
What is the original air date of the episode directed by Terrence Nightingall?
CREATE TABLE "table1_17356205_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "original_air_date" FROM "table1_17356205_1" WHERE "directed_by"='Terrence Nightingall';
1-17356205-1
What is the season number for "Impulse Control"?
CREATE TABLE "table1_17355933_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT MIN("season_num") FROM "table1_17355933_1" WHERE "title"='\"Impulse Control\"';
1-17355933-1
Which seasons were directed by Nelson McCormick?
CREATE TABLE "table1_17355933_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "title" FROM "table1_17355933_1" WHERE "directed_by"='Nelson McCormick';
1-17355933-1
Which season titles were directed by Laura Innes?
CREATE TABLE "table1_17355933_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "title" FROM "table1_17355933_1" WHERE "directed_by"='Laura Innes';
1-17355933-1
Which episodes did Nelson McCormick direct?
CREATE TABLE "table1_17355820_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "written_by" FROM "table1_17355820_1" WHERE "directed_by"='Nelson McCormick';
1-17355820-1
How many episodes were there in season 19?
CREATE TABLE "table1_17355820_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT COUNT("title") FROM "table1_17355820_1" WHERE "season_num"=19;
1-17355820-1
In which season did Paul McCrane first direct an episode?
CREATE TABLE "table1_17355820_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT MIN("season_num") FROM "table1_17355820_1" WHERE "directed_by"='Paul McCrane';
1-17355820-1
On which dates did the episodes directed by TR Babu Subramaniam air?
CREATE TABLE "table1_17355820_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "original_air_date" FROM "table1_17355820_1" WHERE "directed_by"='TR Babu Subramaniam';
1-17355820-1
Who directed the episode titled "the advocate"?
CREATE TABLE "table1_17355820_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "directed_by" FROM "table1_17355820_1" WHERE "title"='\"The Advocate\"';
1-17355820-1
What is the fewest number of games lost?
CREATE TABLE "final_table" ( "position" real, "team" text, "played" real, "won" real, "drawn" real, "lost" real, "goals_for" real, "goals_against" real, "goal_average_1" text, "points_2" real );
SELECT MIN("lost") FROM "final_table";
1-17357929-1
What is the goal average 1 for teams that lost 9 games?
CREATE TABLE "final_table" ( "position" real, "team" text, "played" real, "won" real, "drawn" real, "lost" real, "goals_for" real, "goals_against" real, "goal_average_1" text, "points_2" real );
SELECT "goal_average_1" FROM "final_table" WHERE "lost"=9;
1-17357929-1
How many teams finished with a 2nd points total of 31?
CREATE TABLE "final_table" ( "position" real, "team" text, "played" real, "won" real, "drawn" real, "lost" real, "goals_for" real, "goals_against" real, "goal_average_1" text, "points_2" real );
SELECT COUNT("position") FROM "final_table" WHERE "points_2"=31;
1-17357929-1
How many games drawn for the team that had 72 goals for?
CREATE TABLE "final_table" ( "position" real, "team" text, "played" real, "won" real, "drawn" real, "lost" real, "goals_for" real, "goals_against" real, "goal_average_1" text, "points_2" real );
SELECT MAX("drawn") FROM "final_table" WHERE "goals_for"=72;
1-17357929-1
How many games with record 1-3-3
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT COUNT("game") FROM "game_log" WHERE "record"='1-3-3';
1-17360840-4
How many attended on mathches against atlanta thrashers
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT COUNT("attendance") FROM "game_log" WHERE "opponent"='Atlanta Thrashers';
1-17360840-4
Give the date of games against minnesota wild
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT "date" FROM "game_log" WHERE "opponent"='Minnesota Wild';
1-17360840-4
State the dates of games with record 1-2-3
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT "date" FROM "game_log" WHERE "record"='1-2-3';
1-17360840-4
What is the minimum attendance on games of record 0-2-1
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT MIN("attendance") FROM "game_log" WHERE "record"='0-2-1';
1-17360840-4
Which venue does Mardan sponsor?
CREATE TABLE "overview" ( "team" text, "head_coach" text, "team_captain" text, "venue" text, "capacity" real, "kitmaker" text, "shirt_sponsor" text, "club_chairman" text );
SELECT "venue" FROM "overview" WHERE "shirt_sponsor"='Mardan';
1-17356873-1
Erdoğan Arıca is the head coach at what venue?
CREATE TABLE "overview" ( "team" text, "head_coach" text, "team_captain" text, "venue" text, "capacity" real, "kitmaker" text, "shirt_sponsor" text, "club_chairman" text );
SELECT "venue" FROM "overview" WHERE "head_coach"='Erdoğan Arıca';
1-17356873-1
Who is the club chairman of the team that Murat Erdoğan is the captain of?
CREATE TABLE "overview" ( "team" text, "head_coach" text, "team_captain" text, "venue" text, "capacity" real, "kitmaker" text, "shirt_sponsor" text, "club_chairman" text );
SELECT "club_chairman" FROM "overview" WHERE "team_captain"='Murat Erdoğan';
1-17356873-1
How many points were scored when the record was 6-8-6?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT COUNT("points") FROM "game_log" WHERE "record"='6-8-6';
1-17360840-5
Which game had a record of 6-9-7?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT "game" FROM "game_log" WHERE "record"='6-9-7';
1-17360840-5
When they played at the Bankatlantic Center, what was their record?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT "record" FROM "game_log" WHERE "location"='BankAtlantic Center';
1-17360840-5
Who was the opponent on December 27?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT "opponent" FROM "game_log" WHERE "date"='December 27';
1-17360840-6
What was the score of the game on December 11?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT "score" FROM "game_log" WHERE "date"='December 11';
1-17360840-6
What was the record when the opposing team was the Columbus Blue Jackets at St. Pete Times Forum?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT "record" FROM "game_log" WHERE "location"='St. Pete Times Forum' AND "opponent"='Columbus Blue Jackets';
1-17360840-9
What was the score when the record was 21-31-13?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT "score" FROM "game_log" WHERE "record"='21-31-13';
1-17360840-9
How many locations were recorded when the opponent Columbus Blue Jackets?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT COUNT("location") FROM "game_log" WHERE "opponent"='Columbus Blue Jackets';
1-17360840-9
What was the attendance when the opposing team was the Ottawa Senators and the record was 24-35-17?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "attendance" real, "record" text, "points" real );
SELECT MAX("attendance") FROM "game_log" WHERE "opponent"='Ottawa Senators' AND "record"='24-35-17';
1-17360840-9
The player who plays left wing is from what college/junior/club team?
CREATE TABLE "draft_picks" ( "round" real, "overall_pick" real, "player" text, "position" text, "nationality" text, "college_junior_club_team_league" text );
SELECT "college_junior_club_team_league" FROM "draft_picks" WHERE "position"='Left Wing';
1-17371135-30
The player who plays goaltender is from what college/junior/club team?
CREATE TABLE "draft_picks" ( "round" real, "overall_pick" real, "player" text, "position" text, "nationality" text, "college_junior_club_team_league" text );
SELECT "college_junior_club_team_league" FROM "draft_picks" WHERE "position"='Goaltender';
1-17371135-30
How many were played when there were 39 tries for?
CREATE TABLE "league_table" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text, "losing_bonus" text, "points" text );
SELECT "played" FROM "league_table" WHERE "tries_for"='39';
1-17369472-2
How many were won when the points were 12?
CREATE TABLE "league_table" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text, "losing_bonus" text, "points" text );
SELECT COUNT("won") FROM "league_table" WHERE "points"='12';
1-17369472-2
How many were won when there were 49 points?
CREATE TABLE "league_table" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text, "losing_bonus" text, "points" text );
SELECT "won" FROM "league_table" WHERE "points"='49';
1-17369472-2
How many points were there when tries for were 84?
CREATE TABLE "league_table" ( "club" text, "played" text, "won" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text, "losing_bonus" text, "points" text );
SELECT "points" FROM "league_table" WHERE "tries_for"='84';
1-17369472-2
what team play in february 18 in the supersonic season
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "team" FROM "game_log" WHERE "date"='February 18';
1-17382360-7
what is the score in february 12 of the boston celtics team
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "score" FROM "game_log" WHERE "team"='Boston Celtics';
1-17382360-7
Who is the opposing team when the game was played on the Shea Stadium?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "stadium" text, "result" text, "record" text, "streak" text, "attendance" real );
SELECT "opponent" FROM "schedule" WHERE "stadium"='Shea Stadium';
1-17386066-2
How many games or records were played on the Miami Orange Bowl?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "stadium" text, "result" text, "record" text, "streak" text, "attendance" real );
SELECT COUNT("record") FROM "schedule" WHERE "stadium"='Miami Orange Bowl';
1-17386066-2
What was the result of the game that was played on Nov. 26, 1972?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "stadium" text, "result" text, "record" text, "streak" text, "attendance" real );
SELECT "result" FROM "schedule" WHERE "date"='Nov. 26';
1-17386066-2
What are all Tamil months when the season in English is monsoon?
CREATE TABLE "seasons" ( "season_in_tamil" text, "english_transliteration" text, "english_translation" text, "season_in_sanskrit" text, "season_in_english" text, "tamil_months" text, "gregorian_months" text );
SELECT "tamil_months" FROM "seasons" WHERE "season_in_english"='Monsoon';
1-1740431-3
What is every English translation when Tamil months is Mārkazhi, Tai?
CREATE TABLE "seasons" ( "season_in_tamil" text, "english_transliteration" text, "english_translation" text, "season_in_sanskrit" text, "season_in_english" text, "tamil_months" text, "gregorian_months" text );
SELECT "english_translation" FROM "seasons" WHERE "tamil_months"='mārkazhi, tai';
1-1740431-3
What is every Gregorian month when the season in Tamil is இளவேனில்?
CREATE TABLE "seasons" ( "season_in_tamil" text, "english_transliteration" text, "english_translation" text, "season_in_sanskrit" text, "season_in_english" text, "tamil_months" text, "gregorian_months" text );
SELECT "gregorian_months" FROM "seasons" WHERE "season_in_tamil"='இளவேனில்';
1-1740431-3
How many seasons in Tamil occur when the season in Sanskrit is Grishma?
CREATE TABLE "seasons" ( "season_in_tamil" text, "english_transliteration" text, "english_translation" text, "season_in_sanskrit" text, "season_in_english" text, "tamil_months" text, "gregorian_months" text );
SELECT COUNT("season_in_tamil") FROM "seasons" WHERE "season_in_sanskrit"='Grishma';
1-1740431-3
Which departments have M.Phil(Maths)?
CREATE TABLE "external_links" ( "sno" real, "college_code" text, "faculty_name" text, "designation" text, "qualification" text, "department" text, "experience" text );
SELECT "department" FROM "external_links" WHERE "qualification"='M.Phil(Maths)';
1-17384764-1
How many faculty members have 20 years of experience?
CREATE TABLE "external_links" ( "sno" real, "college_code" text, "faculty_name" text, "designation" text, "qualification" text, "department" text, "experience" text );
SELECT COUNT("designation") FROM "external_links" WHERE "experience"='20 years';
1-17384764-1
Name the power provided for transfer speed mb/s is 1250
CREATE TABLE "comparison_with_other_buses" ( "name" text, "raw_bandwidth_mbit_s" real, "transfer_speed_mb_s" text, "max_cable_length_m" text, "power_provided" text, "devices_per_channel" text );
SELECT "power_provided" FROM "comparison_with_other_buses" WHERE "transfer_speed_mb_s"='1250';
1-174151-5
Name the devices per channel for 2560
CREATE TABLE "comparison_with_other_buses" ( "name" text, "raw_bandwidth_mbit_s" real, "transfer_speed_mb_s" text, "max_cable_length_m" text, "power_provided" text, "devices_per_channel" text );
SELECT "devices_per_channel" FROM "comparison_with_other_buses" WHERE "raw_bandwidth_mbit_s"=2560;
1-174151-5
Name the power provided where transfer speed mb/s is 300 and max cable length of 10
CREATE TABLE "comparison_with_other_buses" ( "name" text, "raw_bandwidth_mbit_s" real, "transfer_speed_mb_s" text, "max_cable_length_m" text, "power_provided" text, "devices_per_channel" text );
SELECT "power_provided" FROM "comparison_with_other_buses" WHERE "transfer_speed_mb_s"='300' AND "max_cable_length_m"='10';
1-174151-5
Name the colorado when alaska is connecticut
CREATE TABLE "table1_17425749_1" ( "alaska" text, "arizona" text, "arkansas" text, "california" text, "colorado" text );
SELECT "colorado" FROM "table1_17425749_1" WHERE "alaska"='Connecticut';
1-17425749-1
Name the california where alaska tennessee
CREATE TABLE "table1_17425749_1" ( "alaska" text, "arizona" text, "arkansas" text, "california" text, "colorado" text );
SELECT "california" FROM "table1_17425749_1" WHERE "alaska"='Tennessee';
1-17425749-1
Name the date for score of 95-101
CREATE TABLE "2009_season_schedule" ( "date" text, "opponent" text, "home_away" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "2009_season_schedule" WHERE "score"='95-101';
1-17432028-1
Name the high rebounds for march 15
CREATE TABLE "2009_season_schedule" ( "date" text, "opponent" text, "home_away" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "2009_season_schedule" WHERE "date"='March 15';
1-17432028-1
Name the score for record of 2-5
CREATE TABLE "2009_season_schedule" ( "date" text, "opponent" text, "home_away" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "score" FROM "2009_season_schedule" WHERE "record"='2-5';
1-17432028-1
How many schools won their last occ championship in 2006?
CREATE TABLE "by_school" ( "school" text, "years_of_participation" text, "occ_championships" real, "last_occ_championship" text, "last_outright_occ_championship" text );
SELECT COUNT("school") FROM "by_school" WHERE "last_occ_championship"='2006';
1-17429402-7
What are the years of participation for central crossing school?
CREATE TABLE "by_school" ( "school" text, "years_of_participation" text, "occ_championships" real, "last_occ_championship" text, "last_outright_occ_championship" text );
SELECT "years_of_participation" FROM "by_school" WHERE "school"='Central Crossing';
1-17429402-7
What is the fewest number of occ championships for the team that last won an outright occ championship in 2006?
CREATE TABLE "by_school" ( "school" text, "years_of_participation" text, "occ_championships" real, "last_occ_championship" text, "last_outright_occ_championship" text );
SELECT MIN("occ_championships") FROM "by_school" WHERE "last_outright_occ_championship"='2006';
1-17429402-7
What are the years of participation for pickerington north?
CREATE TABLE "by_school" ( "school" text, "years_of_participation" text, "occ_championships" real, "last_occ_championship" text, "last_outright_occ_championship" text );
SELECT "years_of_participation" FROM "by_school" WHERE "school"='Pickerington North';
1-17429402-7
Name the event for redouane bouchtouk
CREATE TABLE "table1_17417383_6" ( "athlete" text, "event" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text, "semifinals" text );
SELECT "event" FROM "table1_17417383_6" WHERE "athlete"='Redouane Bouchtouk';
1-17417383-6
Name the round 16 for did not advance and light flyweight
CREATE TABLE "table1_17417383_6" ( "athlete" text, "event" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text, "semifinals" text );
SELECT "round_of_16" FROM "table1_17417383_6" WHERE "quarterfinals"='Did not advance' AND "event"='Light flyweight';
1-17417383-6
Name the athelte for enkhzorig ( mgl ) l 1–10
CREATE TABLE "table1_17417383_6" ( "athlete" text, "event" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text, "semifinals" text );
SELECT "athlete" FROM "table1_17417383_6" WHERE "round_of_32"='Enkhzorig ( MGL ) L 1–10';
1-17417383-6
Who did Abdelhafid Benchebla face in the quarterfinals?
CREATE TABLE "table1_17427004_7" ( "athlete" text, "event" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text, "semifinals" text );
SELECT "quarterfinals" FROM "table1_17427004_7" WHERE "athlete"='Abdelhafid Benchebla';
1-17427004-7
Who did Nabil Kassel face in the Round of 32?
CREATE TABLE "table1_17427004_7" ( "athlete" text, "event" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text, "semifinals" text );
SELECT "round_of_32" FROM "table1_17427004_7" WHERE "athlete"='Nabil Kassel';
1-17427004-7
How did Hamza Kramou fare in the semifinals?
CREATE TABLE "table1_17427004_7" ( "athlete" text, "event" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text, "semifinals" text );
SELECT "semifinals" FROM "table1_17427004_7" WHERE "athlete"='Hamza Kramou';
1-17427004-7
In what year did the winner of the FIS championship in 1982 win the Winter Olympics?
CREATE TABLE "men_s_nordic_combined" ( "winner" text, "country" text, "winter_olympics" text, "fis_nordic_world_ski_championships" text, "holmenkollen" text );
SELECT "winter_olympics" FROM "men_s_nordic_combined" WHERE "fis_nordic_world_ski_championships"='1982';
1-174491-1
What year did Thorleif Haug win the Winter Olympics?
CREATE TABLE "men_s_nordic_combined" ( "winner" text, "country" text, "winter_olympics" text, "fis_nordic_world_ski_championships" text, "holmenkollen" text );
SELECT "winter_olympics" FROM "men_s_nordic_combined" WHERE "winner"='Thorleif Haug';
1-174491-1
What year did the man from Norway who won the Holmenkollen in 1958 win the FIS Nordic World Ski Championships?
CREATE TABLE "men_s_nordic_combined" ( "winner" text, "country" text, "winter_olympics" text, "fis_nordic_world_ski_championships" text, "holmenkollen" text );
SELECT "fis_nordic_world_ski_championships" FROM "men_s_nordic_combined" WHERE "country"='Norway' AND "holmenkollen"='1958';
1-174491-1
What is the holmenkollen for the 1982 FIS Nordic World Ski Championships?
CREATE TABLE "men_s_ski_jump" ( "winner" text, "country" text, "winter_olympics" text, "fis_nordic_world_ski_championships" text, "holmenkollen" text );
SELECT "holmenkollen" FROM "men_s_ski_jump" WHERE "fis_nordic_world_ski_championships"='1982';
1-174491-2
What years did Birger Ruud win the FIS Nordic World Ski Championships?
CREATE TABLE "men_s_ski_jump" ( "winner" text, "country" text, "winter_olympics" text, "fis_nordic_world_ski_championships" text, "holmenkollen" text );
SELECT "fis_nordic_world_ski_championships" FROM "men_s_ski_jump" WHERE "winner"='Birger Ruud';
1-174491-2
What year did Karl Schnabl win the Winter Olympics?
CREATE TABLE "men_s_ski_jump" ( "winner" text, "country" text, "winter_olympics" text, "fis_nordic_world_ski_championships" text, "holmenkollen" text );
SELECT "winter_olympics" FROM "men_s_ski_jump" WHERE "winner"='Karl Schnabl';
1-174491-2
What is the FIS Nordic World Ski Championships when holmenkollen is 1976?
CREATE TABLE "men_s_ski_jump" ( "winner" text, "country" text, "winter_olympics" text, "fis_nordic_world_ski_championships" text, "holmenkollen" text );
SELECT "fis_nordic_world_ski_championships" FROM "men_s_ski_jump" WHERE "holmenkollen"='1976';
1-174491-2
What year is Winter Olympics when Holmenkollen is 1957, 1960?
CREATE TABLE "men_s_ski_jump" ( "winner" text, "country" text, "winter_olympics" text, "fis_nordic_world_ski_championships" text, "holmenkollen" text );
SELECT "winter_olympics" FROM "men_s_ski_jump" WHERE "holmenkollen"='1957, 1960';
1-174491-2
What's the part 4 for the verb whose part 3 is borgen?
CREATE TABLE "dutch" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "part_4" FROM "dutch" WHERE "part_3"='borgen';
1-1745843-7
What's the meaning of the verb whose part 1 is slapen?
CREATE TABLE "dutch" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "verb_meaning" FROM "dutch" WHERE "part_1"='slapen';
1-1745843-7
In what class does the verb with part 4 gelopen belong to?
CREATE TABLE "dutch" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "class" FROM "dutch" WHERE "part_4"='gelopen';
1-1745843-7
What's part 1 of the verb whose part 4 is gevroren?
CREATE TABLE "dutch" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "part_1" FROM "dutch" WHERE "part_4"='gevroren';
1-1745843-7
How many different meanings does the verb with part 4 gegeven have?
CREATE TABLE "dutch" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT COUNT("verb_meaning") FROM "dutch" WHERE "part_4"='gegeven';
1-1745843-7
What's the part 3 of the verb with part 4 gelopen?
CREATE TABLE "dutch" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "part_3" FROM "dutch" WHERE "part_4"='gelopen';
1-1745843-7
How many different classes of verbs are there whose part 3 is lucon?
CREATE TABLE "english" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT COUNT("class") FROM "english" WHERE "part_3"='lucon';
1-1745843-6
What's the class of the verb whose part 1 is lesan?
CREATE TABLE "english" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "class" FROM "english" WHERE "part_1"='lesan';
1-1745843-6
How many different part 3 verbs are there that mean to freeze?
CREATE TABLE "english" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT COUNT("part_3") FROM "english" WHERE "verb_meaning"='to freeze';
1-1745843-6
What's the part 3 of the verb whose class is 4?
CREATE TABLE "english" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "part_3" FROM "english" WHERE "class"='4';
1-1745843-6
What's the part 3 of the verb in class 5?
CREATE TABLE "english" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "part_3" FROM "english" WHERE "class"='5';
1-1745843-6
What is the class of the word who's second participle is laug?
CREATE TABLE "gothic" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "class" FROM "gothic" WHERE "part_2"='laug';
1-1745843-5
What is the meaning of the class 6 verbs?
CREATE TABLE "gothic" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "verb_meaning" FROM "gothic" WHERE "class"='6';
1-1745843-5
What is the 3rd participle of the verb whose 2nd participle is band?
CREATE TABLE "gothic" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "part_3" FROM "gothic" WHERE "part_2"='band';
1-1745843-5
What is the 1st participle of the verb whose 4th participle is haitans?
CREATE TABLE "gothic" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "part_1" FROM "gothic" WHERE "part_4"='haitans';
1-1745843-5
For part 2 *lauk, what is listed for part 4?
CREATE TABLE "classes_1_to_6" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text, "usual_pie_origin" text );
SELECT "part_4" FROM "classes_1_to_6" WHERE "part_2"='*lauk';
1-1745843-2
What is the verb meaning for *bundun?
CREATE TABLE "classes_1_to_6" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text, "usual_pie_origin" text );
SELECT "verb_meaning" FROM "classes_1_to_6" WHERE "part_3"='*bundun';
1-1745843-2
For part 2 *raid, what is listed for part 3?
CREATE TABLE "classes_1_to_6" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text, "usual_pie_origin" text );
SELECT "part_3" FROM "classes_1_to_6" WHERE "part_2"='*raid';
1-1745843-2
What word is listed under part 2 for part 4 *ridanaz?
CREATE TABLE "classes_1_to_6" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text, "usual_pie_origin" text );
SELECT "part_2" FROM "classes_1_to_6" WHERE "part_4"='*ridanaz';
1-1745843-2
What is listed under part 1 for class 3b?
CREATE TABLE "classes_1_to_6" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text, "usual_pie_origin" text );
SELECT "part_1" FROM "classes_1_to_6" WHERE "class"='3b';
1-1745843-2
What class is the verb wich its part 4 is frosinn
CREATE TABLE "north_germanic" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "class" FROM "north_germanic" WHERE "part_4"='frosinn';
1-1745843-10
What class is the verb wich its part 3 is heldu
CREATE TABLE "north_germanic" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "class" FROM "north_germanic" WHERE "part_3"='heldu';
1-1745843-10
What is part 1 of the verb in class 7b
CREATE TABLE "north_germanic" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "part_1" FROM "north_germanic" WHERE "class"='7b';
1-1745843-10
What is part 1 of the verb in class 4
CREATE TABLE "north_germanic" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT "part_3" FROM "north_germanic" WHERE "class"='4';
1-1745843-10
How many verbs mean to bear
CREATE TABLE "north_germanic" ( "class" text, "part_1" text, "part_2" text, "part_3" text, "part_4" text, "verb_meaning" text );
SELECT COUNT("part_4") FROM "north_germanic" WHERE "verb_meaning"='to bear';
1-1745843-10