Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
57,000
<question>: What team did they play when the series was 1-1? <context>: CREATE TABLE table_name_51 (team VARCHAR, series VARCHAR)
SELECT team FROM table_name_51 WHERE series = "1-1"
57,001
<question>: What were the high points on May 12? <context>: CREATE TABLE table_name_4 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_name_4 WHERE date = "may 12"
57,002
<question>: What was the team they played when the series was 2-1? <context>: CREATE TABLE table_name_76 (team VARCHAR, series VARCHAR)
SELECT team FROM table_name_76 WHERE series = "2-1"
57,003
<question>: who is the opponent on february 8, 1990? <context>: CREATE TABLE table_name_23 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_23 WHERE date = "february 8, 1990"
57,004
<question>: who is the opponent when the streak is won 9 on april 13, 1990? <context>: CREATE TABLE table_name_3 (opponent VARCHAR, streak VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_3 WHERE streak = "won 9" AND date = "april 13, 1990"
57,005
<question>: What is the total number of # Of Prefectural Votes, when # Of Seats Won is greater than 69, and when Leader is Yasuhiro Nakasone? <context>: CREATE TABLE table_name_54 (_number_of_prefectural_votes VARCHAR, _number_of_seats_won VARCHAR, leader VARCHAR)
SELECT COUNT(_number_of_prefectural_votes) FROM table_name_54 WHERE _number_of_seats_won > 69 AND leader = "yasuhiro nakasone"
57,006
<question>: What is the average # Of National Votes, when the Election is before 1992, when the % Of Prefectural Vote is 39.5%, when Leader is Takeo Fukuda, and when # Of Seats Won is greater than 63? <context>: CREATE TABLE table_name_30 (_number_of_national_votes INTEGER, _number_of_seats_won VARCHAR, leader VARCHAR, election VARCHAR, _percentage_of_prefectural_vote VARCHAR)
SELECT AVG(_number_of_national_votes) FROM table_name_30 WHERE election < 1992 AND _percentage_of_prefectural_vote = "39.5%" AND leader = "takeo fukuda" AND _number_of_seats_won > 63
57,007
<question>: What is the total number of # Of Prefectural Votes, when % Of Prefectural Vote is 48.4%, and when # Of Seats Won is greater than 61? <context>: CREATE TABLE table_name_37 (_number_of_prefectural_votes VARCHAR, _percentage_of_prefectural_vote VARCHAR, _number_of_seats_won VARCHAR)
SELECT COUNT(_number_of_prefectural_votes) FROM table_name_37 WHERE _percentage_of_prefectural_vote = "48.4%" AND _number_of_seats_won > 61
57,008
<question>: What was the resolution of the fight against steve schneider? <context>: CREATE TABLE table_name_25 (res VARCHAR, opponent VARCHAR)
SELECT res FROM table_name_25 WHERE opponent = "steve schneider"
57,009
<question>: What was the resolution of the fight when matt grice had a record of 2-0? <context>: CREATE TABLE table_name_89 (res VARCHAR, record VARCHAR)
SELECT res FROM table_name_89 WHERE record = "2-0"
57,010
<question>: What was the record when matt grice fought dennis bermudez with a time of 5:00? <context>: CREATE TABLE table_name_36 (record VARCHAR, time VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_36 WHERE time = "5:00" AND opponent = "dennis bermudez"
57,011
<question>: What was the outcome of the match against Juan Ignacio Chela? <context>: CREATE TABLE table_name_51 (outcome VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_name_51 WHERE opponent = "juan ignacio chela"
57,012
<question>: What is the 250 cc with a year bigger than 1984? <context>: CREATE TABLE table_name_89 (year INTEGER)
SELECT 250 AS _cc FROM table_name_89 WHERE year > 1984
57,013
<question>: How much did Jerry Barber score to come in at T9? <context>: CREATE TABLE table_name_79 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT score FROM table_name_79 WHERE place = "t9" AND player = "jerry barber"
57,014
<question>: What place did Jerry Barber of the United States come in at? <context>: CREATE TABLE table_name_92 (place VARCHAR, country VARCHAR, player VARCHAR)
SELECT place FROM table_name_92 WHERE country = "united states" AND player = "jerry barber"
57,015
<question>: What score did Ed Furgol get to come in at T6? <context>: CREATE TABLE table_name_7 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT score FROM table_name_7 WHERE place = "t6" AND player = "ed furgol"
57,016
<question>: What score did Ted Kroll get to come in at T2? <context>: CREATE TABLE table_name_80 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT score FROM table_name_80 WHERE place = "t2" AND player = "ted kroll"
57,017
<question>: Where is Fred Haas from? <context>: CREATE TABLE table_name_15 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_15 WHERE player = "fred haas"
57,018
<question>: Where is Fred Haas from? <context>: CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_93 WHERE player = "fred haas"
57,019
<question>: What is Position, when School/Club Team is McMaster? <context>: CREATE TABLE table_name_34 (position VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_name_34 WHERE school_club_team = "mcmaster"
57,020
<question>: What is the lowest Round, when Pick is 9 (via Hamilton)? <context>: CREATE TABLE table_name_66 (round INTEGER, pick VARCHAR)
SELECT MIN(round) FROM table_name_66 WHERE pick = "9 (via hamilton)"
57,021
<question>: What is Pick, when Position is OL, and when Round is less than 6? <context>: CREATE TABLE table_name_59 (pick VARCHAR, position VARCHAR, round VARCHAR)
SELECT pick FROM table_name_59 WHERE position = "ol" AND round < 6
57,022
<question>: What is School/Club Team, when Pick is 9 (via Hamilton)? <context>: CREATE TABLE table_name_38 (school_club_team VARCHAR, pick VARCHAR)
SELECT school_club_team FROM table_name_38 WHERE pick = "9 (via hamilton)"
57,023
<question>: What is the Result of the game with an Attendance of 55,353? <context>: CREATE TABLE table_name_53 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_53 WHERE attendance = "55,353"
57,024
<question>: In what Week was the Attendance 39,923? <context>: CREATE TABLE table_name_71 (week INTEGER, attendance VARCHAR)
SELECT SUM(week) FROM table_name_71 WHERE attendance = "39,923"
57,025
<question>: What was the Result of the game after Week 9 with an Attendance of 69,714? <context>: CREATE TABLE table_name_70 (result VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_70 WHERE week > 9 AND attendance = "69,714"
57,026
<question>: What Week falls on September 4, 1994? <context>: CREATE TABLE table_name_49 (week INTEGER, date VARCHAR)
SELECT AVG(week) FROM table_name_49 WHERE date = "september 4, 1994"
57,027
<question>: What is Pos., when Player is "Nigel De Jong"? <context>: CREATE TABLE table_name_33 (pos VARCHAR, player VARCHAR)
SELECT pos FROM table_name_33 WHERE player = "nigel de jong"
57,028
<question>: What is From Club, when Player is "Robinho"? <context>: CREATE TABLE table_name_80 (from_club VARCHAR, player VARCHAR)
SELECT from_club FROM table_name_80 WHERE player = "robinho"
57,029
<question>: What is Pos., when From Club is "CSKA Moscow"? <context>: CREATE TABLE table_name_20 (pos VARCHAR, from_club VARCHAR)
SELECT pos FROM table_name_20 WHERE from_club = "cska moscow"
57,030
<question>: What is Pos., when From Club is "Chelsea", and when Date is "30 July 2008"? <context>: CREATE TABLE table_name_66 (pos VARCHAR, from_club VARCHAR, date VARCHAR)
SELECT pos FROM table_name_66 WHERE from_club = "chelsea" AND date = "30 july 2008"
57,031
<question>: What is the team 2 for the match with a team 1 of Panathinaikos? <context>: CREATE TABLE table_name_34 (team_2 VARCHAR, team_1 VARCHAR)
SELECT team_2 FROM table_name_34 WHERE team_1 = "panathinaikos"
57,032
<question>: What was the first leg score for the match with a team 1 of Panathinaikos? <context>: CREATE TABLE table_name_59 (team_1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_59 WHERE team_1 = "panathinaikos"
57,033
<question>: What is the 2nd leg score for the match with a team 2 of Werder Bremen? <context>: CREATE TABLE table_name_48 (team_2 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_48 WHERE team_2 = "werder bremen"
57,034
<question>: Who is the kitmaker for Fc Augsburg? <context>: CREATE TABLE table_name_38 (kitmaker VARCHAR, team VARCHAR)
SELECT kitmaker FROM table_name_38 WHERE team = "fc augsburg"
57,035
<question>: Who is the head coach of the team, whose shirt sponsor is karstadt quelle versicherungen? <context>: CREATE TABLE table_name_34 (head_coach VARCHAR, shirt_sponsor VARCHAR)
SELECT head_coach FROM table_name_34 WHERE shirt_sponsor = "karstadt quelle versicherungen"
57,036
<question>: Who is the kitmaker for the team that Uwe Rapolder is the head coach of. <context>: CREATE TABLE table_name_84 (kitmaker VARCHAR, head_coach VARCHAR)
SELECT kitmaker FROM table_name_84 WHERE head_coach = "uwe rapolder"
57,037
<question>: Who is the team captain of the team that Lübzer is the shirt sponsor for? <context>: CREATE TABLE table_name_88 (team VARCHAR, shirt_sponsor VARCHAR)
SELECT team AS captain FROM table_name_88 WHERE shirt_sponsor = "lübzer"
57,038
<question>: What was the date of the game number 22? <context>: CREATE TABLE table_name_25 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_25 WHERE game = 22
57,039
<question>: What is the Director from Paramount with a Film with a Gross of $128,152,301? <context>: CREATE TABLE table_name_63 (director VARCHAR, studio VARCHAR, gross VARCHAR)
SELECT director FROM table_name_63 WHERE studio = "paramount" AND gross = "$128,152,301"
57,040
<question>: What is the Studio of the Rank 10 Film? <context>: CREATE TABLE table_name_98 (studio VARCHAR, rank VARCHAR)
SELECT studio FROM table_name_98 WHERE rank = 10
57,041
<question>: What is the release date of the album written by Ford, Phil Phil Ford under BBC Audio? <context>: CREATE TABLE table_name_12 (release_date VARCHAR, company VARCHAR, writer VARCHAR)
SELECT release_date FROM table_name_12 WHERE company = "bbc audio" AND writer = "ford, phil phil ford"
57,042
<question>: What is the release date of the album written by Goss, James James Goss under Audiogo? <context>: CREATE TABLE table_name_36 (release_date VARCHAR, writer VARCHAR, company VARCHAR)
SELECT release_date FROM table_name_36 WHERE writer = "goss, james james goss" AND company = "audiogo"
57,043
<question>: Who is the company that released the album on 2008-09-18 18 September 2008? <context>: CREATE TABLE table_name_76 (company VARCHAR, release_date VARCHAR)
SELECT company FROM table_name_76 WHERE release_date = "2008-09-18 18 september 2008"
57,044
<question>: Notre-Dame-De-Lourdes has what average area km 2? <context>: CREATE TABLE table_name_46 (area_km_2 INTEGER, official_name VARCHAR)
SELECT AVG(area_km_2) FROM table_name_46 WHERE official_name = "notre-dame-de-lourdes"
57,045
<question>: Saint-Jacques has what as the area km 2? <context>: CREATE TABLE table_name_73 (area_km_2 VARCHAR, official_name VARCHAR)
SELECT area_km_2 FROM table_name_73 WHERE official_name = "saint-jacques"
57,046
<question>: With an area km 2 of 343.95 what is the official name? <context>: CREATE TABLE table_name_38 (official_name VARCHAR, area_km_2 VARCHAR)
SELECT official_name FROM table_name_38 WHERE area_km_2 = 343.95
57,047
<question>: Saint-Basile has what status? <context>: CREATE TABLE table_name_32 (status VARCHAR, official_name VARCHAR)
SELECT status FROM table_name_32 WHERE official_name = "saint-basile"
57,048
<question>: What circuit has qualifying as the session? <context>: CREATE TABLE table_name_77 (circuit VARCHAR, session VARCHAR)
SELECT circuit FROM table_name_77 WHERE session = "qualifying"
57,049
<question>: The 1997 Japanese Formula 3 Championship is part of what circuit? <context>: CREATE TABLE table_name_63 (circuit VARCHAR, event VARCHAR)
SELECT circuit FROM table_name_63 WHERE event = "1997 japanese formula 3 championship"
57,050
<question>: The Fall Nationals has what sessions? <context>: CREATE TABLE table_name_84 (session VARCHAR, event VARCHAR)
SELECT session FROM table_name_84 WHERE event = "fall nationals"
57,051
<question>: The 1977 Japanese Grand Prix in the open wheel discipline has what session? <context>: CREATE TABLE table_name_78 (session VARCHAR, discipline VARCHAR, event VARCHAR)
SELECT session FROM table_name_78 WHERE discipline = "open wheel" AND event = "1977 japanese grand prix"
57,052
<question>: What circuit has a race for the session, and open wheel as the discipline, and the 1977 Japanese Grand Prix as the event? <context>: CREATE TABLE table_name_42 (circuit VARCHAR, event VARCHAR, session VARCHAR, discipline VARCHAR)
SELECT circuit FROM table_name_42 WHERE session = "race" AND discipline = "open wheel" AND event = "1977 japanese grand prix"
57,053
<question>: For what cause is Touring Car Racing the discipline? <context>: CREATE TABLE table_name_91 (cause VARCHAR, discipline VARCHAR)
SELECT cause FROM table_name_91 WHERE discipline = "touring car racing"
57,054
<question>: What player scored 70-73-69-72=284? <context>: CREATE TABLE table_name_39 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_39 WHERE score = 70 - 73 - 69 - 72 = 284
57,055
<question>: What is the lowest amount of money that Craig Stadler won? <context>: CREATE TABLE table_name_64 (money___ INTEGER, player VARCHAR)
SELECT MIN(money___) AS $__ FROM table_name_64 WHERE player = "craig stadler"
57,056
<question>: What country is David Graham from? <context>: CREATE TABLE table_name_94 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_94 WHERE player = "david graham"
57,057
<question>: What is the total amount of money that the United States one with a To par of –2? <context>: CREATE TABLE table_name_93 (money___ VARCHAR, country VARCHAR, to_par VARCHAR)
SELECT COUNT(money___) AS $__ FROM table_name_93 WHERE country = "united states" AND to_par = "–2"
57,058
<question>: What score did Jack Nicklaus have when he placed t6? <context>: CREATE TABLE table_name_92 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT score FROM table_name_92 WHERE place = "t6" AND player = "jack nicklaus"
57,059
<question>: How much money has a to par of E? <context>: CREATE TABLE table_name_14 (money___ VARCHAR, to_par VARCHAR)
SELECT COUNT(money___) AS $__ FROM table_name_14 WHERE to_par = "e"
57,060
<question>: What was the location on October 16? <context>: CREATE TABLE table_name_29 (location VARCHAR, date VARCHAR)
SELECT location FROM table_name_29 WHERE date = "october 16"
57,061
<question>: Who was the winner when the result was 56-0 before 1935? <context>: CREATE TABLE table_name_53 (winner VARCHAR, year VARCHAR, result VARCHAR)
SELECT winner FROM table_name_53 WHERE year < 1935 AND result = "56-0"
57,062
<question>: Who was the winner in philadelphia municipal stadium in 1939? <context>: CREATE TABLE table_name_31 (winner VARCHAR, location VARCHAR, year VARCHAR)
SELECT winner FROM table_name_31 WHERE location = "philadelphia municipal stadium" AND year = 1939
57,063
<question>: What was the earliest year that the result 21-17? <context>: CREATE TABLE table_name_51 (year INTEGER, result VARCHAR)
SELECT MIN(year) FROM table_name_51 WHERE result = "21-17"
57,064
<question>: What was the location after 1934 that Philadelphia Eagles lost on October 15? <context>: CREATE TABLE table_name_98 (location VARCHAR, date VARCHAR, year VARCHAR, loser VARCHAR)
SELECT location FROM table_name_98 WHERE year > 1934 AND loser = "philadelphia eagles" AND date = "october 15"
57,065
<question>: When did chang myon (장면) leave office? <context>: CREATE TABLE table_name_96 (left_office VARCHAR, romanized__hangul_ VARCHAR)
SELECT left_office FROM table_name_96 WHERE romanized__hangul_ = "chang myon (장면)"
57,066
<question>: When did the vice president with a vice over 6 take office? <context>: CREATE TABLE table_name_53 (took_office VARCHAR, vice INTEGER)
SELECT took_office FROM table_name_53 WHERE vice > 6
57,067
<question>: What province in Tumbes has less than 11 districts and a UBIGEO of 2401? <context>: CREATE TABLE table_name_9 (province VARCHAR, ubigeo VARCHAR, districts VARCHAR, region VARCHAR)
SELECT province FROM table_name_9 WHERE districts < 11 AND region = "tumbes" AND ubigeo = 2401
57,068
<question>: What is Chepén's average UBIGEO? <context>: CREATE TABLE table_name_34 (ubigeo INTEGER, province VARCHAR)
SELECT AVG(ubigeo) FROM table_name_34 WHERE province = "chepén"
57,069
<question>: What is the region for Chepén with 3 districts? <context>: CREATE TABLE table_name_63 (region VARCHAR, districts VARCHAR, capital VARCHAR)
SELECT region FROM table_name_63 WHERE districts = 3 AND capital = "chepén"
57,070
<question>: What is the Diameter (km) of the Valle with a Longitude of 152.5e named before 1997? <context>: CREATE TABLE table_name_52 (diameter__km_ INTEGER, longitude VARCHAR, year_named VARCHAR)
SELECT MAX(diameter__km_) FROM table_name_52 WHERE longitude = "152.5e" AND year_named < 1997
57,071
<question>: What is the Year named of the Ganga Valles? <context>: CREATE TABLE table_name_39 (year_named INTEGER, name VARCHAR)
SELECT MAX(year_named) FROM table_name_39 WHERE name = "ganga valles"
57,072
<question>: What is the Latitude of the Alajen Vallis named after 1997? <context>: CREATE TABLE table_name_86 (latitude VARCHAR, year_named VARCHAR, name VARCHAR)
SELECT latitude FROM table_name_86 WHERE year_named > 1997 AND name = "alajen vallis"
57,073
<question>: What is the release date with par116 as the cat. #? <context>: CREATE TABLE table_name_96 (release_date VARCHAR, cat__number VARCHAR)
SELECT release_date FROM table_name_96 WHERE cat__number = "par116"
57,074
<question>: What is the title released on 24 July 2005? <context>: CREATE TABLE table_name_87 (title VARCHAR, release_date VARCHAR)
SELECT title FROM table_name_87 WHERE release_date = "24 july 2005"
57,075
<question>: What is Record, when High Points is "Thaddeus Young (19)", and when Team is "@ Orlando"? <context>: CREATE TABLE table_name_2 (record VARCHAR, high_points VARCHAR, team VARCHAR)
SELECT record FROM table_name_2 WHERE high_points = "thaddeus young (19)" AND team = "@ orlando"
57,076
<question>: What is High Rebounds, when Location Attendance is "Time Warner Cable Arena 10,848"? <context>: CREATE TABLE table_name_14 (high_rebounds VARCHAR, location_attendance VARCHAR)
SELECT high_rebounds FROM table_name_14 WHERE location_attendance = "time warner cable arena 10,848"
57,077
<question>: Can you tell me the lowest Losses that has the Gains smaller than 0? <context>: CREATE TABLE table_name_24 (losses INTEGER, gains INTEGER)
SELECT MIN(losses) FROM table_name_24 WHERE gains < 0
57,078
<question>: what is the record when marc gasol (8) had the high rebounds? <context>: CREATE TABLE table_name_23 (record VARCHAR, high_rebounds VARCHAR)
SELECT record FROM table_name_23 WHERE high_rebounds = "marc gasol (8)"
57,079
<question>: what is the score on march 8? <context>: CREATE TABLE table_name_40 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_40 WHERE date = "march 8"
57,080
<question>: who had the high assists on march 30? <context>: CREATE TABLE table_name_78 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_name_78 WHERE date = "march 30"
57,081
<question>: Which location has a capacity greater than 51,500? <context>: CREATE TABLE table_name_43 (location VARCHAR, capacity INTEGER)
SELECT location FROM table_name_43 WHERE capacity > 51 OFFSET 500
57,082
<question>: Who was the rider who had less than 30 laps, ended in an accident with a car manufactured by yamaha on a grid larger than 3? <context>: CREATE TABLE table_name_30 (rider VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR, manufacturer VARCHAR)
SELECT rider FROM table_name_30 WHERE laps < 30 AND manufacturer = "yamaha" AND time = "accident" AND grid > 3
57,083
<question>: Who was the manufacturer for the race on grid 12? <context>: CREATE TABLE table_name_49 (manufacturer VARCHAR, grid VARCHAR)
SELECT manufacturer FROM table_name_49 WHERE grid = 12
57,084
<question>: Who was the manufacturer for the car that dani pedrosa did less than 9 laps in? <context>: CREATE TABLE table_name_86 (manufacturer VARCHAR, laps VARCHAR, rider VARCHAR)
SELECT manufacturer FROM table_name_86 WHERE laps < 9 AND rider = "dani pedrosa"
57,085
<question>: How many laps did the driver with the yamaha manufacturer go on grid 3? <context>: CREATE TABLE table_name_61 (laps VARCHAR, manufacturer VARCHAR, grid VARCHAR)
SELECT laps FROM table_name_61 WHERE manufacturer = "yamaha" AND grid = 3
57,086
<question>: What is the time in Baltimore? <context>: CREATE TABLE table_name_9 (time VARCHAR, city VARCHAR)
SELECT time FROM table_name_9 WHERE city = "baltimore"
57,087
<question>: What date was the score 1-8? <context>: CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_96 WHERE score = "1-8"
57,088
<question>: What is the event where the opponent was Chris Barden? <context>: CREATE TABLE table_name_12 (event VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_12 WHERE opponent = "chris barden"
57,089
<question>: What is the Surface of the Court in Napoli? <context>: CREATE TABLE table_name_26 (surface VARCHAR, tournament VARCHAR)
SELECT surface FROM table_name_26 WHERE tournament = "napoli"
57,090
<question>: What is the Outcome of the game with a Score of 6–4, 6–4? <context>: CREATE TABLE table_name_45 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_45 WHERE score = "6–4, 6–4"
57,091
<question>: What is the Outcome of the game against Frederic Jeanclaude? <context>: CREATE TABLE table_name_55 (outcome VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_name_55 WHERE opponent = "frederic jeanclaude"
57,092
<question>: What is the Opponent in a game with a Score of 6–2, 6–2? <context>: CREATE TABLE table_name_66 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_66 WHERE score = "6–2, 6–2"
57,093
<question>: What is the Surface of the court against Ivo Klec with a Score of 6–3, 6–3? <context>: CREATE TABLE table_name_61 (surface VARCHAR, opponent VARCHAR, score VARCHAR)
SELECT surface FROM table_name_61 WHERE opponent = "ivo klec" AND score = "6–3, 6–3"
57,094
<question>: Who was the player with a score of 70-69=139? <context>: CREATE TABLE table_name_37 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_37 WHERE score = 70 - 69 = 139
57,095
<question>: What country did Bart Bryant with a score of 69-70=139 belong to? <context>: CREATE TABLE table_name_37 (country VARCHAR, player VARCHAR, score VARCHAR)
SELECT country FROM table_name_37 WHERE score = 69 - 70 = 139 AND player = "bart bryant"
57,096
<question>: What is the country that the player with a score of 70-69=139 from? <context>: CREATE TABLE table_name_43 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_43 WHERE score = 70 - 69 = 139
57,097
<question>: In what place did the player with a score of 66-67=133 come in? <context>: CREATE TABLE table_name_98 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_98 WHERE score = 66 - 67 = 133
57,098
<question>: What country was the player from who placed t3 with a score of 70-68=138? <context>: CREATE TABLE table_name_81 (country VARCHAR, place VARCHAR, score VARCHAR)
SELECT country FROM table_name_81 WHERE place = "t3" AND score = 70 - 68 = 138
57,099
<question>: What was the score for the player from Scotland? <context>: CREATE TABLE table_name_76 (score VARCHAR, country VARCHAR)
SELECT score FROM table_name_76 WHERE country = "scotland"