answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT president FROM table_name_57 WHERE year = 1999
Who was the president in 1999?
CREATE TABLE table_name_57 (president VARCHAR, year VARCHAR)
SELECT SUM(match) FROM table_name_19 WHERE draw > 0 AND team = "polonia bydgoszcz" AND points < 17
What is the number for match when the draws in more than 0, the team is Polonia Bydgoszcz, and there are less than 17 points?
CREATE TABLE table_name_19 (match INTEGER, points VARCHAR, draw VARCHAR, team VARCHAR)
SELECT MAX(size__cents_) FROM table_name_26 WHERE size__steps_ = 15 AND just__cents_ > 435.08
size (steps) of 15, and a just (cents) larger than 435.08 is what highest size (cents)?
CREATE TABLE table_name_26 (size__cents_ INTEGER, size__steps_ VARCHAR, just__cents_ VARCHAR)
SELECT left_office FROM table_name_16 WHERE party = "udc" AND took_office = "11 june 2001"
What is Left Office, when Party is "UDC", and when Took Office is "11 June 2001"?
CREATE TABLE table_name_16 (left_office VARCHAR, party VARCHAR, took_office VARCHAR)
SELECT MAX(bronze) FROM table_name_46 WHERE rank > 9
What is the highest amount of bronze medals when the rank was larger than 9?
CREATE TABLE table_name_46 (bronze INTEGER, rank INTEGER)
SELECT SUM(grid) FROM table_name_60 WHERE laps = 17
What is the grid total for cars that went 17 laps?
CREATE TABLE table_name_60 (grid INTEGER, laps VARCHAR)
SELECT jockey FROM table_name_74 WHERE horse = "eight belles"
What is Jockey, when Horse is "Eight Belles"?
CREATE TABLE table_name_74 (jockey VARCHAR, horse VARCHAR)
SELECT years FROM table_name_55 WHERE win_loss = "11-60"
What is Years, when Win-Loss is 11-60?
CREATE TABLE table_name_55 (years VARCHAR, win_loss VARCHAR)
SELECT opponent FROM table_name_14 WHERE date = "april 10"
What opponent has april 10 as the date?
CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR)
SELECT location FROM table_name_49 WHERE event = "ecc 8: comeback"
What is the location of the match with an event of ecc 8: comeback?
CREATE TABLE table_name_49 (location VARCHAR, event VARCHAR)
SELECT fastest_lap FROM table_name_32 WHERE pole_position = "david coulthard" AND winning_driver = "michael schumacher"
Who had the fastest lap when David Coulthard had pole position and Michael Schumacher as a winning driver.
CREATE TABLE table_name_32 (fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)
SELECT MIN(goals_for) FROM table_name_67 WHERE position > 4 AND draws > 11
Name the least goals when position is more than 4 and draws is more than 11
CREATE TABLE table_name_67 (goals_for INTEGER, position VARCHAR, draws VARCHAR)
SELECT companion__in_order_from_star_ FROM table_name_10 WHERE orbital_period___s_day__ = "9.6184 +0.0050 −0.0049"
What Companion (in order from star) has an Orbital period (s day) of 9.6184 +0.0050 −0.0049?
CREATE TABLE table_name_10 (companion__in_order_from_star_ VARCHAR, orbital_period___s_day__ VARCHAR)
SELECT worldwide_gross FROM table_name_65 WHERE director = "joe pytka"
What was the worldwide gross for the film directed by joe pytka?
CREATE TABLE table_name_65 (worldwide_gross VARCHAR, director VARCHAR)
SELECT MIN(density___km²_) FROM table_1174162_1 WHERE suburb = "Garran"
What is the density in Garran?
CREATE TABLE table_1174162_1 (density___km²_ INTEGER, suburb VARCHAR)
SELECT origin_of_programming FROM table_name_85 WHERE network = "banglavision"
Which country has the banglavision Network?
CREATE TABLE table_name_85 (origin_of_programming VARCHAR, network VARCHAR)
SELECT october_2012 FROM table_21531764_1 WHERE october_2010 = "9.1"
For the area which was 9.1 in October 2010, what is the figure for October 2012?
CREATE TABLE table_21531764_1 (october_2012 VARCHAR, october_2010 VARCHAR)
SELECT points FROM table_name_47 WHERE score = "2 - 2"
Score of 2 - 2 had what points?
CREATE TABLE table_name_47 (points VARCHAR, score VARCHAR)
SELECT source FROM table_name_43 WHERE moving_from = "swindon town"
What is the source of a move from Swindon Town?
CREATE TABLE table_name_43 (source VARCHAR, moving_from VARCHAR)
SELECT hanyu_pinyin FROM table_name_53 WHERE hanzi = "依兰县"
What is the Pinyin for 依兰县?
CREATE TABLE table_name_53 (hanyu_pinyin VARCHAR, hanzi VARCHAR)
SELECT result FROM table_16741821_8 WHERE surface = "Clay" AND against = "Lithuania"
WHAT WERE ALL OF THE RESULTS WHEN THEY PLAYED AGAINST LITHUANIA AND THE SURFACE WAS MADE OF CLAY?
CREATE TABLE table_16741821_8 (result VARCHAR, surface VARCHAR, against VARCHAR)
SELECT location FROM table_name_82 WHERE year > 2012
What was the location for a year later than 2012?
CREATE TABLE table_name_82 (location VARCHAR, year INTEGER)
SELECT country FROM table_name_89 WHERE player = "rives mcbee"
What is Country, when Player is "Rives McBee"?
CREATE TABLE table_name_89 (country VARCHAR, player VARCHAR)
SELECT COUNT(nhl_team) FROM table_1213511_3 WHERE player = "Bob Peppler"
How many teams did Bob Peppler play for?
CREATE TABLE table_1213511_3 (nhl_team VARCHAR, player VARCHAR)
SELECT opponent FROM table_20745685_1 WHERE attendance = 16642
Who was the opponent when the attendance was exactly 16642?
CREATE TABLE table_20745685_1 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_7 WHERE loss = "saarloos (7-7)"
Who was the opponent at the game that had a loss of Saarloos (7-7)?
CREATE TABLE table_name_7 (opponent VARCHAR, loss VARCHAR)
SELECT bolton_wanderers_career FROM table_name_75 WHERE total > 404 AND position = "fw" AND apps < 492 AND goals = "79"
Which Bolton Wanderers career has a Total larger than 404, and a Position of fw, and Apps less than 492, and 79 Goals?
CREATE TABLE table_name_75 (bolton_wanderers_career VARCHAR, goals VARCHAR, apps VARCHAR, total VARCHAR, position VARCHAR)
SELECT final_score FROM table_24882796_2 WHERE opponent = "Frankfurt Galaxy"
What is the final score when they played Frankfurt Galaxy?
CREATE TABLE table_24882796_2 (final_score VARCHAR, opponent VARCHAR)
SELECT district FROM table_1341865_34 WHERE incumbent = "Seymour Halpern"
which section did seymour halpern run in
CREATE TABLE table_1341865_34 (district VARCHAR, incumbent VARCHAR)
SELECT yards FROM table_11157122_5 WHERE attempts = 87
How many yards did the player with 87 attempts rush?
CREATE TABLE table_11157122_5 (yards VARCHAR, attempts VARCHAR)
SELECT DISTINCT t1.individual_last_name FROM individuals AS t1 JOIN organization_contact_individuals AS t2 ON t1.individual_id = t2.individual_id
Find the last name of the individuals that have been contact individuals of an organization.
CREATE TABLE individuals (individual_last_name VARCHAR, individual_id VARCHAR); CREATE TABLE organization_contact_individuals (individual_id VARCHAR)
SELECT MAX(juries) FROM table_27994983_8 WHERE draw = 3
How many juries are there when the draw is 3?
CREATE TABLE table_27994983_8 (juries INTEGER, draw VARCHAR)
SELECT name FROM table_name_97 WHERE took_office = "1976"
Which deputy took office in 1976?
CREATE TABLE table_name_97 (name VARCHAR, took_office VARCHAR)
SELECT AVG(rank) FROM table_name_46 WHERE name = "elise matthysen" AND lane < 8
What is the average rank of Elise Matthysen in lanes under 8?
CREATE TABLE table_name_46 (rank INTEGER, name VARCHAR, lane VARCHAR)
SELECT T1.problem_id FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE date_problem_reported < (SELECT MIN(date_problem_reported) FROM problems AS T3 JOIN staff AS T4 ON T3.reported_by_staff_id = T4.staff_id WHERE T4.staff_first_name = "Lysanne" AND T4.staff_last_name = "Turcotte")
What are the ids of the problems reported before the date of any problem reported by Lysanne Turcotte?
CREATE TABLE problems (problem_id VARCHAR, reported_by_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR); CREATE TABLE problems (reported_by_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR)
SELECT district FROM table_name_53 WHERE location = "villupuram"
What District has a Location of villupuram?
CREATE TABLE table_name_53 (district VARCHAR, location VARCHAR)
SELECT SUM(goals_against) FROM table_name_10 WHERE points = 72 AND lost > 37
What are the total Goals against with 72 points and more than 37 losses?
CREATE TABLE table_name_10 (goals_against INTEGER, points VARCHAR, lost VARCHAR)
SELECT AVG(killed) FROM table_name_54 WHERE perpetrator = "wirjo, 42"
What is the average number of people killed with a Perpetrator of wirjo, 42?
CREATE TABLE table_name_54 (killed INTEGER, perpetrator VARCHAR)
SELECT place FROM table_name_64 WHERE country = "spain"
What is the place of the player from Spain?
CREATE TABLE table_name_64 (place VARCHAR, country VARCHAR)
SELECT date FROM table_name_87 WHERE venue = "lahore"
What is the date of the game held at Lahore?
CREATE TABLE table_name_87 (date VARCHAR, venue VARCHAR)
SELECT year_location FROM table_28138035_4 WHERE womens_singles = "Haruna Fukuoka"
Name the year location for haruna fukuoka
CREATE TABLE table_28138035_4 (year_location VARCHAR, womens_singles VARCHAR)
SELECT MIN(games) FROM table_name_81 WHERE year > 2013
After the 2013 season, what was the fewest number of games that Willis McGahee played in a single season?
CREATE TABLE table_name_81 (games INTEGER, year INTEGER)
SELECT AVG(total) FROM table_name_96 WHERE country = "united states" AND to_par > 6 AND year_s__won = "1996"
What is the average Total for the United States with a To par more than 6 and 1996 was won?
CREATE TABLE table_name_96 (total INTEGER, year_s__won VARCHAR, country VARCHAR, to_par VARCHAR)
SELECT COUNT(DISTINCT Team) FROM match_season
How many distinct teams are involved in match seasons?
CREATE TABLE match_season (Team VARCHAR)
SELECT transaction_type_code, MAX(share_count), MIN(share_count) FROM TRANSACTIONS GROUP BY transaction_type_code
Show the maximum and minimum share count of different transaction types.
CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR, share_count INTEGER)
SELECT MIN(gold) FROM table_name_97 WHERE bronze < 36 AND rank = "2" AND silver < 37
What is the lowest number of Gold, when the number of Bronze is less than 36, when the Rank is 2, and when Silver is less than 37?
CREATE TABLE table_name_97 (gold INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT laps FROM table_name_92 WHERE manufacturer = "suzuki" AND time_retired = "+1:02.804"
Name the laps for suzuki and time/retired of +1:02.804
CREATE TABLE table_name_92 (laps VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)
SELECT AVG(Num_of_Factories) FROM manufacturer WHERE num_of_shops > 20
Find the average number of factories for the manufacturers that have more than 20 shops.
CREATE TABLE manufacturer (Num_of_Factories INTEGER, num_of_shops INTEGER)
SELECT attendance FROM table_name_51 WHERE home_team = "chester city"
what is the attendance when the home team is chester city?
CREATE TABLE table_name_51 (attendance VARCHAR, home_team VARCHAR)
SELECT t2.firstname FROM Performance AS t1 JOIN Band AS t2 ON t1.bandmate = t2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY firstname ORDER BY COUNT(*) DESC LIMIT 1
Find the first name of the band mate that has performed in most songs.
CREATE TABLE Songs (SongId VARCHAR); CREATE TABLE Band (firstname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR)
SELECT opening FROM table_name_83 WHERE white = "anand" AND moves < 61 AND result = "½–½"
What's the opening when white is Anand with fewer than 61 moves for a result of ½–½?
CREATE TABLE table_name_83 (opening VARCHAR, result VARCHAR, white VARCHAR, moves VARCHAR)
SELECT 2007 AS _result FROM table_13618584_1 WHERE elected = 1996
What was the 2007 result in the district where the incumbent was elected in 1996?
CREATE TABLE table_13618584_1 (elected VARCHAR)
SELECT birthdate FROM table_name_63 WHERE defining_characteristics = "pink hair"
What is the birth date of the member with the Defining characteristic of pink hair?
CREATE TABLE table_name_63 (birthdate VARCHAR, defining_characteristics VARCHAR)
SELECT preliminaries FROM table_11970261_2 WHERE average = "9.360"
what's the preliminaries with average being 9.360
CREATE TABLE table_11970261_2 (preliminaries VARCHAR, average VARCHAR)
SELECT fastest_lap FROM table_25322130_3 WHERE round = "3"
Name the fastest lap for round 3
CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, round VARCHAR)
SELECT MAX(opened) FROM table_name_3 WHERE category = "diesel light rail"
Which Opened has a Category of diesel light rail?
CREATE TABLE table_name_3 (opened INTEGER, category VARCHAR)
SELECT match_report FROM table_name_44 WHERE competition = "euro2008q" AND venue = "athens olympic stadium" AND score = "1-2"
What was the Match Report for the Euro2008q at the Athens Olympic Stadium and a score of 1-2?
CREATE TABLE table_name_44 (match_report VARCHAR, score VARCHAR, competition VARCHAR, venue VARCHAR)
SELECT COUNT(general_election) FROM table_name_95 WHERE _number_of_seats_won < 23 AND _number_of_candidates > 108
How many general elections that have won smaller than 23 with candidates larger than 108?
CREATE TABLE table_name_95 (general_election VARCHAR, _number_of_seats_won VARCHAR, _number_of_candidates VARCHAR)
SELECT current_rank FROM table_name_63 WHERE ring_name = "kimurayama mamoru"
What is Current Rank, when Ring Name is Kimurayama Mamoru?
CREATE TABLE table_name_63 (current_rank VARCHAR, ring_name VARCHAR)
SELECT home_team FROM table_name_18 WHERE away_team = "derby county"
What is the home team that played Derby County as the away team?
CREATE TABLE table_name_18 (home_team VARCHAR, away_team VARCHAR)
SELECT COUNT(written_by) FROM table_22580855_1 WHERE directed_by = "Jonathan Herron"
How many writers write the episode whose director is Jonathan Herron?
CREATE TABLE table_22580855_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT COUNT(*), classroom FROM list GROUP BY classroom
Find the number of students in one classroom.
CREATE TABLE list (classroom VARCHAR)
SELECT opponent FROM table_name_34 WHERE january = 27
Who were the opponents on January 27?
CREATE TABLE table_name_34 (opponent VARCHAR, january VARCHAR)
SELECT constructor FROM table_name_58 WHERE rounds = "5"
Who is the Constructor for round 5?
CREATE TABLE table_name_58 (constructor VARCHAR, rounds VARCHAR)
SELECT MIN(round__number) FROM table_20996923_25 WHERE player = "Sherrick McManis"
What was Sherrick McManis's earliest round?
CREATE TABLE table_20996923_25 (round__number INTEGER, player VARCHAR)
SELECT result FROM table_13258851_2 WHERE date = "September 16, 1984"
What was the result of the game played on September 16, 1984?
CREATE TABLE table_13258851_2 (result VARCHAR, date VARCHAR)
SELECT AVG(week) FROM table_name_88 WHERE attendance = 63 OFFSET 263
What's the mean week number when attendance was 63,263?
CREATE TABLE table_name_88 (week INTEGER, attendance VARCHAR)
SELECT original_air_date FROM table_26565936_2 WHERE us_viewers__millions_ = "13.92"
What was the original air date for the episode with 13.92 million us viewers?
CREATE TABLE table_26565936_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
SELECT football_stadium FROM table_12896884_1 WHERE enrollment = 43579
What football stadium has a school enrollment of 43579?
CREATE TABLE table_12896884_1 (football_stadium VARCHAR, enrollment VARCHAR)
SELECT COUNT(head_coach) FROM table_11365528_2 WHERE website = "http://www.burleighbulldogs.org/"
How many head coaches are there for the website, http://www.burleighbulldogs.org/?
CREATE TABLE table_11365528_2 (head_coach VARCHAR, website VARCHAR)
SELECT away_team FROM table_name_11 WHERE venue = "western oval"
What away team played at western oval?
CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR)
SELECT MAX(weeks_at__number1) FROM table_27441210_12 WHERE country = "France"
How many weeks was France at #1?
CREATE TABLE table_27441210_12 (weeks_at__number1 INTEGER, country VARCHAR)
SELECT SUM(tonnage__grt_) FROM table_name_30 WHERE time = "00:10" AND casualties < 42
What is the sum of tonnage with a time at 00:10 and less than 42 casualties?
CREATE TABLE table_name_30 (tonnage__grt_ INTEGER, time VARCHAR, casualties VARCHAR)
SELECT opponent FROM table_name_45 WHERE date = "january 16"
Who is the Opponent on January 16?
CREATE TABLE table_name_45 (opponent VARCHAR, date VARCHAR)
SELECT SUM(t3.order_quantity) FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id WHERE t1.customer_name = "Rodrick Heaney"
What is the total quantity of products purchased by "Rodrick Heaney"?
CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE order_items (order_quantity INTEGER, order_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)
SELECT year FROM table_name_14 WHERE title = "rio"
What is the Year of Rio?
CREATE TABLE table_name_14 (year VARCHAR, title VARCHAR)
SELECT station FROM table_name_63 WHERE genre = "talk radio" AND operator = "bbc radio"
Which station is operated by BBC Radio under the talk radio genre?
CREATE TABLE table_name_63 (station VARCHAR, genre VARCHAR, operator VARCHAR)
SELECT MAX(track) FROM table_name_75 WHERE song_title = "burning love"
What is the highest track for Burning Love?
CREATE TABLE table_name_75 (track INTEGER, song_title VARCHAR)
SELECT MAX(points_awarded__platinum_) FROM table_11254821_2 WHERE points_awarded__gold_ = 6
How many platinum points were awarded when 6 gold points were awarded?
CREATE TABLE table_11254821_2 (points_awarded__platinum_ INTEGER, points_awarded__gold_ VARCHAR)
SELECT original_title FROM table_name_22 WHERE year < 1986 AND country = "france" AND director_s_ = "alain resnais"
What was the original title that was directed by Alain Resnais in France before 1986?
CREATE TABLE table_name_22 (original_title VARCHAR, director_s_ VARCHAR, year VARCHAR, country VARCHAR)
SELECT City, Country FROM AIRPORTS WHERE AirportName = "Alton"
Which city and country is the Alton airport at?
CREATE TABLE AIRPORTS (City VARCHAR, Country VARCHAR, AirportName VARCHAR)
SELECT at_columbia FROM table_name_2 WHERE last_5_meetings = "ku, 4-1"
What is the record at Columbia when KU, 4-1 is the record for the last 5 minutes?
CREATE TABLE table_name_2 (at_columbia VARCHAR, last_5_meetings VARCHAR)
SELECT winner FROM table_27887723_1 WHERE uci_rating = "CN"
who was the winner of uci rating cn?
CREATE TABLE table_27887723_1 (winner VARCHAR, uci_rating VARCHAR)
SELECT team FROM table_name_69 WHERE date = "december 11"
What is the Team with a Date with december 11?
CREATE TABLE table_name_69 (team VARCHAR, date VARCHAR)
SELECT SUM(number) FROM table_name_65 WHERE type = "driving van trailer"
What is the sum of numbers that had a type of Driving Van Trailer?
CREATE TABLE table_name_65 (number INTEGER, type VARCHAR)
SELECT winner FROM table_name_97 WHERE country = "norway" AND fis_nordic_world_ski_championships = "1924"
Which Winner has a Country of norway, and a FIS Nordic World Ski Championships of 1924?
CREATE TABLE table_name_97 (winner VARCHAR, country VARCHAR, fis_nordic_world_ski_championships VARCHAR)
SELECT high_assists FROM table_name_35 WHERE high_points = "eric gordon (21)"
What was the high assist when the high point was Eric Gordon (21)?
CREATE TABLE table_name_35 (high_assists VARCHAR, high_points VARCHAR)
SELECT SUM(diameter__km_) FROM table_name_25 WHERE latitude = "62.7n"
COunt the sum of Diameter (km) which has a Latitude of 62.7n?
CREATE TABLE table_name_25 (diameter__km_ INTEGER, latitude VARCHAR)
SELECT built_by_hm_dockyard FROM table_name_43 WHERE laid_down = "september 1830"
Which built by HM Dockyard has September 1830 as the laid down?
CREATE TABLE table_name_43 (built_by_hm_dockyard VARCHAR, laid_down VARCHAR)
SELECT result FROM table_name_89 WHERE opponent = "leeds united"
What is the result from the Leeds United opponent?
CREATE TABLE table_name_89 (result VARCHAR, opponent VARCHAR)
SELECT AVG(average) FROM table_name_59 WHERE w_l_t = "5-1" AND season < 2001 AND games < 6
Which Average that has a W-L-T of 5-1, and a Season smaller than 2001, and Games smaller than 6?
CREATE TABLE table_name_59 (average INTEGER, games VARCHAR, w_l_t VARCHAR, season VARCHAR)
SELECT segment_a FROM table_name_18 WHERE netflix = "s01e12"
What is the segment A name, having a Netflix of s01e12?
CREATE TABLE table_name_18 (segment_a VARCHAR, netflix VARCHAR)
SELECT date_of_death† FROM table_11585313_2 WHERE name = "Henk Hordijk"
What was the date of Henk Hordijk's death?
CREATE TABLE table_11585313_2 (date_of_death† VARCHAR, name VARCHAR)
SELECT crowd FROM table_name_58 WHERE away_team = "melbourne"
How many attended the game with north melbourne as the away side?
CREATE TABLE table_name_58 (crowd VARCHAR, away_team VARCHAR)
SELECT MAX(pick__number) FROM table_29626583_3 WHERE mls_team = "Toronto FC" AND affiliation = "LDU Quito"
What is the pick number for the team toronto fc and affiliation is ldu quito?
CREATE TABLE table_29626583_3 (pick__number INTEGER, mls_team VARCHAR, affiliation VARCHAR)
SELECT type FROM table_name_54 WHERE satellite = "gps iiia-2"
Which type is a satellite of GPS IIIA-2?
CREATE TABLE table_name_54 (type VARCHAR, satellite VARCHAR)
SELECT language FROM table_name_27 WHERE content = "monoscopio"
What is Language, when Content is Monoscopio?
CREATE TABLE table_name_27 (language VARCHAR, content VARCHAR)
SELECT SUM(balls_faced) FROM table_name_99 WHERE sr > 48.28 AND innings = 3 AND average < 5
What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5?
CREATE TABLE table_name_99 (balls_faced INTEGER, average VARCHAR, sr VARCHAR, innings VARCHAR)
SELECT name__namesake_ FROM table_29860752_11
What are all the name(namesakes) for the entire chart?
CREATE TABLE table_29860752_11 (name__namesake_ VARCHAR)
SELECT tournament FROM table_name_55 WHERE opponent_in_the_final = "raffaella reggi"
Which tournament has raffaella reggi listed as the opponent in the final?
CREATE TABLE table_name_55 (tournament VARCHAR, opponent_in_the_final VARCHAR)