instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What was the number of seasons that was directed by Joanna Kerns?
The relevant table was constructed using the following SQL : CREATE TABLE table_17356106_1 (season__number VARCHAR, directed_by VARCHAR)
SELECT COUNT(season__number) FROM table_17356106_1 WHERE directed_by = "Joanna Kerns"
Write a SQL query that answers the following question: For series number 256, what was the original air date?
The relevant table was constructed using the following SQL : CREATE TABLE table_17356106_1 (original_air_date VARCHAR, series__number VARCHAR)
SELECT original_air_date FROM table_17356106_1 WHERE series__number = 256
Write a SQL query that answers the following question: What season episode is directed by Skipp Sudduth?
The relevant table was constructed using the following SQL : CREATE TABLE table_17356205_1 (season__number VARCHAR, directed_by VARCHAR)
SELECT season__number FROM table_17356205_1 WHERE directed_by = "Skipp Sudduth"
Write a SQL query that answers the following question: How many titles are given for the episode directed by Joanna Kerns?
The relevant table was constructed using the following SQL : CREATE TABLE table_17356205_1 (title VARCHAR, directed_by VARCHAR)
SELECT COUNT(title) FROM table_17356205_1 WHERE directed_by = "Joanna Kerns"
Write a SQL query that answers the following question: What is the original air date of the episode directed by Terrence Nightingall?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Which seasons were directed by Nelson McCormick?
The relevant table was constructed using the following SQL : CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_17355933_1 WHERE directed_by = "Nelson McCormick"
Write a SQL query that answers the following question: Which season titles were directed by Laura Innes?
The relevant table was constructed using the following SQL : CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_17355933_1 WHERE directed_by = "Laura Innes"
Write a SQL query that answers the following question: Which episodes did Nelson McCormick direct?
The relevant table was constructed using the following SQL : CREATE TABLE table_17355820_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_17355820_1 WHERE directed_by = "Nelson McCormick"
Write a SQL query that answers the following question: How many episodes were there in season 19?
The relevant table was constructed using the following SQL : CREATE TABLE table_17355820_1 (title VARCHAR, season__number VARCHAR)
SELECT COUNT(title) FROM table_17355820_1 WHERE season__number = 19
Write a SQL query that answers the following question: In which season did Paul McCrane first direct an episode?
The relevant table was constructed using the following SQL : CREATE TABLE table_17355820_1 (season__number INTEGER, directed_by VARCHAR)
SELECT MIN(season__number) FROM table_17355820_1 WHERE directed_by = "Paul McCrane"
Write a SQL query that answers the following question: On which dates did the episodes directed by TR Babu Subramaniam air?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What is the fewest number of games lost?
The relevant table was constructed using the following SQL : CREATE TABLE table_17357929_1 (lost INTEGER)
SELECT MIN(lost) FROM table_17357929_1
Write a SQL query that answers the following question: What is the goal average 1 for teams that lost 9 games?
The relevant table was constructed using the following SQL : CREATE TABLE table_17357929_1 (goal_average_1 VARCHAR, lost VARCHAR)
SELECT goal_average_1 FROM table_17357929_1 WHERE lost = 9
Write a SQL query that answers the following question: How many teams finished with a 2nd points total of 31?
The relevant table was constructed using the following SQL : CREATE TABLE table_17357929_1 (position VARCHAR, points_2 VARCHAR)
SELECT COUNT(position) FROM table_17357929_1 WHERE points_2 = 31
Write a SQL query that answers the following question: How many games drawn for the team that had 72 goals for?
The relevant table was constructed using the following SQL : CREATE TABLE table_17357929_1 (drawn INTEGER, goals_for VARCHAR)
SELECT MAX(drawn) FROM table_17357929_1 WHERE goals_for = 72
Write a SQL query that answers the following question: How many games with record 1-3-3
The relevant table was constructed using the following SQL : CREATE TABLE table_17360840_4 (game VARCHAR, record VARCHAR)
SELECT COUNT(game) FROM table_17360840_4 WHERE record = "1-3-3"
Write a SQL query that answers the following question: How many attended on mathches against atlanta thrashers
The relevant table was constructed using the following SQL : CREATE TABLE table_17360840_4 (attendance VARCHAR, opponent VARCHAR)
SELECT COUNT(attendance) FROM table_17360840_4 WHERE opponent = "Atlanta Thrashers"
Write a SQL query that answers the following question: Give the date of games against minnesota wild
The relevant table was constructed using the following SQL : CREATE TABLE table_17360840_4 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_17360840_4 WHERE opponent = "Minnesota Wild"
Write a SQL query that answers the following question: State the dates of games with record 1-2-3
The relevant table was constructed using the following SQL : CREATE TABLE table_17360840_4 (date VARCHAR, record VARCHAR)
SELECT date FROM table_17360840_4 WHERE record = "1-2-3"
Write a SQL query that answers the following question: What is the minimum attendance on games of record 0-2-1
The relevant table was constructed using the following SQL : CREATE TABLE table_17360840_4 (attendance INTEGER, record VARCHAR)
SELECT MIN(attendance) FROM table_17360840_4 WHERE record = "0-2-1"
Write a SQL query that answers the following question: Which venue does Mardan sponsor?
The relevant table was constructed using the following SQL : CREATE TABLE table_17356873_1 (venue VARCHAR, shirt_sponsor VARCHAR)
SELECT venue FROM table_17356873_1 WHERE shirt_sponsor = "Mardan"
Write a SQL query that answers the following question: Erdoğan Arıca is the head coach at what venue?
The relevant table was constructed using the following SQL : CREATE TABLE table_17356873_1 (venue VARCHAR, head_coach VARCHAR)
SELECT venue FROM table_17356873_1 WHERE head_coach = "Erdoğan Arıca"
Write a SQL query that answers the following question: How many points were scored when the record was 6-8-6?
The relevant table was constructed using the following SQL : CREATE TABLE table_17360840_5 (points VARCHAR, record VARCHAR)
SELECT COUNT(points) FROM table_17360840_5 WHERE record = "6-8-6"
Write a SQL query that answers the following question: Which game had a record of 6-9-7?
The relevant table was constructed using the following SQL : CREATE TABLE table_17360840_5 (game VARCHAR, record VARCHAR)
SELECT game FROM table_17360840_5 WHERE record = "6-9-7"
Write a SQL query that answers the following question: When they played at the Bankatlantic Center, what was their record?
The relevant table was constructed using the following SQL : CREATE TABLE table_17360840_5 (record VARCHAR, location VARCHAR)
SELECT record FROM table_17360840_5 WHERE location = "BankAtlantic Center"
Write a SQL query that answers the following question: Who was the opponent on December 27?
The relevant table was constructed using the following SQL : CREATE TABLE table_17360840_6 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_17360840_6 WHERE date = "December 27"
Write a SQL query that answers the following question: What was the score of the game on December 11?
The relevant table was constructed using the following SQL : CREATE TABLE table_17360840_6 (score VARCHAR, date VARCHAR)
SELECT score FROM table_17360840_6 WHERE date = "December 11"
Write a SQL query that answers the following question: What was the record when the opposing team was the Columbus Blue Jackets at St. Pete Times Forum?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What was the score when the record was 21-31-13?
The relevant table was constructed using the following SQL : CREATE TABLE table_17360840_9 (score VARCHAR, record VARCHAR)
SELECT score FROM table_17360840_9 WHERE record = "21-31-13"
Write a SQL query that answers the following question: How many locations were recorded when the opponent Columbus Blue Jackets?
The relevant table was constructed using the following SQL : CREATE TABLE table_17360840_9 (location VARCHAR, opponent VARCHAR)
SELECT COUNT(location) FROM table_17360840_9 WHERE opponent = "Columbus Blue Jackets"
Write a SQL query that answers the following question: What was the attendance when the opposing team was the Ottawa Senators and the record was 24-35-17?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: The player who plays left wing is from what college/junior/club team?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: The player who plays goaltender is from what college/junior/club team?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: How many were played when there were 39 tries for?
The relevant table was constructed using the following SQL : CREATE TABLE table_17369472_2 (played VARCHAR, tries_for VARCHAR)
SELECT played FROM table_17369472_2 WHERE tries_for = "39"
Write a SQL query that answers the following question: How many were won when the points were 12?
The relevant table was constructed using the following SQL : CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR)
SELECT COUNT(won) FROM table_17369472_2 WHERE points = "12"
Write a SQL query that answers the following question: How many were won when there were 49 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_17369472_2 (won VARCHAR, points VARCHAR)
SELECT won FROM table_17369472_2 WHERE points = "49"
Write a SQL query that answers the following question: How many points were there when tries for were 84?
The relevant table was constructed using the following SQL : CREATE TABLE table_17369472_2 (points VARCHAR, tries_for VARCHAR)
SELECT points FROM table_17369472_2 WHERE tries_for = "84"
Write a SQL query that answers the following question: what team play in february 18 in the supersonic season
The relevant table was constructed using the following SQL : CREATE TABLE table_17382360_7 (team VARCHAR, date VARCHAR)
SELECT team FROM table_17382360_7 WHERE date = "February 18"
Write a SQL query that answers the following question: what is the score in february 12 of the boston celtics team
The relevant table was constructed using the following SQL : CREATE TABLE table_17382360_7 (score VARCHAR, team VARCHAR)
SELECT score FROM table_17382360_7 WHERE team = "Boston Celtics"
Write a SQL query that answers the following question: Who is the opposing team when the game was played on the Shea Stadium?
The relevant table was constructed using the following SQL : CREATE TABLE table_17386066_2 (opponent VARCHAR, stadium VARCHAR)
SELECT opponent FROM table_17386066_2 WHERE stadium = "Shea stadium"
Write a SQL query that answers the following question: How many games or records were played on the Miami Orange Bowl?
The relevant table was constructed using the following SQL : CREATE TABLE table_17386066_2 (record VARCHAR, stadium VARCHAR)
SELECT COUNT(record) FROM table_17386066_2 WHERE stadium = "Miami Orange Bowl"
Write a SQL query that answers the following question: What was the result of the game that was played on Nov. 26, 1972?
The relevant table was constructed using the following SQL : CREATE TABLE table_17386066_2 (result VARCHAR, date VARCHAR)
SELECT result FROM table_17386066_2 WHERE date = "Nov. 26"
Write a SQL query that answers the following question: What are all Tamil months when the season in English is monsoon?
The relevant table was constructed using the following SQL : CREATE TABLE table_1740431_3 (tamil_months VARCHAR, season_in_english VARCHAR)
SELECT tamil_months FROM table_1740431_3 WHERE season_in_english = "Monsoon"
Write a SQL query that answers the following question: What is every English translation when Tamil months is Mārkazhi, Tai?
The relevant table was constructed using the following SQL : CREATE TABLE table_1740431_3 (english_translation VARCHAR, tamil_months VARCHAR)
SELECT english_translation FROM table_1740431_3 WHERE tamil_months = "mārkazhi, tai"
Write a SQL query that answers the following question: What is every Gregorian month when the season in Tamil is இளவேனில்?
The relevant table was constructed using the following SQL : CREATE TABLE table_1740431_3 (gregorian_months VARCHAR, season_in_tamil VARCHAR)
SELECT gregorian_months FROM table_1740431_3 WHERE season_in_tamil = "இளவேனில்"
Write a SQL query that answers the following question: How many seasons in Tamil occur when the season in Sanskrit is Grishma?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Which departments have M.Phil(Maths)?
The relevant table was constructed using the following SQL : CREATE TABLE table_17384764_1 (department VARCHAR, qualification VARCHAR)
SELECT department FROM table_17384764_1 WHERE qualification = "M.Phil(Maths)"
Write a SQL query that answers the following question: How many faculty members have 20 years of experience?
The relevant table was constructed using the following SQL : CREATE TABLE table_17384764_1 (designation VARCHAR, experience VARCHAR)
SELECT COUNT(designation) FROM table_17384764_1 WHERE experience = "20 years"
Write a SQL query that answers the following question: Name the power provided for transfer speed mb/s is 1250
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Name the devices per channel for 2560
The relevant table was constructed using the following SQL : 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
Write a SQL query that answers the following question: Name the power provided where transfer speed mb/s is 300 and max cable length of 10
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Name the colorado when alaska is connecticut
The relevant table was constructed using the following SQL : CREATE TABLE table_17425749_1 (colorado VARCHAR, alaska VARCHAR)
SELECT colorado FROM table_17425749_1 WHERE alaska = "Connecticut"
Write a SQL query that answers the following question: Name the california where alaska tennessee
The relevant table was constructed using the following SQL : CREATE TABLE table_17425749_1 (california VARCHAR, alaska VARCHAR)
SELECT california FROM table_17425749_1 WHERE alaska = "Tennessee"
Write a SQL query that answers the following question: Name the date for score of 95-101
The relevant table was constructed using the following SQL : CREATE TABLE table_17432028_1 (date VARCHAR, score VARCHAR)
SELECT date FROM table_17432028_1 WHERE score = "95-101"
Write a SQL query that answers the following question: Name the high rebounds for march 15
The relevant table was constructed using the following SQL : CREATE TABLE table_17432028_1 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_17432028_1 WHERE date = "March 15"
Write a SQL query that answers the following question: Name the score for record of 2-5
The relevant table was constructed using the following SQL : CREATE TABLE table_17432028_1 (score VARCHAR, record VARCHAR)
SELECT score FROM table_17432028_1 WHERE record = "2-5"
Write a SQL query that answers the following question: How many schools won their last occ championship in 2006?
The relevant table was constructed using the following SQL : CREATE TABLE table_17429402_7 (school VARCHAR, last_occ_championship VARCHAR)
SELECT COUNT(school) FROM table_17429402_7 WHERE last_occ_championship = "2006"
Write a SQL query that answers the following question: What are the years of participation for central crossing school?
The relevant table was constructed using the following SQL : CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR)
SELECT years_of_participation FROM table_17429402_7 WHERE school = "Central Crossing"
Write a SQL query that answers the following question: What is the fewest number of occ championships for the team that last won an outright occ championship in 2006?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What are the years of participation for pickerington north?
The relevant table was constructed using the following SQL : CREATE TABLE table_17429402_7 (years_of_participation VARCHAR, school VARCHAR)
SELECT years_of_participation FROM table_17429402_7 WHERE school = "Pickerington North"
Write a SQL query that answers the following question: Name the event for redouane bouchtouk
The relevant table was constructed using the following SQL : CREATE TABLE table_17417383_6 (event VARCHAR, athlete VARCHAR)
SELECT event FROM table_17417383_6 WHERE athlete = "Redouane Bouchtouk"
Write a SQL query that answers the following question: Name the round 16 for did not advance and light flyweight
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Name the athelte for enkhzorig ( mgl ) l 1–10
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: Who did Abdelhafid Benchebla face in the quarterfinals?
The relevant table was constructed using the following SQL : CREATE TABLE table_17427004_7 (quarterfinals VARCHAR, athlete VARCHAR)
SELECT quarterfinals FROM table_17427004_7 WHERE athlete = "Abdelhafid Benchebla"
Write a SQL query that answers the following question: Who did Nabil Kassel face in the Round of 32?
The relevant table was constructed using the following SQL : CREATE TABLE table_17427004_7 (round_of_32 VARCHAR, athlete VARCHAR)
SELECT round_of_32 FROM table_17427004_7 WHERE athlete = "Nabil Kassel"
Write a SQL query that answers the following question: How did Hamza Kramou fare in the semifinals?
The relevant table was constructed using the following SQL : CREATE TABLE table_17427004_7 (semifinals VARCHAR, athlete VARCHAR)
SELECT semifinals FROM table_17427004_7 WHERE athlete = "Hamza Kramou"
Write a SQL query that answers the following question: In what year did the winner of the FIS championship in 1982 win the Winter Olympics?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What year did Thorleif Haug win the Winter Olympics?
The relevant table was constructed using the following SQL : CREATE TABLE table_174491_1 (winter_olympics VARCHAR, winner VARCHAR)
SELECT winter_olympics FROM table_174491_1 WHERE winner = "Thorleif Haug"
Write a SQL query that answers the following question: What year did the man from Norway who won the Holmenkollen in 1958 win the FIS Nordic World Ski Championships?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What is the holmenkollen for the 1982 FIS Nordic World Ski Championships?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What years did Birger Ruud win the FIS Nordic World Ski Championships?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What year did Karl Schnabl win the Winter Olympics?
The relevant table was constructed using the following SQL : CREATE TABLE table_174491_2 (winter_olympics VARCHAR, winner VARCHAR)
SELECT winter_olympics FROM table_174491_2 WHERE winner = "Karl Schnabl"
Write a SQL query that answers the following question: What is the FIS Nordic World Ski Championships when holmenkollen is 1976?
The relevant table was constructed using the following SQL : 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"
Write a SQL query that answers the following question: What year is Winter Olympics when Holmenkollen is 1957, 1960?
The relevant table was constructed using the following SQL : CREATE TABLE table_174491_2 (winter_olympics VARCHAR, holmenkollen VARCHAR)
SELECT winter_olympics FROM table_174491_2 WHERE holmenkollen = "1957, 1960"
Write a SQL query that answers the following question: What's the part 4 for the verb whose part 3 is borgen?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_7 (part_4 VARCHAR, part_3 VARCHAR)
SELECT part_4 FROM table_1745843_7 WHERE part_3 = "borgen"
Write a SQL query that answers the following question: What's the meaning of the verb whose part 1 is slapen?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_7 (verb_meaning VARCHAR, part_1 VARCHAR)
SELECT verb_meaning FROM table_1745843_7 WHERE part_1 = "slapen"
Write a SQL query that answers the following question: In what class does the verb with part 4 gelopen belong to?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_7 (class VARCHAR, part_4 VARCHAR)
SELECT class FROM table_1745843_7 WHERE part_4 = "gelopen"
Write a SQL query that answers the following question: What's part 1 of the verb whose part 4 is gevroren?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_7 (part_1 VARCHAR, part_4 VARCHAR)
SELECT part_1 FROM table_1745843_7 WHERE part_4 = "gevroren"
Write a SQL query that answers the following question: How many different meanings does the verb with part 4 gegeven have?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_7 (verb_meaning VARCHAR, part_4 VARCHAR)
SELECT COUNT(verb_meaning) FROM table_1745843_7 WHERE part_4 = "gegeven"
Write a SQL query that answers the following question: What's the part 3 of the verb with part 4 gelopen?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_7 (part_3 VARCHAR, part_4 VARCHAR)
SELECT part_3 FROM table_1745843_7 WHERE part_4 = "gelopen"
Write a SQL query that answers the following question: How many different classes of verbs are there whose part 3 is lucon?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_6 (class VARCHAR, part_3 VARCHAR)
SELECT COUNT(class) FROM table_1745843_6 WHERE part_3 = "lucon"
Write a SQL query that answers the following question: What's the class of the verb whose part 1 is lesan?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_6 (class VARCHAR, part_1 VARCHAR)
SELECT class FROM table_1745843_6 WHERE part_1 = "lesan"
Write a SQL query that answers the following question: How many different part 3 verbs are there that mean to freeze?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_6 (part_3 VARCHAR, verb_meaning VARCHAR)
SELECT COUNT(part_3) FROM table_1745843_6 WHERE verb_meaning = "to freeze"
Write a SQL query that answers the following question: What's the part 3 of the verb whose class is 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_6 (part_3 VARCHAR, class VARCHAR)
SELECT part_3 FROM table_1745843_6 WHERE class = "4"
Write a SQL query that answers the following question: What's the part 3 of the verb in class 5?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_6 (part_3 VARCHAR, class VARCHAR)
SELECT part_3 FROM table_1745843_6 WHERE class = "5"
Write a SQL query that answers the following question: What is the class of the word who's second participle is laug?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_5 (class VARCHAR, part_2 VARCHAR)
SELECT class FROM table_1745843_5 WHERE part_2 = "laug"
Write a SQL query that answers the following question: What is the meaning of the class 6 verbs?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_5 (verb_meaning VARCHAR, class VARCHAR)
SELECT verb_meaning FROM table_1745843_5 WHERE class = "6"
Write a SQL query that answers the following question: What is the 3rd participle of the verb whose 2nd participle is band?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_5 (part_3 VARCHAR, part_2 VARCHAR)
SELECT part_3 FROM table_1745843_5 WHERE part_2 = "band"
Write a SQL query that answers the following question: What is the 1st participle of the verb whose 4th participle is haitans?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_5 (part_1 VARCHAR, part_4 VARCHAR)
SELECT part_1 FROM table_1745843_5 WHERE part_4 = "haitans"
Write a SQL query that answers the following question: For part 2 *lauk, what is listed for part 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_2 (part_4 VARCHAR, part_2 VARCHAR)
SELECT part_4 FROM table_1745843_2 WHERE part_2 = "*lauk"
Write a SQL query that answers the following question: What is the verb meaning for *bundun?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_2 (verb_meaning VARCHAR, part_3 VARCHAR)
SELECT verb_meaning FROM table_1745843_2 WHERE part_3 = "*bundun"
Write a SQL query that answers the following question: For part 2 *raid, what is listed for part 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_2 (part_3 VARCHAR, part_2 VARCHAR)
SELECT part_3 FROM table_1745843_2 WHERE part_2 = "*raid"
Write a SQL query that answers the following question: What word is listed under part 2 for part 4 *ridanaz?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_2 (part_2 VARCHAR, part_4 VARCHAR)
SELECT part_2 FROM table_1745843_2 WHERE part_4 = "*ridanaz"
Write a SQL query that answers the following question: What is listed under part 1 for class 3b?
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_2 (part_1 VARCHAR, class VARCHAR)
SELECT part_1 FROM table_1745843_2 WHERE class = "3b"
Write a SQL query that answers the following question: What class is the verb wich its part 4 is frosinn
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_10 (class VARCHAR, part_4 VARCHAR)
SELECT class FROM table_1745843_10 WHERE part_4 = "frosinn"
Write a SQL query that answers the following question: What class is the verb wich its part 3 is heldu
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_10 (class VARCHAR, part_3 VARCHAR)
SELECT class FROM table_1745843_10 WHERE part_3 = "heldu"
Write a SQL query that answers the following question: What is part 1 of the verb in class 7b
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_10 (part_1 VARCHAR, class VARCHAR)
SELECT part_1 FROM table_1745843_10 WHERE class = "7b"
Write a SQL query that answers the following question: What is part 1 of the verb in class 4
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_10 (part_3 VARCHAR, class VARCHAR)
SELECT part_3 FROM table_1745843_10 WHERE class = "4"
Write a SQL query that answers the following question: How many verbs mean to bear
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_10 (part_4 VARCHAR, verb_meaning VARCHAR)
SELECT COUNT(part_4) FROM table_1745843_10 WHERE verb_meaning = "to bear"
Write a SQL query that answers the following question: How many verbs mean to grow, to produce
The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_10 (part_1 VARCHAR, verb_meaning VARCHAR)
SELECT COUNT(part_1) FROM table_1745843_10 WHERE verb_meaning = "to grow, to produce"