answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT score FROM table_name_77 WHERE record = "11-16"
What was the score that led to an 11-16 record?
CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)
SELECT elevator FROM table_name_30 WHERE order_and_title = "cardinal-priest of s. prassede"
The Cardinal-Priest of S. Prassede order and title has who as the elevator?
CREATE TABLE table_name_30 (elevator VARCHAR, order_and_title VARCHAR)
SELECT AVG(overall) FROM table_name_23 WHERE pick = 22 AND college = "rice" AND round > 10
WHAT IS THE OVERALL AVERAGE WITH A 22 PICK, FROM RICE COLLEGE, AND ROUND BIGGER THAN 10?
CREATE TABLE table_name_23 (overall INTEGER, round VARCHAR, pick VARCHAR, college VARCHAR)
SELECT COUNT(lost) FROM table_name_34 WHERE played > 30
How many total losses have teams that played more than 30 games?
CREATE TABLE table_name_34 (lost VARCHAR, played INTEGER)
SELECT record_at_school FROM table_28744929_2 WHERE head_coach = "Tom O'Brien"
What is the Record at School of Tom O'Brien's team?
CREATE TABLE table_28744929_2 (record_at_school VARCHAR, head_coach VARCHAR)
SELECT performer_3 FROM table_name_79 WHERE performer_1 = "stephen frost" AND performer_2 = "josie lawrence" AND date = "15 september 1995"
Performer 1 of Stephen Frost, and a Performer 2 of Josie Lawrence, and a Date of 15 September 1995 is what performer 3?
CREATE TABLE table_name_79 (performer_3 VARCHAR, date VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR)
SELECT AVG(enrollment) FROM table_name_24 WHERE _number___county = "41 johnson"
What's the enrollment at 41 Johnson?
CREATE TABLE table_name_24 (enrollment INTEGER, _number___county VARCHAR)
SELECT away_captain FROM table_name_95 WHERE date = "11,12,13 aug 1902"
Who is the Away captain that played on 11,12,13 Aug 1902?
CREATE TABLE table_name_95 (away_captain VARCHAR, date VARCHAR)
SELECT gm_winning_team FROM table_29225103_2 WHERE ep_winning_team = "#37 Porsche"
Who the GM winning team when the EP winning team was #37 Porsche?
CREATE TABLE table_29225103_2 (gm_winning_team VARCHAR, ep_winning_team VARCHAR)
SELECT venue FROM table_name_24 WHERE goal = 1
What is the Venue for Goal number 1?
CREATE TABLE table_name_24 (venue VARCHAR, goal VARCHAR)
SELECT finish FROM table_name_35 WHERE qual = "130.928"
What was Dick Rathmann's Finish the year he Qualed at 130.928?
CREATE TABLE table_name_35 (finish VARCHAR, qual VARCHAR)
SELECT competition FROM table_name_81 WHERE venue = "away" AND date = "6th"
What is the Away Competition on the 6th?
CREATE TABLE table_name_81 (competition VARCHAR, venue VARCHAR, date VARCHAR)
SELECT glos_ & _wilts FROM table_12043148_2 WHERE bristol_ & _somerset = "Lansdown"
what is the glos & wilts where the bristol & somerset is lansdown?
CREATE TABLE table_12043148_2 (glos_ VARCHAR, _wilts VARCHAR, bristol_ VARCHAR, _somerset VARCHAR)
SELECT colors FROM table_261927_1 WHERE nickname = "Engineers"
What is the colors for the nickname engineers?
CREATE TABLE table_261927_1 (colors VARCHAR, nickname VARCHAR)
SELECT venue FROM table_name_83 WHERE year = 2005 AND notes = "men individual 9.84km"
What venue hosted in 2005 and had a Notes of men individual 9.84km?
CREATE TABLE table_name_83 (venue VARCHAR, year VARCHAR, notes VARCHAR)
SELECT manager FROM table_name_45 WHERE playoffs = "missed" AND year = "1999"
Name the manager for playoffs of missed for 1999
CREATE TABLE table_name_45 (manager VARCHAR, playoffs VARCHAR, year VARCHAR)
SELECT loss FROM table_name_8 WHERE date = "june 22"
Name the loss for june 22
CREATE TABLE table_name_8 (loss VARCHAR, date VARCHAR)
SELECT home_team AS score FROM table_name_59 WHERE away_team = "geelong"
What was the score of the home team when the away team was Geelong?
CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR)
SELECT COUNT(goal_ratio) FROM table_name_46 WHERE rank = 2 AND games > 44
How many goal ratios have rank of 2 with more than 44 games?
CREATE TABLE table_name_46 (goal_ratio VARCHAR, rank VARCHAR, games VARCHAR)
SELECT to_par FROM table_name_22 WHERE country = "united states" AND score = 71 - 68 - 73 = 212
What is To Par, when Country is United States, and when Score is 71-68-73=212?
CREATE TABLE table_name_22 (to_par VARCHAR, country VARCHAR, score VARCHAR)
SELECT Support_rate, Consider_rate, Oppose_rate FROM candidate ORDER BY unsure_rate
Please list support, consider, and oppose rates for each candidate in ascending order by unsure rate.
CREATE TABLE candidate (Support_rate VARCHAR, Consider_rate VARCHAR, Oppose_rate VARCHAR, unsure_rate VARCHAR)
SELECT athlete FROM table_name_10 WHERE rank < 2
who is the athlete with the rank smaller than 2?
CREATE TABLE table_name_10 (athlete VARCHAR, rank INTEGER)
SELECT original_air_date FROM table_28768925_1 WHERE us_viewers__million_ = "8.84"
What date did the episode that had 8.84 million u.s. viewers originally air?
CREATE TABLE table_28768925_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT co_drivers FROM table_name_14 WHERE year < 1986 AND team = "martini lancia"
Which co-driver was part of team Martini Lancia earlier than 1986?
CREATE TABLE table_name_14 (co_drivers VARCHAR, year VARCHAR, team VARCHAR)
SELECT SUM(lane) FROM table_name_97 WHERE time = "1:59.42"
In what lane did the swimmer get a time of 1:59.42?
CREATE TABLE table_name_97 (lane INTEGER, time VARCHAR)
SELECT skip FROM table_name_83 WHERE second = "joan mccusker"
Which Skip will play Joan Mccusker?
CREATE TABLE table_name_83 (skip VARCHAR, second VARCHAR)
SELECT film_title_used_in_nomination FROM table_13719788_1 WHERE original_title = "Biola tak berdawai"
What title was used in the nomination for the title Biola Tak Berdawai?
CREATE TABLE table_13719788_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
SELECT city_of_license FROM table_name_20 WHERE frequency = "101.1"
What is City of License, when Frequency is 101.1?
CREATE TABLE table_name_20 (city_of_license VARCHAR, frequency VARCHAR)
SELECT winner FROM table_name_38 WHERE circuit = "amaroo park"
Who was the winner on the Amaroo Park circuit?
CREATE TABLE table_name_38 (winner VARCHAR, circuit VARCHAR)
SELECT MIN(laps) FROM table_name_23 WHERE rider = "imre toth"
what is the smallest number of laps imre toth has?
CREATE TABLE table_name_23 (laps INTEGER, rider VARCHAR)
SELECT home FROM table_name_50 WHERE record = "11–14–4"
Which Home has a Record of 11–14–4?
CREATE TABLE table_name_50 (home VARCHAR, record VARCHAR)
SELECT champions FROM table_name_85 WHERE coeff = "1.000"
Which Champion has a Coeff of 1.000?
CREATE TABLE table_name_85 (champions VARCHAR, coeff VARCHAR)
SELECT lead FROM table_name_79 WHERE third = "tara george"
WHAT IS THE LEAD WITH THIRD AS TARA GEORGE?
CREATE TABLE table_name_79 (lead VARCHAR, third VARCHAR)
SELECT venue FROM table_name_11 WHERE away_team = "collingwood"
What venue featured collingwood as the away side?
CREATE TABLE table_name_11 (venue VARCHAR, away_team VARCHAR)
SELECT money___$__ FROM table_name_36 WHERE place = "t4" AND player = "ben crenshaw"
How much money does player ben crenshaw, who has a t4 place, have?
CREATE TABLE table_name_36 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)
SELECT state, acc_type, credit_score FROM customer WHERE no_of_loans = 0
Find the state, account type, and credit score of the customer whose number of loan is 0.
CREATE TABLE customer (state VARCHAR, acc_type VARCHAR, credit_score VARCHAR, no_of_loans VARCHAR)
SELECT played FROM table_name_4 WHERE lost > 2 AND team = "américa"
Which Played has a Lost larger than 2, and a Team of américa?
CREATE TABLE table_name_4 (played VARCHAR, lost VARCHAR, team VARCHAR)
SELECT COUNT(wins) FROM table_name_77 WHERE top_5 < 2 AND events = 19
What was Miller Barber wins with Top-5 less than 2 and 19 Events?
CREATE TABLE table_name_77 (wins VARCHAR, top_5 VARCHAR, events VARCHAR)
SELECT builder FROM table_name_80 WHERE location = "govan , scotland"
What is Builder, when Location is "Govan , Scotland"?
CREATE TABLE table_name_80 (builder VARCHAR, location VARCHAR)
SELECT location FROM table_name_4 WHERE country = "scotland" AND name = "muirfield"
Where was the location with Muirfield in Scotland?
CREATE TABLE table_name_4 (location VARCHAR, country VARCHAR, name VARCHAR)
SELECT MAX(year) FROM table_name_82 WHERE engine = "offenhauser l4" AND chassis = "kurtis kraft 500c" AND entrant = "federal engineering"
Which is the latest year that has an engine of Offenhauser l4, a chassis of Kurtis Kraft 500c, and the entrant of Federal Engineering?
CREATE TABLE table_name_82 (year INTEGER, entrant VARCHAR, engine VARCHAR, chassis VARCHAR)
SELECT AVG(year) FROM table_name_89 WHERE competition = "oceania youth championships"
What is the average Year, when Competition is Oceania Youth Championships?
CREATE TABLE table_name_89 (year INTEGER, competition VARCHAR)
SELECT attendance FROM table_name_51 WHERE home_team = "billericay town"
What was the attendance at the Billericay Town home game?
CREATE TABLE table_name_51 (attendance VARCHAR, home_team VARCHAR)
SELECT set_3 FROM table_name_86 WHERE score = "3–2" AND set_2 = "25–23" AND time = "19:00"
Which Set 3 has a Score of 3–2, and a Set 2 of 25–23, and a Time of 19:00?
CREATE TABLE table_name_86 (set_3 VARCHAR, time VARCHAR, score VARCHAR, set_2 VARCHAR)
SELECT date FROM table_name_64 WHERE region = "new zealand" AND catalog = "cy-24623"
On what date was the catalog cy-24623 for New Zealand?
CREATE TABLE table_name_64 (date VARCHAR, region VARCHAR, catalog VARCHAR)
SELECT crowd FROM table_name_40 WHERE away_team = "essendon"
What was the size of the crowd when Essendon was the away team?
CREATE TABLE table_name_40 (crowd VARCHAR, away_team VARCHAR)
SELECT event FROM table_name_55 WHERE opponent = "carlos alexandre pereira"
Which event had Carlos Alexandre Pereira as opponent?
CREATE TABLE table_name_55 (event VARCHAR, opponent VARCHAR)
SELECT year FROM table_name_82 WHERE notes = "1.83m"
In what year is the notes distance 1.83m?
CREATE TABLE table_name_82 (year VARCHAR, notes VARCHAR)
SELECT COUNT(enrollment) FROM table_name_52 WHERE nickname = "fightin' blue hens"
What is the total enrollment at the school that has the nickname of the Fightin' Blue Hens?
CREATE TABLE table_name_52 (enrollment VARCHAR, nickname VARCHAR)
SELECT AVG(Price), YEAR FROM WINE GROUP BY YEAR
What are the average prices of wines for different years?
CREATE TABLE WINE (YEAR VARCHAR, Price INTEGER)
SELECT T2.Building FROM COURSE AS T1 JOIN FACULTY AS T2 ON T1.Instructor = T2.FacID GROUP BY T1.Instructor ORDER BY COUNT(*) DESC LIMIT 1
Which building does the instructor who teaches the most number of courses live in?
CREATE TABLE COURSE (Instructor VARCHAR); CREATE TABLE FACULTY (Building VARCHAR, FacID VARCHAR)
SELECT date_departed FROM table_name_38 WHERE class = "grimsby class sloop"
What's the departed date for Grimsby Class Sloop?
CREATE TABLE table_name_38 (date_departed VARCHAR, class VARCHAR)
SELECT opening FROM table_name_77 WHERE white = "kramnik" AND year < 2001 AND tournament = "siemens giants"
What is Opening, when White is Kramnik, when Year is less than 2001, and when Tournament is "Siemens Giants"?
CREATE TABLE table_name_77 (opening VARCHAR, tournament VARCHAR, white VARCHAR, year VARCHAR)
SELECT COUNT(matches) FROM table_name_88 WHERE strike_rate < 152.3 AND balls = 395
Can you tell me the total number of Matched that has the Strike Rate smallet than 152.3, and the Balls of 395?
CREATE TABLE table_name_88 (matches VARCHAR, strike_rate VARCHAR, balls VARCHAR)
SELECT attendance FROM table_name_50 WHERE record = "6-1"
How many people were at the game with a record of 6-1?
CREATE TABLE table_name_50 (attendance VARCHAR, record VARCHAR)
SELECT finish FROM table_name_88 WHERE league = "al" AND year = 1939
In the Year 1939, what was the Finish when Al was the League?
CREATE TABLE table_name_88 (finish VARCHAR, league VARCHAR, year VARCHAR)
SELECT MIN(season) FROM table_20319085_2 WHERE conference_record = "4-3"
In what season was the conference record 4-3?
CREATE TABLE table_20319085_2 (season INTEGER, conference_record VARCHAR)
SELECT country FROM table_name_72 WHERE rank > 4
What country is ranked larger than 4?
CREATE TABLE table_name_72 (country VARCHAR, rank INTEGER)
SELECT qual_1 FROM table_name_87 WHERE team = "rusport" AND best = "58.665"
What is the qual 1 for rusport and had a best of 58.665?
CREATE TABLE table_name_87 (qual_1 VARCHAR, team VARCHAR, best VARCHAR)
SELECT killed FROM table_11793221_2 WHERE commander = "Major-General Jean Victor de Constant Rebecque"
How many where killed under Major-General Jean Victor de Constant Rebecque's command?
CREATE TABLE table_11793221_2 (killed VARCHAR, commander VARCHAR)
SELECT COUNT(score) FROM table_30049462_5 WHERE team = "Philadelphia"
what is the score in the philadelphia team
CREATE TABLE table_30049462_5 (score VARCHAR, team VARCHAR)
SELECT originalairdate FROM table_27218002_1 WHERE ratings = "2.19 Million"
Name the air date for ratings of 2.19 million
CREATE TABLE table_27218002_1 (originalairdate VARCHAR, ratings VARCHAR)
SELECT details FROM table_22577693_1 WHERE result = "Kuwait won by 72 runs Scorecard"
If the results are Kuwait won by 72 runs scorecard, what are the details?
CREATE TABLE table_22577693_1 (details VARCHAR, result VARCHAR)
SELECT date FROM table_name_16 WHERE visiting_team = "pittsburgh steelers"
Tell me the date for pittsburgh steelers
CREATE TABLE table_name_16 (date VARCHAR, visiting_team VARCHAR)
SELECT replaced_by FROM table_27374004_3 WHERE outgoing_manager = "Michel Preud'homme"
Who replaced Michel Preud'homme?
CREATE TABLE table_27374004_3 (replaced_by VARCHAR, outgoing_manager VARCHAR)
SELECT COUNT(total) FROM table_name_92 WHERE swimming_time__pts_ = "2:20.93 (1232)"
How many athletes had a Swimming Time (pts) of 2:20.93 (1232)?
CREATE TABLE table_name_92 (total VARCHAR, swimming_time__pts_ VARCHAR)
SELECT state__class_ FROM table_224839_3 WHERE reason_for_change = "Resigned November 26, 1798" AND vacator = "John Hunter ( DR )"
What are all the states (class) when the reason for change was resigned November 26, 1798 and the vacator was John Hunter ( DR )?
CREATE TABLE table_224839_3 (state__class_ VARCHAR, reason_for_change VARCHAR, vacator VARCHAR)
SELECT COUNT(*) FROM Person WHERE age > 30 AND job = 'engineer'
How many people whose age is greater 30 and job is engineer?
CREATE TABLE Person (age VARCHAR, job VARCHAR)
SELECT falcons_points FROM table_16710971_2 WHERE record = "4-4"
How many points did the Falcons score when the record was 4-4?
CREATE TABLE table_16710971_2 (falcons_points VARCHAR, record VARCHAR)
SELECT AVG(place) FROM table_name_14 WHERE song = "dis oui"
What is the average Place, when Song is "Dis Oui"?
CREATE TABLE table_name_14 (place INTEGER, song VARCHAR)
SELECT time FROM table_name_56 WHERE name = "gemma spofforth"
Gemma Spofforth has what time?
CREATE TABLE table_name_56 (time VARCHAR, name VARCHAR)
SELECT votes FROM table_name_81 WHERE residence = "halifax"
How many Votes, when the Residence is Halifax?
CREATE TABLE table_name_81 (votes VARCHAR, residence VARCHAR)
SELECT matches FROM table_name_43 WHERE wins = "1" AND name = "mohammad al-shamlan"
How many matches has Mohammad Al-Shamlan played when there is 1 win?
CREATE TABLE table_name_43 (matches VARCHAR, wins VARCHAR, name VARCHAR)
SELECT opponent FROM table_name_10 WHERE game = "73"
Who was the opponent for game 73?
CREATE TABLE table_name_10 (opponent VARCHAR, game VARCHAR)
SELECT casualties FROM table_name_71 WHERE circumstances = "combat" AND location = "fayzabad area"
How many casualties from the combat in the Fayzabad area?
CREATE TABLE table_name_71 (casualties VARCHAR, circumstances VARCHAR, location VARCHAR)
SELECT richmond_[staten_is] FROM table_name_90 WHERE the_bronx = "181,639"
How many voters were in Manhattan when 181,639 people voted in the Bronx?
CREATE TABLE table_name_90 (richmond_ VARCHAR, staten_is VARCHAR, the_bronx VARCHAR)
SELECT score FROM table_17311759_4 WHERE high_rebounds = "Zaza Pachulia (8)"
Give the score when high rebounds was zaza pachulia (8)
CREATE TABLE table_17311759_4 (score VARCHAR, high_rebounds VARCHAR)
SELECT result FROM table_name_81 WHERE year = 1994 AND tournament = "hypo-meeting"
What the result for the hypo-meeting tournament in 1994?
CREATE TABLE table_name_81 (result VARCHAR, year VARCHAR, tournament VARCHAR)
SELECT place FROM table_name_1 WHERE money___$__ > 300 AND score = 71 - 69 - 70 - 70 = 280
What is the Place of the Player with Money greater than 300 and a Score of 71-69-70-70=280?
CREATE TABLE table_name_1 (place VARCHAR, money___$__ VARCHAR, score VARCHAR)
SELECT COUNT(_percentage_2006) FROM table_21132404_1 WHERE political_parties = "Social Democratic Party of Germany"
How many time was the political party the social democratic party of germany?
CREATE TABLE table_21132404_1 (_percentage_2006 VARCHAR, political_parties VARCHAR)
SELECT 1 AS st_leg FROM table_name_66 WHERE competition = "uefa intertoto cup" AND club = "silkeborg"
What is the 1st leg of the uefa intertoto cup competition with club silkeborg?
CREATE TABLE table_name_66 (competition VARCHAR, club VARCHAR)
SELECT competition FROM table_name_45 WHERE date = "october 1, 1994"
What is the competition that took place on October 1, 1994?
CREATE TABLE table_name_45 (competition VARCHAR, date VARCHAR)
SELECT series_4 FROM table_name_70 WHERE series_1 = "sarah newman"
What is the series 4 with sarah newman in series 1?
CREATE TABLE table_name_70 (series_4 VARCHAR, series_1 VARCHAR)
SELECT Name FROM editor ORDER BY Age LIMIT 1
What is the name of the youngest editor?
CREATE TABLE editor (Name VARCHAR, Age VARCHAR)
SELECT week FROM table_name_91 WHERE result = "l 38-21"
Which week had a result of L 38-21?
CREATE TABLE table_name_91 (week VARCHAR, result VARCHAR)
SELECT nationality FROM table_name_57 WHERE player = "keith bogans" AND years_in_orlando = "2006–2009"
Which Nationality has a Player of keith bogans, and a Years in Orlando of 2006–2009?
CREATE TABLE table_name_57 (nationality VARCHAR, player VARCHAR, years_in_orlando VARCHAR)
SELECT MAX(s_acre) FROM table_28802165_1 WHERE civil_parish = "Castledermot"
What is the maximum acres in Castledermot?
CREATE TABLE table_28802165_1 (s_acre INTEGER, civil_parish VARCHAR)
SELECT MAX(losses) FROM table_name_62 WHERE percentage > 0.461 AND wins > 86 AND finish = "2nd" AND year = 1953
What is the most losses that the Royals had when they had a percentage over 0.461, won over 86 games, and finished 2nd in 1953?
CREATE TABLE table_name_62 (losses INTEGER, year VARCHAR, finish VARCHAR, percentage VARCHAR, wins VARCHAR)
SELECT AVG(facility_id) FROM table_name_64 WHERE call_sign = "wnpr"
WHich Facility ID has a Call sign of wnpr?
CREATE TABLE table_name_64 (facility_id INTEGER, call_sign VARCHAR)
SELECT AVG(cuts_made) FROM table_name_62 WHERE tournament = "totals" AND events > 24
What was the cuts average in tournament totals in an event larger than 24?
CREATE TABLE table_name_62 (cuts_made INTEGER, tournament VARCHAR, events VARCHAR)
SELECT SUM(points) FROM table_name_12 WHERE player = "tom hammond" AND extra_points > 12
How many points does Tom Hammond have if he has more than 12 points?
CREATE TABLE table_name_12 (points INTEGER, player VARCHAR, extra_points VARCHAR)
SELECT party AS a FROM table_22754310_1 WHERE runner_up_a = "M. S. K. Sathiyendran"
Name the party a for m. s. k. sathiyendran runner up
CREATE TABLE table_22754310_1 (party VARCHAR, runner_up_a VARCHAR)
SELECT points_against FROM table_name_10 WHERE played = "22" AND losing_bonus = "3" AND tries_against = "45"
For teams with 22 matches played, a losing bonus of 3, and 45 tries against, what was the number of points against?
CREATE TABLE table_name_10 (points_against VARCHAR, tries_against VARCHAR, played VARCHAR, losing_bonus VARCHAR)
SELECT event FROM table_name_98 WHERE location = "brighton, uk"
What bombing happened in Brighton, UK?
CREATE TABLE table_name_98 (event VARCHAR, location VARCHAR)
SELECT control FROM table_2076522_2 WHERE accreditation = "The Higher Learning Commission ( NCA ), CCNE"
What is the control for the school accredited by the higher learning commission ( nca ), ccne?
CREATE TABLE table_2076522_2 (control VARCHAR, accreditation VARCHAR)
SELECT AVG(laps) FROM table_name_75 WHERE driver = "david coulthard"
What's the average laps driven by david coulthard?
CREATE TABLE table_name_75 (laps INTEGER, driver VARCHAR)
SELECT COUNT(height__cm_) FROM table_18626383_2 WHERE contestant = "Valora Roucek"
When valora roucek is the contestant how many heights in centimeters are there?
CREATE TABLE table_18626383_2 (height__cm_ VARCHAR, contestant VARCHAR)
SELECT MIN(top_5) FROM table_name_74 WHERE top_10 < 1 AND top_25 < 1
What is the lowest top-5 of the tournament with less than 1 top-10 and less than 1 top-25?
CREATE TABLE table_name_74 (top_5 INTEGER, top_10 VARCHAR, top_25 VARCHAR)
SELECT MAX(tie_no) FROM table_name_45 WHERE home_team = "bolton wanderers" AND date = "middlesbrough"
What was the highest Tie no when the home team was the Bolton Wanderers, and the date was Middlesbrough?
CREATE TABLE table_name_45 (tie_no INTEGER, home_team VARCHAR, date VARCHAR)
SELECT score FROM table_name_97 WHERE surface = "clay" AND opponent = "pablo martin-adalia"
What is the Score of the tournament played on Clay Surface against Pablo Martin-Adalia?
CREATE TABLE table_name_97 (score VARCHAR, surface VARCHAR, opponent VARCHAR)