question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What's the dipole moment of ethyl acetate (etoac)? | CREATE TABLE table_name_78 (dipole_moment___d__ VARCHAR, solvent VARCHAR) | SELECT dipole_moment___d__ FROM table_name_78 WHERE solvent = "ethyl acetate (etoac)" | ### Context: CREATE TABLE table_name_78 (dipole_moment___d__ VARCHAR, solvent VARCHAR) ### Question: What's the dipole moment of ethyl acetate (etoac)? ### Answer: SELECT dipole_moment___d__ FROM table_name_78 WHERE solvent = "ethyl acetate (etoac)" |
what's the boiling point of diethyl ether? | CREATE TABLE table_name_74 (boiling_point VARCHAR, solvent VARCHAR) | SELECT boiling_point FROM table_name_74 WHERE solvent = "diethyl ether" | ### Context: CREATE TABLE table_name_74 (boiling_point VARCHAR, solvent VARCHAR) ### Question: what's the boiling point of diethyl ether? ### Answer: SELECT boiling_point FROM table_name_74 WHERE solvent = "diethyl ether" |
What is Type, when Works Number is 75823? | CREATE TABLE table_name_16 (type VARCHAR, works_number VARCHAR) | SELECT type FROM table_name_16 WHERE works_number = "75823" | ### Context: CREATE TABLE table_name_16 (type VARCHAR, works_number VARCHAR) ### Question: What is Type, when Works Number is 75823? ### Answer: SELECT type FROM table_name_16 WHERE works_number = "75823" |
What is Date, when Type is DS4-4-750, and when Works Number is 74409? | CREATE TABLE table_name_93 (date VARCHAR, type VARCHAR, works_number VARCHAR) | SELECT date FROM table_name_93 WHERE type = "ds4-4-750" AND works_number = "74409" | ### Context: CREATE TABLE table_name_93 (date VARCHAR, type VARCHAR, works_number VARCHAR) ### Question: What is Date, when Type is DS4-4-750, and when Works Number is 74409? ### Answer: SELECT date FROM table_name_93 WHERE type = "ds4-4-750" AND works_number = "74409" |
What is Works Number, when Type is RS-11, and when Number is 61? | CREATE TABLE table_name_7 (works_number VARCHAR, type VARCHAR, number VARCHAR) | SELECT works_number FROM table_name_7 WHERE type = "rs-11" AND number = "61" | ### Context: CREATE TABLE table_name_7 (works_number VARCHAR, type VARCHAR, number VARCHAR) ### Question: What is Works Number, when Type is RS-11, and when Number is 61? ### Answer: SELECT works_number FROM table_name_7 WHERE type = "rs-11" AND number = "61" |
What is Builder, when Date is 1925? | CREATE TABLE table_name_21 (builder VARCHAR, date VARCHAR) | SELECT builder FROM table_name_21 WHERE date = "1925" | ### Context: CREATE TABLE table_name_21 (builder VARCHAR, date VARCHAR) ### Question: What is Builder, when Date is 1925? ### Answer: SELECT builder FROM table_name_21 WHERE date = "1925" |
What is Works Number, when Number is 55? | CREATE TABLE table_name_44 (works_number VARCHAR, number VARCHAR) | SELECT works_number FROM table_name_44 WHERE number = "55" | ### Context: CREATE TABLE table_name_44 (works_number VARCHAR, number VARCHAR) ### Question: What is Works Number, when Number is 55? ### Answer: SELECT works_number FROM table_name_44 WHERE number = "55" |
What is Builder, when Date is 1953? | CREATE TABLE table_name_71 (builder VARCHAR, date VARCHAR) | SELECT builder FROM table_name_71 WHERE date = "1953" | ### Context: CREATE TABLE table_name_71 (builder VARCHAR, date VARCHAR) ### Question: What is Builder, when Date is 1953? ### Answer: SELECT builder FROM table_name_71 WHERE date = "1953" |
Which Attendance is the lowest one that has a Record of 5β5β0? | CREATE TABLE table_name_77 (attendance INTEGER, record VARCHAR) | SELECT MIN(attendance) FROM table_name_77 WHERE record = "5β5β0" | ### Context: CREATE TABLE table_name_77 (attendance INTEGER, record VARCHAR) ### Question: Which Attendance is the lowest one that has a Record of 5β5β0? ### Answer: SELECT MIN(attendance) FROM table_name_77 WHERE record = "5β5β0" |
Which Date has a Record of 4β2β0? | CREATE TABLE table_name_68 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_68 WHERE record = "4β2β0" | ### Context: CREATE TABLE table_name_68 (date VARCHAR, record VARCHAR) ### Question: Which Date has a Record of 4β2β0? ### Answer: SELECT date FROM table_name_68 WHERE record = "4β2β0" |
Which Record has a Visitor of pittsburgh, and a Score of 4β0? | CREATE TABLE table_name_23 (record VARCHAR, visitor VARCHAR, score VARCHAR) | SELECT record FROM table_name_23 WHERE visitor = "pittsburgh" AND score = "4β0" | ### Context: CREATE TABLE table_name_23 (record VARCHAR, visitor VARCHAR, score VARCHAR) ### Question: Which Record has a Visitor of pittsburgh, and a Score of 4β0? ### Answer: SELECT record FROM table_name_23 WHERE visitor = "pittsburgh" AND score = "4β0" |
What was the away team score when Waverley Park was the ground and the home team was collingwood? | CREATE TABLE table_name_80 (away_team VARCHAR, ground VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_80 WHERE ground = "waverley park" AND home_team = "collingwood" | ### Context: CREATE TABLE table_name_80 (away_team VARCHAR, ground VARCHAR, home_team VARCHAR) ### Question: What was the away team score when Waverley Park was the ground and the home team was collingwood? ### Answer: SELECT away_team AS score FROM table_name_80 WHERE ground = "waverley park" AND home_team = "collingwood" |
From what country did someone score 71? | CREATE TABLE table_name_72 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_72 WHERE score = 71 | ### Context: CREATE TABLE table_name_72 (country VARCHAR, score VARCHAR) ### Question: From what country did someone score 71? ### Answer: SELECT country FROM table_name_72 WHERE score = 71 |
What is the attendance sum of the game on March 16, 1990 with a loss record? | CREATE TABLE table_name_40 (attendance INTEGER, record VARCHAR, date VARCHAR) | SELECT SUM(attendance) FROM table_name_40 WHERE record = "loss" AND date = "march 16, 1990" | ### Context: CREATE TABLE table_name_40 (attendance INTEGER, record VARCHAR, date VARCHAR) ### Question: What is the attendance sum of the game on March 16, 1990 with a loss record? ### Answer: SELECT SUM(attendance) FROM table_name_40 WHERE record = "loss" AND date = "march 16, 1990" |
What was the outcome of the match on August 20, 1978? | CREATE TABLE table_name_53 (outcome VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_53 WHERE date = "august 20, 1978" | ### Context: CREATE TABLE table_name_53 (outcome VARCHAR, date VARCHAR) ### Question: What was the outcome of the match on August 20, 1978? ### Answer: SELECT outcome FROM table_name_53 WHERE date = "august 20, 1978" |
Which Round has a Pick smaller than 6? | CREATE TABLE table_name_77 (round INTEGER, pick INTEGER) | SELECT SUM(round) FROM table_name_77 WHERE pick < 6 | ### Context: CREATE TABLE table_name_77 (round INTEGER, pick INTEGER) ### Question: Which Round has a Pick smaller than 6? ### Answer: SELECT SUM(round) FROM table_name_77 WHERE pick < 6 |
Which Round has an Overall smaller than 6? | CREATE TABLE table_name_84 (round INTEGER, overall INTEGER) | SELECT MAX(round) FROM table_name_84 WHERE overall < 6 | ### Context: CREATE TABLE table_name_84 (round INTEGER, overall INTEGER) ### Question: Which Round has an Overall smaller than 6? ### Answer: SELECT MAX(round) FROM table_name_84 WHERE overall < 6 |
Which Position has a College of washington, and an Overall of 46? | CREATE TABLE table_name_18 (position VARCHAR, college VARCHAR, overall VARCHAR) | SELECT position FROM table_name_18 WHERE college = "washington" AND overall = 46 | ### Context: CREATE TABLE table_name_18 (position VARCHAR, college VARCHAR, overall VARCHAR) ### Question: Which Position has a College of washington, and an Overall of 46? ### Answer: SELECT position FROM table_name_18 WHERE college = "washington" AND overall = 46 |
Which Round has a Position of qb, and an Overall larger than 6? | CREATE TABLE table_name_17 (round INTEGER, position VARCHAR, overall VARCHAR) | SELECT MAX(round) FROM table_name_17 WHERE position = "qb" AND overall > 6 | ### Context: CREATE TABLE table_name_17 (round INTEGER, position VARCHAR, overall VARCHAR) ### Question: Which Round has a Position of qb, and an Overall larger than 6? ### Answer: SELECT MAX(round) FROM table_name_17 WHERE position = "qb" AND overall > 6 |
What date was Bury the home team? | CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_67 WHERE away_team = "bury" | ### Context: CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR) ### Question: What date was Bury the home team? ### Answer: SELECT date FROM table_name_67 WHERE away_team = "bury" |
What team was the home team when Tottenham Hotspur is the away team? | CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_86 WHERE away_team = "tottenham hotspur" | ### Context: CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR) ### Question: What team was the home team when Tottenham Hotspur is the away team? ### Answer: SELECT home_team FROM table_name_86 WHERE away_team = "tottenham hotspur" |
What college did the #22 overall draft pick attend? | CREATE TABLE table_name_39 (college VARCHAR, pick__number VARCHAR) | SELECT college FROM table_name_39 WHERE pick__number = 22 | ### Context: CREATE TABLE table_name_39 (college VARCHAR, pick__number VARCHAR) ### Question: What college did the #22 overall draft pick attend? ### Answer: SELECT college FROM table_name_39 WHERE pick__number = 22 |
What draft pick number attended syracuse and was drafted by the Carolina panthers? | CREATE TABLE table_name_38 (pick__number INTEGER, nfl_team VARCHAR, college VARCHAR) | SELECT SUM(pick__number) FROM table_name_38 WHERE nfl_team = "carolina panthers" AND college = "syracuse" | ### Context: CREATE TABLE table_name_38 (pick__number INTEGER, nfl_team VARCHAR, college VARCHAR) ### Question: What draft pick number attended syracuse and was drafted by the Carolina panthers? ### Answer: SELECT SUM(pick__number) FROM table_name_38 WHERE nfl_team = "carolina panthers" AND college = "syracuse" |
Which Lead Margin has a Poll Source of rasmussen reports/ fox news? | CREATE TABLE table_name_75 (lead_margin INTEGER, poll_source VARCHAR) | SELECT MIN(lead_margin) FROM table_name_75 WHERE poll_source = "rasmussen reports/ fox news" | ### Context: CREATE TABLE table_name_75 (lead_margin INTEGER, poll_source VARCHAR) ### Question: Which Lead Margin has a Poll Source of rasmussen reports/ fox news? ### Answer: SELECT MIN(lead_margin) FROM table_name_75 WHERE poll_source = "rasmussen reports/ fox news" |
Which Poll Source has a Date administered of october 30 β november 2, 2008? | CREATE TABLE table_name_18 (poll_source VARCHAR, date_administered VARCHAR) | SELECT poll_source FROM table_name_18 WHERE date_administered = "october 30 β november 2, 2008" | ### Context: CREATE TABLE table_name_18 (poll_source VARCHAR, date_administered VARCHAR) ### Question: Which Poll Source has a Date administered of october 30 β november 2, 2008? ### Answer: SELECT poll_source FROM table_name_18 WHERE date_administered = "october 30 β november 2, 2008" |
At which site was Northwestern an opponent? | CREATE TABLE table_name_67 (site VARCHAR, opponent_number VARCHAR) | SELECT site FROM table_name_67 WHERE opponent_number = "northwestern" | ### Context: CREATE TABLE table_name_67 (site VARCHAR, opponent_number VARCHAR) ### Question: At which site was Northwestern an opponent? ### Answer: SELECT site FROM table_name_67 WHERE opponent_number = "northwestern" |
What result did Indiana have when they were an opponent? | CREATE TABLE table_name_78 (result VARCHAR, opponent_number VARCHAR) | SELECT result FROM table_name_78 WHERE opponent_number = "indiana" | ### Context: CREATE TABLE table_name_78 (result VARCHAR, opponent_number VARCHAR) ### Question: What result did Indiana have when they were an opponent? ### Answer: SELECT result FROM table_name_78 WHERE opponent_number = "indiana" |
What is the attendance when the result was w61-7? | CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_12 WHERE result = "w61-7" | ### Context: CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR) ### Question: What is the attendance when the result was w61-7? ### Answer: SELECT attendance FROM table_name_12 WHERE result = "w61-7" |
What shows for miles [One Way] when the fans took 340? | CREATE TABLE table_name_89 (one_way VARCHAR, miles_ INTEGER, fans_took VARCHAR) | SELECT AVG(miles_)[one_way] FROM table_name_89 WHERE fans_took = "340" | ### Context: CREATE TABLE table_name_89 (one_way VARCHAR, miles_ INTEGER, fans_took VARCHAR) ### Question: What shows for miles [One Way] when the fans took 340? ### Answer: SELECT AVG(miles_)[one_way] FROM table_name_89 WHERE fans_took = "340" |
what is the reported birth date when the reported age is 110 years, 185 days? | CREATE TABLE table_name_58 (reported_birth_date VARCHAR, reported_age VARCHAR) | SELECT reported_birth_date FROM table_name_58 WHERE reported_age = "110 years, 185 days" | ### Context: CREATE TABLE table_name_58 (reported_birth_date VARCHAR, reported_age VARCHAR) ### Question: what is the reported birth date when the reported age is 110 years, 185 days? ### Answer: SELECT reported_birth_date FROM table_name_58 WHERE reported_age = "110 years, 185 days" |
what is the reported age when the reported birth date is 22 december 1878? | CREATE TABLE table_name_62 (reported_age VARCHAR, reported_birth_date VARCHAR) | SELECT reported_age FROM table_name_62 WHERE reported_birth_date = "22 december 1878" | ### Context: CREATE TABLE table_name_62 (reported_age VARCHAR, reported_birth_date VARCHAR) ### Question: what is the reported age when the reported birth date is 22 december 1878? ### Answer: SELECT reported_age FROM table_name_62 WHERE reported_birth_date = "22 december 1878" |
what is the region when the reported age is 111 years, 107 days? | CREATE TABLE table_name_50 (region VARCHAR, reported_age VARCHAR) | SELECT region FROM table_name_50 WHERE reported_age = "111 years, 107 days" | ### Context: CREATE TABLE table_name_50 (region VARCHAR, reported_age VARCHAR) ### Question: what is the region when the reported age is 111 years, 107 days? ### Answer: SELECT region FROM table_name_50 WHERE reported_age = "111 years, 107 days" |
what is the reported death date for laura svehaug? | CREATE TABLE table_name_97 (reported_death_date VARCHAR, name VARCHAR) | SELECT reported_death_date FROM table_name_97 WHERE name = "laura svehaug" | ### Context: CREATE TABLE table_name_97 (reported_death_date VARCHAR, name VARCHAR) ### Question: what is the reported death date for laura svehaug? ### Answer: SELECT reported_death_date FROM table_name_97 WHERE name = "laura svehaug" |
Who has a reported age of 111 years, 66 days? | CREATE TABLE table_name_38 (name VARCHAR, reported_age VARCHAR) | SELECT name FROM table_name_38 WHERE reported_age = "111 years, 66 days" | ### Context: CREATE TABLE table_name_38 (name VARCHAR, reported_age VARCHAR) ### Question: Who has a reported age of 111 years, 66 days? ### Answer: SELECT name FROM table_name_38 WHERE reported_age = "111 years, 66 days" |
Who has a reported death of 6 march 1998? | CREATE TABLE table_name_63 (name VARCHAR, reported_death_date VARCHAR) | SELECT name FROM table_name_63 WHERE reported_death_date = "6 march 1998" | ### Context: CREATE TABLE table_name_63 (name VARCHAR, reported_death_date VARCHAR) ### Question: Who has a reported death of 6 march 1998? ### Answer: SELECT name FROM table_name_63 WHERE reported_death_date = "6 march 1998" |
Date for less than 122 countries and a 47% rank? | CREATE TABLE table_name_60 (date VARCHAR, countries_surveyed VARCHAR, _percentage_rank VARCHAR) | SELECT date FROM table_name_60 WHERE countries_surveyed < 122 AND _percentage_rank = "47" | ### Context: CREATE TABLE table_name_60 (date VARCHAR, countries_surveyed VARCHAR, _percentage_rank VARCHAR) ### Question: Date for less than 122 countries and a 47% rank? ### Answer: SELECT date FROM table_name_60 WHERE countries_surveyed < 122 AND _percentage_rank = "47" |
What high assists has the high points of andrew bynum (23)? | CREATE TABLE table_name_71 (high_assists VARCHAR, high_points VARCHAR) | SELECT high_assists FROM table_name_71 WHERE high_points = "andrew bynum (23)" | ### Context: CREATE TABLE table_name_71 (high_assists VARCHAR, high_points VARCHAR) ### Question: What high assists has the high points of andrew bynum (23)? ### Answer: SELECT high_assists FROM table_name_71 WHERE high_points = "andrew bynum (23)" |
What score is the team of charlotte? | CREATE TABLE table_name_48 (score VARCHAR, team VARCHAR) | SELECT score FROM table_name_48 WHERE team = "charlotte" | ### Context: CREATE TABLE table_name_48 (score VARCHAR, team VARCHAR) ### Question: What score is the team of charlotte? ### Answer: SELECT score FROM table_name_48 WHERE team = "charlotte" |
What was strikeforce: barnett vs. cormier's record? | CREATE TABLE table_name_26 (record VARCHAR, event VARCHAR) | SELECT record FROM table_name_26 WHERE event = "strikeforce: barnett vs. cormier" | ### Context: CREATE TABLE table_name_26 (record VARCHAR, event VARCHAR) ### Question: What was strikeforce: barnett vs. cormier's record? ### Answer: SELECT record FROM table_name_26 WHERE event = "strikeforce: barnett vs. cormier" |
What is the total of q > 1.4 when q > 1.3 is 455, and q >1.2 is less than 3,028? | CREATE TABLE table_name_51 (q_ INTEGER) | SELECT SUM(q_) > _1.4 FROM table_name_51 WHERE q_ > _1.3 = 455 AND q_ > _1.2 < 3 OFFSET 028 | ### Context: CREATE TABLE table_name_51 (q_ INTEGER) ### Question: What is the total of q > 1.4 when q > 1.3 is 455, and q >1.2 is less than 3,028? ### Answer: SELECT SUM(q_) > _1.4 FROM table_name_51 WHERE q_ > _1.3 = 455 AND q_ > _1.2 < 3 OFFSET 028 |
Who was the losing team with a total of 24 when the winning team was Sydney Roosters? | CREATE TABLE table_name_44 (losing_team VARCHAR, total VARCHAR, winning_team VARCHAR) | SELECT losing_team FROM table_name_44 WHERE total = 24 AND winning_team = "sydney roosters" | ### Context: CREATE TABLE table_name_44 (losing_team VARCHAR, total VARCHAR, winning_team VARCHAR) ### Question: Who was the losing team with a total of 24 when the winning team was Sydney Roosters? ### Answer: SELECT losing_team FROM table_name_44 WHERE total = 24 AND winning_team = "sydney roosters" |
Which venue had a losing team of south sydney rabbitohs? | CREATE TABLE table_name_16 (venue VARCHAR, losing_team VARCHAR) | SELECT venue FROM table_name_16 WHERE losing_team = "south sydney rabbitohs" | ### Context: CREATE TABLE table_name_16 (venue VARCHAR, losing_team VARCHAR) ### Question: Which venue had a losing team of south sydney rabbitohs? ### Answer: SELECT venue FROM table_name_16 WHERE losing_team = "south sydney rabbitohs" |
What day was the total smaller than 19 at Venue of anz stadium? | CREATE TABLE table_name_42 (date VARCHAR, total VARCHAR, venue VARCHAR) | SELECT date FROM table_name_42 WHERE total < 19 AND venue = "anz stadium" | ### Context: CREATE TABLE table_name_42 (date VARCHAR, total VARCHAR, venue VARCHAR) ### Question: What day was the total smaller than 19 at Venue of anz stadium? ### Answer: SELECT date FROM table_name_42 WHERE total < 19 AND venue = "anz stadium" |
What was the Attendance before Week 17 with a Record of Bye? | CREATE TABLE table_name_77 (attendance VARCHAR, week VARCHAR, record VARCHAR) | SELECT attendance FROM table_name_77 WHERE week < 17 AND record = "bye" | ### Context: CREATE TABLE table_name_77 (attendance VARCHAR, week VARCHAR, record VARCHAR) ### Question: What was the Attendance before Week 17 with a Record of Bye? ### Answer: SELECT attendance FROM table_name_77 WHERE week < 17 AND record = "bye" |
What is the Kickoff Time on January 7, 2002? | CREATE TABLE table_name_72 (kickoff_time VARCHAR, date VARCHAR) | SELECT kickoff_time FROM table_name_72 WHERE date = "january 7, 2002" | ### Context: CREATE TABLE table_name_72 (kickoff_time VARCHAR, date VARCHAR) ### Question: What is the Kickoff Time on January 7, 2002? ### Answer: SELECT kickoff_time FROM table_name_72 WHERE date = "january 7, 2002" |
What was the Opponent in the game with a Result of L 24β14? | CREATE TABLE table_name_38 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_38 WHERE result = "l 24β14" | ### Context: CREATE TABLE table_name_38 (opponent VARCHAR, result VARCHAR) ### Question: What was the Opponent in the game with a Result of L 24β14? ### Answer: SELECT opponent FROM table_name_38 WHERE result = "l 24β14" |
What was the Result of the game with an Attendance of 69,365? | CREATE TABLE table_name_46 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_46 WHERE attendance = "69,365" | ### Context: CREATE TABLE table_name_46 (result VARCHAR, attendance VARCHAR) ### Question: What was the Result of the game with an Attendance of 69,365? ### Answer: SELECT result FROM table_name_46 WHERE attendance = "69,365" |
Which event won by KCLMS in 2008 has KCLMS as the winner and less than 10 wins by KCL? | CREATE TABLE table_name_74 (events_won_by_kcl VARCHAR, year VARCHAR, winner VARCHAR, events_won_by_kclMS VARCHAR) | SELECT events_won_by_kcl FROM table_name_74 WHERE winner = "kclms" AND events_won_by_kclMS < 10 AND year = 2008 | ### Context: CREATE TABLE table_name_74 (events_won_by_kcl VARCHAR, year VARCHAR, winner VARCHAR, events_won_by_kclMS VARCHAR) ### Question: Which event won by KCLMS in 2008 has KCLMS as the winner and less than 10 wins by KCL? ### Answer: SELECT events_won_by_kcl FROM table_name_74 WHERE winner = "kclms" AND events_won_by_kclMS < 10 AND year = 2008 |
How many years were the events won by KCLMS less than 7? | CREATE TABLE table_name_8 (year VARCHAR, events_won_by_kclMS INTEGER) | SELECT COUNT(year) FROM table_name_8 WHERE events_won_by_kclMS < 7 | ### Context: CREATE TABLE table_name_8 (year VARCHAR, events_won_by_kclMS INTEGER) ### Question: How many years were the events won by KCLMS less than 7? ### Answer: SELECT COUNT(year) FROM table_name_8 WHERE events_won_by_kclMS < 7 |
What is the average value for events won by KCL in a year earlier than 2004? | CREATE TABLE table_name_58 (events_won_by_kcl INTEGER, year INTEGER) | SELECT AVG(events_won_by_kcl) FROM table_name_58 WHERE year < 2004 | ### Context: CREATE TABLE table_name_58 (events_won_by_kcl INTEGER, year INTEGER) ### Question: What is the average value for events won by KCL in a year earlier than 2004? ### Answer: SELECT AVG(events_won_by_kcl) FROM table_name_58 WHERE year < 2004 |
What is the appointment day for 4 December 2008 vacancy? | CREATE TABLE table_name_40 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR) | SELECT date_of_appointment FROM table_name_40 WHERE date_of_vacancy = "4 december 2008" | ### Context: CREATE TABLE table_name_40 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR) ### Question: What is the appointment day for 4 December 2008 vacancy? ### Answer: SELECT date_of_appointment FROM table_name_40 WHERE date_of_vacancy = "4 december 2008" |
Which outgoing manager has tabled 16th position? | CREATE TABLE table_name_83 (outgoing_manager VARCHAR, position_in_table VARCHAR) | SELECT outgoing_manager FROM table_name_83 WHERE position_in_table = "16th" | ### Context: CREATE TABLE table_name_83 (outgoing_manager VARCHAR, position_in_table VARCHAR) ### Question: Which outgoing manager has tabled 16th position? ### Answer: SELECT outgoing_manager FROM table_name_83 WHERE position_in_table = "16th" |
Which position is team mons who was replaced by Christophe Dessy (caretaker)? | CREATE TABLE table_name_91 (position_in_table VARCHAR, team VARCHAR, replaced_by VARCHAR) | SELECT position_in_table FROM table_name_91 WHERE team = "mons" AND replaced_by = "christophe dessy (caretaker)" | ### Context: CREATE TABLE table_name_91 (position_in_table VARCHAR, team VARCHAR, replaced_by VARCHAR) ### Question: Which position is team mons who was replaced by Christophe Dessy (caretaker)? ### Answer: SELECT position_in_table FROM table_name_91 WHERE team = "mons" AND replaced_by = "christophe dessy (caretaker)" |
What is the table position for 4 December 2008 vacancy? | CREATE TABLE table_name_13 (position_in_table VARCHAR, date_of_vacancy VARCHAR) | SELECT position_in_table FROM table_name_13 WHERE date_of_vacancy = "4 december 2008" | ### Context: CREATE TABLE table_name_13 (position_in_table VARCHAR, date_of_vacancy VARCHAR) ### Question: What is the table position for 4 December 2008 vacancy? ### Answer: SELECT position_in_table FROM table_name_13 WHERE date_of_vacancy = "4 december 2008" |
How many laps have 50 points? | CREATE TABLE table_name_65 (laps VARCHAR, points VARCHAR) | SELECT laps FROM table_name_65 WHERE points = "50" | ### Context: CREATE TABLE table_name_65 (laps VARCHAR, points VARCHAR) ### Question: How many laps have 50 points? ### Answer: SELECT laps FROM table_name_65 WHERE points = "50" |
What is the grid of team dreyer & reinbold racing, which has 26 points? | CREATE TABLE table_name_14 (grid VARCHAR, team VARCHAR, points VARCHAR) | SELECT grid FROM table_name_14 WHERE team = "dreyer & reinbold racing" AND points = "26" | ### Context: CREATE TABLE table_name_14 (grid VARCHAR, team VARCHAR, points VARCHAR) ### Question: What is the grid of team dreyer & reinbold racing, which has 26 points? ### Answer: SELECT grid FROM table_name_14 WHERE team = "dreyer & reinbold racing" AND points = "26" |
How many points have 75 laps? | CREATE TABLE table_name_6 (points VARCHAR, laps VARCHAR) | SELECT points FROM table_name_6 WHERE laps = "75" | ### Context: CREATE TABLE table_name_6 (points VARCHAR, laps VARCHAR) ### Question: How many points have 75 laps? ### Answer: SELECT points FROM table_name_6 WHERE laps = "75" |
How many points have 88 laps and a grid of 14? | CREATE TABLE table_name_99 (points VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT points FROM table_name_99 WHERE laps = "88" AND grid = "14" | ### Context: CREATE TABLE table_name_99 (points VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: How many points have 88 laps and a grid of 14? ### Answer: SELECT points FROM table_name_99 WHERE laps = "88" AND grid = "14" |
How many laps have a +0.4865 time/retired? | CREATE TABLE table_name_34 (laps VARCHAR, time_retired VARCHAR) | SELECT laps FROM table_name_34 WHERE time_retired = "+0.4865" | ### Context: CREATE TABLE table_name_34 (laps VARCHAR, time_retired VARCHAR) ### Question: How many laps have a +0.4865 time/retired? ### Answer: SELECT laps FROM table_name_34 WHERE time_retired = "+0.4865" |
When did the ATV that deorbited on 29 september 2008, launch? | CREATE TABLE table_name_93 (launch_date VARCHAR, deorbit_date VARCHAR) | SELECT launch_date FROM table_name_93 WHERE deorbit_date = "29 september 2008" | ### Context: CREATE TABLE table_name_93 (launch_date VARCHAR, deorbit_date VARCHAR) ### Question: When did the ATV that deorbited on 29 september 2008, launch? ### Answer: SELECT launch_date FROM table_name_93 WHERE deorbit_date = "29 september 2008" |
When did the atv-002 launch? | CREATE TABLE table_name_22 (launch_date VARCHAR, designation VARCHAR) | SELECT launch_date FROM table_name_22 WHERE designation = "atv-002" | ### Context: CREATE TABLE table_name_22 (launch_date VARCHAR, designation VARCHAR) ### Question: When did the atv-002 launch? ### Answer: SELECT launch_date FROM table_name_22 WHERE designation = "atv-002" |
When did Edoardo Amaldi launch? | CREATE TABLE table_name_25 (launch_date VARCHAR, name VARCHAR) | SELECT launch_date FROM table_name_25 WHERE name = "edoardo amaldi" | ### Context: CREATE TABLE table_name_25 (launch_date VARCHAR, name VARCHAR) ### Question: When did Edoardo Amaldi launch? ### Answer: SELECT launch_date FROM table_name_25 WHERE name = "edoardo amaldi" |
When did the ATV that launched on 9 March 2008, deorbit? | CREATE TABLE table_name_9 (deorbit_date VARCHAR, launch_date VARCHAR) | SELECT deorbit_date FROM table_name_9 WHERE launch_date = "9 march 2008" | ### Context: CREATE TABLE table_name_9 (deorbit_date VARCHAR, launch_date VARCHAR) ### Question: When did the ATV that launched on 9 March 2008, deorbit? ### Answer: SELECT deorbit_date FROM table_name_9 WHERE launch_date = "9 march 2008" |
Who was the partner on the game which took place on a clay surface with opponents of marco chiudinelli michael lammer and a runner-up result? | CREATE TABLE table_name_74 (partner VARCHAR, opponents VARCHAR, outcome VARCHAR, surface VARCHAR) | SELECT partner FROM table_name_74 WHERE outcome = "runner-up" AND surface = "clay" AND opponents = "marco chiudinelli michael lammer" | ### Context: CREATE TABLE table_name_74 (partner VARCHAR, opponents VARCHAR, outcome VARCHAR, surface VARCHAR) ### Question: Who was the partner on the game which took place on a clay surface with opponents of marco chiudinelli michael lammer and a runner-up result? ### Answer: SELECT partner FROM table_name_74 WHERE outcome = "runner-up" AND surface = "clay" AND opponents = "marco chiudinelli michael lammer" |
Who were the opponent in the match on a clay surface that had a score of 6β3, 7β6 (11β9)? | CREATE TABLE table_name_84 (opponents VARCHAR, surface VARCHAR, score VARCHAR) | SELECT opponents FROM table_name_84 WHERE surface = "clay" AND score = "6β3, 7β6 (11β9)" | ### Context: CREATE TABLE table_name_84 (opponents VARCHAR, surface VARCHAR, score VARCHAR) ### Question: Who were the opponent in the match on a clay surface that had a score of 6β3, 7β6 (11β9)? ### Answer: SELECT opponents FROM table_name_84 WHERE surface = "clay" AND score = "6β3, 7β6 (11β9)" |
What is Season, when Races is less than 16? | CREATE TABLE table_name_7 (season VARCHAR, races INTEGER) | SELECT season FROM table_name_7 WHERE races < 16 | ### Context: CREATE TABLE table_name_7 (season VARCHAR, races INTEGER) ### Question: What is Season, when Races is less than 16? ### Answer: SELECT season FROM table_name_7 WHERE races < 16 |
What is the sum of Poles, when Podiums is 0, and when Races is 17? | CREATE TABLE table_name_35 (poles INTEGER, podiums VARCHAR, races VARCHAR) | SELECT SUM(poles) FROM table_name_35 WHERE podiums = 0 AND races = 17 | ### Context: CREATE TABLE table_name_35 (poles INTEGER, podiums VARCHAR, races VARCHAR) ### Question: What is the sum of Poles, when Podiums is 0, and when Races is 17? ### Answer: SELECT SUM(poles) FROM table_name_35 WHERE podiums = 0 AND races = 17 |
What is Poles, when Races is less than 16? | CREATE TABLE table_name_99 (poles VARCHAR, races INTEGER) | SELECT poles FROM table_name_99 WHERE races < 16 | ### Context: CREATE TABLE table_name_99 (poles VARCHAR, races INTEGER) ### Question: What is Poles, when Races is less than 16? ### Answer: SELECT poles FROM table_name_99 WHERE races < 16 |
What is the lowest Races, when Podiums is greater than 1? | CREATE TABLE table_name_53 (races INTEGER, podiums INTEGER) | SELECT MIN(races) FROM table_name_53 WHERE podiums > 1 | ### Context: CREATE TABLE table_name_53 (races INTEGER, podiums INTEGER) ### Question: What is the lowest Races, when Podiums is greater than 1? ### Answer: SELECT MIN(races) FROM table_name_53 WHERE podiums > 1 |
How many people on average attended the game in week 14? | CREATE TABLE table_name_68 (attendance INTEGER, week VARCHAR) | SELECT AVG(attendance) FROM table_name_68 WHERE week = 14 | ### Context: CREATE TABLE table_name_68 (attendance INTEGER, week VARCHAR) ### Question: How many people on average attended the game in week 14? ### Answer: SELECT AVG(attendance) FROM table_name_68 WHERE week = 14 |
The game in week 11 has what result? | CREATE TABLE table_name_70 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_70 WHERE week = 11 | ### Context: CREATE TABLE table_name_70 (result VARCHAR, week VARCHAR) ### Question: The game in week 11 has what result? ### Answer: SELECT result FROM table_name_70 WHERE week = 11 |
For the game against the San Francisco 49ers what was the total attendance? | CREATE TABLE table_name_12 (attendance INTEGER, opponent VARCHAR) | SELECT SUM(attendance) FROM table_name_12 WHERE opponent = "san francisco 49ers" | ### Context: CREATE TABLE table_name_12 (attendance INTEGER, opponent VARCHAR) ### Question: For the game against the San Francisco 49ers what was the total attendance? ### Answer: SELECT SUM(attendance) FROM table_name_12 WHERE opponent = "san francisco 49ers" |
What is the Place that has a To standard of β1, and a Score of 71-68-76=215? | CREATE TABLE table_name_71 (place VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT place FROM table_name_71 WHERE to_par = "β1" AND score = 71 - 68 - 76 = 215 | ### Context: CREATE TABLE table_name_71 (place VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: What is the Place that has a To standard of β1, and a Score of 71-68-76=215? ### Answer: SELECT place FROM table_name_71 WHERE to_par = "β1" AND score = 71 - 68 - 76 = 215 |
What is the Player that has a To standard of β7? | CREATE TABLE table_name_47 (player VARCHAR, to_par VARCHAR) | SELECT player FROM table_name_47 WHERE to_par = "β7" | ### Context: CREATE TABLE table_name_47 (player VARCHAR, to_par VARCHAR) ### Question: What is the Player that has a To standard of β7? ### Answer: SELECT player FROM table_name_47 WHERE to_par = "β7" |
What is the Player that has a To standard of β4? | CREATE TABLE table_name_15 (player VARCHAR, to_par VARCHAR) | SELECT player FROM table_name_15 WHERE to_par = "β4" | ### Context: CREATE TABLE table_name_15 (player VARCHAR, to_par VARCHAR) ### Question: What is the Player that has a To standard of β4? ### Answer: SELECT player FROM table_name_15 WHERE to_par = "β4" |
What is the Player that has a To standard of β1, and a Score of 71-68-76=215? | CREATE TABLE table_name_60 (player VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT player FROM table_name_60 WHERE to_par = "β1" AND score = 71 - 68 - 76 = 215 | ### Context: CREATE TABLE table_name_60 (player VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: What is the Player that has a To standard of β1, and a Score of 71-68-76=215? ### Answer: SELECT player FROM table_name_60 WHERE to_par = "β1" AND score = 71 - 68 - 76 = 215 |
What is the Player that has a To standard of β4? | CREATE TABLE table_name_71 (player VARCHAR, to_par VARCHAR) | SELECT player FROM table_name_71 WHERE to_par = "β4" | ### Context: CREATE TABLE table_name_71 (player VARCHAR, to_par VARCHAR) ### Question: What is the Player that has a To standard of β4? ### Answer: SELECT player FROM table_name_71 WHERE to_par = "β4" |
Which rank is 40 for s Wicket with a player of Daniel Marsh? | CREATE TABLE table_name_63 (rank VARCHAR, s_wicket VARCHAR, player VARCHAR) | SELECT rank FROM table_name_63 WHERE s_wicket = "40" AND player = "daniel marsh" | ### Context: CREATE TABLE table_name_63 (rank VARCHAR, s_wicket VARCHAR, player VARCHAR) ### Question: Which rank is 40 for s Wicket with a player of Daniel Marsh? ### Answer: SELECT rank FROM table_name_63 WHERE s_wicket = "40" AND player = "daniel marsh" |
Which rank has a s wicket at 40 and 28.42 is the average? | CREATE TABLE table_name_66 (rank VARCHAR, s_wicket VARCHAR, average VARCHAR) | SELECT rank FROM table_name_66 WHERE s_wicket = "40" AND average = "28.42" | ### Context: CREATE TABLE table_name_66 (rank VARCHAR, s_wicket VARCHAR, average VARCHAR) ### Question: Which rank has a s wicket at 40 and 28.42 is the average? ### Answer: SELECT rank FROM table_name_66 WHERE s_wicket = "40" AND average = "28.42" |
Which value for s wicket is associated with Shaun Young? | CREATE TABLE table_name_68 (s_wicket VARCHAR, player VARCHAR) | SELECT s_wicket FROM table_name_68 WHERE player = "shaun young" | ### Context: CREATE TABLE table_name_68 (s_wicket VARCHAR, player VARCHAR) ### Question: Which value for s wicket is associated with Shaun Young? ### Answer: SELECT s_wicket FROM table_name_68 WHERE player = "shaun young" |
Which player has a s wicket at 48? | CREATE TABLE table_name_84 (player VARCHAR, s_wicket VARCHAR) | SELECT player FROM table_name_84 WHERE s_wicket = "48" | ### Context: CREATE TABLE table_name_84 (player VARCHAR, s_wicket VARCHAR) ### Question: Which player has a s wicket at 48? ### Answer: SELECT player FROM table_name_84 WHERE s_wicket = "48" |
What is the s wicket value associated with Shaun Young? | CREATE TABLE table_name_51 (s_wicket VARCHAR, player VARCHAR) | SELECT s_wicket FROM table_name_51 WHERE player = "shaun young" | ### Context: CREATE TABLE table_name_51 (s_wicket VARCHAR, player VARCHAR) ### Question: What is the s wicket value associated with Shaun Young? ### Answer: SELECT s_wicket FROM table_name_51 WHERE player = "shaun young" |
What is the date of the game where the NY Islanders are the home team? | CREATE TABLE table_name_2 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_2 WHERE home = "ny islanders" | ### Context: CREATE TABLE table_name_2 (date VARCHAR, home VARCHAR) ### Question: What is the date of the game where the NY Islanders are the home team? ### Answer: SELECT date FROM table_name_2 WHERE home = "ny islanders" |
What is the score of the game where the NY Islanders are the home team? | CREATE TABLE table_name_10 (score VARCHAR, home VARCHAR) | SELECT score FROM table_name_10 WHERE home = "ny islanders" | ### Context: CREATE TABLE table_name_10 (score VARCHAR, home VARCHAR) ### Question: What is the score of the game where the NY Islanders are the home team? ### Answer: SELECT score FROM table_name_10 WHERE home = "ny islanders" |
Who was the home team on February 3? | CREATE TABLE table_name_68 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_68 WHERE date = "february 3" | ### Context: CREATE TABLE table_name_68 (home VARCHAR, date VARCHAR) ### Question: Who was the home team on February 3? ### Answer: SELECT home FROM table_name_68 WHERE date = "february 3" |
What is the sum of Overall, when Round is less than 24, and when College is North Carolina State? | CREATE TABLE table_name_50 (overall INTEGER, round VARCHAR, college VARCHAR) | SELECT SUM(overall) FROM table_name_50 WHERE round < 24 AND college = "north carolina state" | ### Context: CREATE TABLE table_name_50 (overall INTEGER, round VARCHAR, college VARCHAR) ### Question: What is the sum of Overall, when Round is less than 24, and when College is North Carolina State? ### Answer: SELECT SUM(overall) FROM table_name_50 WHERE round < 24 AND college = "north carolina state" |
What is the total number of Pick, when Position is OT, when Overall is greater than 91, when Round is greater than 21, and when College is Mississippi? | CREATE TABLE table_name_98 (pick VARCHAR, college VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR) | SELECT COUNT(pick) FROM table_name_98 WHERE position = "ot" AND overall > 91 AND round > 21 AND college = "mississippi" | ### Context: CREATE TABLE table_name_98 (pick VARCHAR, college VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR) ### Question: What is the total number of Pick, when Position is OT, when Overall is greater than 91, when Round is greater than 21, and when College is Mississippi? ### Answer: SELECT COUNT(pick) FROM table_name_98 WHERE position = "ot" AND overall > 91 AND round > 21 AND college = "mississippi" |
What is the lowest Overall, when College is Hardin-Simmons, and when Round is greater than 26? | CREATE TABLE table_name_17 (overall INTEGER, college VARCHAR, round VARCHAR) | SELECT MIN(overall) FROM table_name_17 WHERE college = "hardin-simmons" AND round > 26 | ### Context: CREATE TABLE table_name_17 (overall INTEGER, college VARCHAR, round VARCHAR) ### Question: What is the lowest Overall, when College is Hardin-Simmons, and when Round is greater than 26? ### Answer: SELECT MIN(overall) FROM table_name_17 WHERE college = "hardin-simmons" AND round > 26 |
What is the score of the tournament with younes el aynaoui as the opponent? | CREATE TABLE table_name_37 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_37 WHERE opponent = "younes el aynaoui" | ### Context: CREATE TABLE table_name_37 (score VARCHAR, opponent VARCHAR) ### Question: What is the score of the tournament with younes el aynaoui as the opponent? ### Answer: SELECT score FROM table_name_37 WHERE opponent = "younes el aynaoui" |
What is the date of the tournament with carlos moyΓ as the opponent? | CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_6 WHERE opponent = "carlos moyΓ " | ### Context: CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR) ### Question: What is the date of the tournament with carlos moyΓ as the opponent? ### Answer: SELECT date FROM table_name_6 WHERE opponent = "carlos moyΓ " |
What is the tournament with greg rusedski as the opponent? | CREATE TABLE table_name_57 (tournament VARCHAR, opponent VARCHAR) | SELECT tournament FROM table_name_57 WHERE opponent = "greg rusedski" | ### Context: CREATE TABLE table_name_57 (tournament VARCHAR, opponent VARCHAR) ### Question: What is the tournament with greg rusedski as the opponent? ### Answer: SELECT tournament FROM table_name_57 WHERE opponent = "greg rusedski" |
What is the surface on 26 May 1996? | CREATE TABLE table_name_75 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_75 WHERE date = "26 may 1996" | ### Context: CREATE TABLE table_name_75 (surface VARCHAR, date VARCHAR) ### Question: What is the surface on 26 May 1996? ### Answer: SELECT surface FROM table_name_75 WHERE date = "26 may 1996" |
What club did united states player ty harden play for? | CREATE TABLE table_name_55 (club VARCHAR, nationality VARCHAR, player VARCHAR) | SELECT club FROM table_name_55 WHERE nationality = "united states" AND player = "ty harden" | ### Context: CREATE TABLE table_name_55 (club VARCHAR, nationality VARCHAR, player VARCHAR) ### Question: What club did united states player ty harden play for? ### Answer: SELECT club FROM table_name_55 WHERE nationality = "united states" AND player = "ty harden" |
Which seaosn had a player of rohan ricketts? | CREATE TABLE table_name_26 (season VARCHAR, player VARCHAR) | SELECT COUNT(season) FROM table_name_26 WHERE player = "rohan ricketts" | ### Context: CREATE TABLE table_name_26 (season VARCHAR, player VARCHAR) ### Question: Which seaosn had a player of rohan ricketts? ### Answer: SELECT COUNT(season) FROM table_name_26 WHERE player = "rohan ricketts" |
What is Tries Against, when Points Against is 213? | CREATE TABLE table_name_78 (tries_against VARCHAR, points_against VARCHAR) | SELECT tries_against FROM table_name_78 WHERE points_against = "213" | ### Context: CREATE TABLE table_name_78 (tries_against VARCHAR, points_against VARCHAR) ### Question: What is Tries Against, when Points Against is 213? ### Answer: SELECT tries_against FROM table_name_78 WHERE points_against = "213" |
What is Tries Against, when Tries For is 21? | CREATE TABLE table_name_56 (tries_against VARCHAR, tries_for VARCHAR) | SELECT tries_against FROM table_name_56 WHERE tries_for = "21" | ### Context: CREATE TABLE table_name_56 (tries_against VARCHAR, tries_for VARCHAR) ### Question: What is Tries Against, when Tries For is 21? ### Answer: SELECT tries_against FROM table_name_56 WHERE tries_for = "21" |
What is Try Diff, when Points Diff is +71? | CREATE TABLE table_name_18 (try_diff VARCHAR, points_diff VARCHAR) | SELECT try_diff FROM table_name_18 WHERE points_diff = "+71" | ### Context: CREATE TABLE table_name_18 (try_diff VARCHAR, points_diff VARCHAR) ### Question: What is Try Diff, when Points Diff is +71? ### Answer: SELECT try_diff FROM table_name_18 WHERE points_diff = "+71" |
What is Try Diff, when Points Against is 213? | CREATE TABLE table_name_42 (try_diff VARCHAR, points_against VARCHAR) | SELECT try_diff FROM table_name_42 WHERE points_against = "213" | ### Context: CREATE TABLE table_name_42 (try_diff VARCHAR, points_against VARCHAR) ### Question: What is Try Diff, when Points Against is 213? ### Answer: SELECT try_diff FROM table_name_42 WHERE points_against = "213" |
What is Tries Against, when Try Diff is +15? | CREATE TABLE table_name_34 (tries_against VARCHAR, try_diff VARCHAR) | SELECT tries_against FROM table_name_34 WHERE try_diff = "+15" | ### Context: CREATE TABLE table_name_34 (tries_against VARCHAR, try_diff VARCHAR) ### Question: What is Tries Against, when Try Diff is +15? ### Answer: SELECT tries_against FROM table_name_34 WHERE try_diff = "+15" |
Which archbishop vacated the throne on May 17, 1907? | CREATE TABLE table_name_42 (archbishop VARCHAR, vacated_throne VARCHAR) | SELECT archbishop FROM table_name_42 WHERE vacated_throne = "may 17, 1907" | ### Context: CREATE TABLE table_name_42 (archbishop VARCHAR, vacated_throne VARCHAR) ### Question: Which archbishop vacated the throne on May 17, 1907? ### Answer: SELECT archbishop FROM table_name_42 WHERE vacated_throne = "may 17, 1907" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.