answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT MAX(inhabitants_per_mep) FROM table_name_26 WHERE meps > 50 AND member_state = "germany" AND population_millions < 82.43
What is the highest number of inhabitants per MEP that has MEPs larger than 50, a member of Germany, and a population less than 82.43 million?
CREATE TABLE table_name_26 (inhabitants_per_mep INTEGER, population_millions VARCHAR, meps VARCHAR, member_state VARCHAR)
SELECT COUNT(points) FROM table_name_75 WHERE against = 753 AND points_diff > -114
I want the total number of points for against of 753 and points diff more than -114
CREATE TABLE table_name_75 (points VARCHAR, against VARCHAR, points_diff VARCHAR)
SELECT manufacturer FROM table_2226343_1 WHERE date = "June 22"
Who is the manufacturer for the date of June 22?
CREATE TABLE table_2226343_1 (manufacturer VARCHAR, date VARCHAR)
SELECT marowijne FROM table_name_2 WHERE saramacca = "18.8%"
What is the marowijne with an 18.8% saramacca?
CREATE TABLE table_name_2 (marowijne VARCHAR, saramacca VARCHAR)
SELECT height_ft___m FROM table_name_77 WHERE name = "555 17th street"
What is the height of the building named 555 17th street?
CREATE TABLE table_name_77 (height_ft___m VARCHAR, name VARCHAR)
SELECT date FROM table_20928649_1 WHERE record = "1-2"
What game date had the record of 1-2?
CREATE TABLE table_20928649_1 (date VARCHAR, record VARCHAR)
SELECT total FROM table_name_49 WHERE opponent = "csb uphds"
When the opposing team was CSB UPHDS what was the total?
CREATE TABLE table_name_49 (total VARCHAR, opponent VARCHAR)
SELECT race FROM table_name_80 WHERE place = "2nd" AND season = 1996 AND date = "20-jan-1996"
Which race resulted in 2nd place in the 1996 season on 20-Jan-1996?
CREATE TABLE table_name_80 (race VARCHAR, date VARCHAR, place VARCHAR, season VARCHAR)
SELECT opponent FROM table_name_11 WHERE city = "baltimore" AND time = "2:00pm" AND date = "4/06/08"
What team was opponen in baltimore, at 2:00pm, on 4/06/08?
CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR, city VARCHAR, time VARCHAR)
SELECT AVG(grid) FROM table_name_68 WHERE time_retired = "spun off" AND laps > 64
What's the average Grid for those who spun off after Lap 64?
CREATE TABLE table_name_68 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
SELECT college_junior_club_team FROM table_2781227_1 WHERE player = "Mats Lindgren"
What is the college/junior/club team name of player Mats Lindgren?
CREATE TABLE table_2781227_1 (college_junior_club_team VARCHAR, player VARCHAR)
SELECT SUM(change) FROM table_name_89 WHERE _percentage_votes < 4.7 AND seats > 0
What is the change number with fewer than 4.7% votes and more than 0 seats?
CREATE TABLE table_name_89 (change INTEGER, _percentage_votes VARCHAR, seats VARCHAR)
SELECT winners FROM table_name_77 WHERE not_winning_editions = "1992, 2003"
Who is Winners that has editions of 1992, 2003 as Not Winning
CREATE TABLE table_name_77 (winners VARCHAR, not_winning_editions VARCHAR)
SELECT written_by FROM table_name_5 WHERE prod_code > 1.4 AND directed_by = "rick wallace"
Who wrote the episode with a production code greater than 1.4 direcyed by rick wallace?
CREATE TABLE table_name_5 (written_by VARCHAR, prod_code VARCHAR, directed_by VARCHAR)
SELECT city FROM table_name_33 WHERE floors > 57
What city has a building with over 57 floors?
CREATE TABLE table_name_33 (city VARCHAR, floors INTEGER)
SELECT us_viewers__million_ FROM table_27116696_1 WHERE directed_by = "Allison Liddi-Brown"
How many U.S. viewers (million) watched the episode directed by Allison Liddi-Brown?
CREATE TABLE table_27116696_1 (us_viewers__million_ VARCHAR, directed_by VARCHAR)
SELECT opponent FROM table_name_73 WHERE competition = "challenge" AND result = "8-2 w"
Which opponent completed a challenge competition with a result of 8-2 w?
CREATE TABLE table_name_73 (opponent VARCHAR, competition VARCHAR, result VARCHAR)
SELECT COUNT(french_head_of_state) FROM table_29474481_4 WHERE head_of_mission = "Xavier Daufresne de la Chevalerie"
How many French heads of state have a head of mission of Xavier Daufresne de la Chevalerie?
CREATE TABLE table_29474481_4 (french_head_of_state VARCHAR, head_of_mission VARCHAR)
SELECT rōmaji FROM table_2144389_8 WHERE japanese_translation = "By Your Side ~Hikari's Theme~ (PopUp.Version)"
Name the romaji by your side ~hikari's theme~ (popup.version)
CREATE TABLE table_2144389_8 (rōmaji VARCHAR, japanese_translation VARCHAR)
SELECT T2.name, T1.team_id_winner FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T1.year = 2008 GROUP BY T1.team_id_winner ORDER BY COUNT(*) DESC LIMIT 1
What are the name and id of the team with the most victories in 2008 postseason?
CREATE TABLE postseason (team_id_winner VARCHAR, year VARCHAR); CREATE TABLE team (name VARCHAR, team_id_br VARCHAR)
SELECT opponent_number FROM table_name_1 WHERE attendance = "48,165"
Who were the opponents when there was an attendance of 48,165?
CREATE TABLE table_name_1 (opponent_number VARCHAR, attendance VARCHAR)
SELECT COUNT(municipal_mayor) FROM table_216776_2 WHERE area__km²_ = "42.66"
How many different municipal mayors were there in the municipality with an area of 42.66 km2?
CREATE TABLE table_216776_2 (municipal_mayor VARCHAR, area__km²_ VARCHAR)
SELECT MIN(goalsfor) FROM table_name_38 WHERE season = "2002–03" AND lost > 14
Season of 2002–03, and a Lost larger than 14, what is the lowest goals?
CREATE TABLE table_name_38 (goalsfor INTEGER, season VARCHAR, lost VARCHAR)
SELECT score FROM table_11622896_1 WHERE location = "Oregon"
What is the score for the Oregon location?
CREATE TABLE table_11622896_1 (score VARCHAR, location VARCHAR)
SELECT crowd FROM table_name_15 WHERE score = "w 7-6"
How many people attended the score of w 7-6?
CREATE TABLE table_name_15 (crowd VARCHAR, score VARCHAR)
SELECT SUM(elevation__m_) FROM table_name_45 WHERE prominence__m_ > 1 OFFSET 754
How much Elevation (m) has a Prominence (m) larger than 1,754?
CREATE TABLE table_name_45 (elevation__m_ INTEGER, prominence__m_ INTEGER)
SELECT read_by FROM table_name_55 WHERE un__abridged = "unabridged" AND author = "john d. fitzgerald"
Who read the unabridged novel written by John D. Fitzgerald?
CREATE TABLE table_name_55 (read_by VARCHAR, un__abridged VARCHAR, author VARCHAR)
SELECT date__opening_ FROM table_name_5 WHERE year < 2010 AND date__closing_ = "september 28"
What is Date (Opening), when Year is less than 2010, and when Date (Closing) is "September 28"?
CREATE TABLE table_name_5 (date__opening_ VARCHAR, year VARCHAR, date__closing_ VARCHAR)
SELECT driver FROM table_name_77 WHERE points = "35+3"
Which driver had 35+3 points?
CREATE TABLE table_name_77 (driver VARCHAR, points VARCHAR)
SELECT COUNT(current_status) FROM table_25597136_1 WHERE date_first_lit = "1853"
The date first lit is 1853 total number of current status.
CREATE TABLE table_25597136_1 (current_status VARCHAR, date_first_lit VARCHAR)
SELECT SUM(year) FROM table_name_19 WHERE round_1 = "66" AND money__$_ > 400 OFFSET 000
Round 1 of 66, and a Money ($) larger than 400,000 has what sum of year?
CREATE TABLE table_name_19 (year INTEGER, round_1 VARCHAR, money__$_ VARCHAR)
SELECT speed FROM table_name_55 WHERE rider = "john hildreth"
What was John Hildreth's speed?
CREATE TABLE table_name_55 (speed VARCHAR, rider VARCHAR)
SELECT winner FROM table_name_11 WHERE third_place = "fernando meligeni"
Who was the winner when the third place was fernando meligeni?
CREATE TABLE table_name_11 (winner VARCHAR, third_place VARCHAR)
SELECT SUM(week) FROM table_name_7 WHERE date = "december 2, 2001"
What is the sum of Week, when Date is December 2, 2001?
CREATE TABLE table_name_7 (week INTEGER, date VARCHAR)
SELECT 1 AS st_leg FROM table_name_45 WHERE team_1 = "portol palma mallorca"
What is 1st Leg, when Team 1 is "Portol Palma Mallorca"?
CREATE TABLE table_name_45 (team_1 VARCHAR)
SELECT us_viewers__million_ FROM table_22904707_1 WHERE no = 63
How many million viewers did episode number 63 have?
CREATE TABLE table_22904707_1 (us_viewers__million_ VARCHAR, no VARCHAR)
SELECT MAX(asian_american_population__2010_) FROM table_18963843_1 WHERE combined_statistical_area = "Kansas City-Overland Park-Kansas City, MO-KS CSA"
Name the asian american population 2010 for kansas city-overland park-kansas city, mo-ks csa
CREATE TABLE table_18963843_1 (asian_american_population__2010_ INTEGER, combined_statistical_area VARCHAR)
SELECT AVG(attendance) FROM table_name_5 WHERE visitor = "ottawa"
What was the attendance at the game against Ottawa?
CREATE TABLE table_name_5 (attendance INTEGER, visitor VARCHAR)
SELECT rank FROM table_name_35 WHERE goals > 10 AND scorer = "choi sang-kuk"
Which Rank has Goals larger than 10, and a Scorer of choi sang-kuk?
CREATE TABLE table_name_35 (rank VARCHAR, goals VARCHAR, scorer VARCHAR)
SELECT number FROM table_name_22 WHERE position = "skaters"
Which number plays the skaters position?
CREATE TABLE table_name_22 (number VARCHAR, position VARCHAR)
SELECT institution FROM table_255188_1 WHERE joined = 1988
What institution joined in 1988?
CREATE TABLE table_255188_1 (institution VARCHAR, joined VARCHAR)
SELECT competition FROM table_name_28 WHERE venue = "wilderspool"
Which competition was at wilderspool?
CREATE TABLE table_name_28 (competition VARCHAR, venue VARCHAR)
SELECT soccer_stadium FROM table_27369069_4 WHERE varsity_name = "Citadins"
What is the soccer stadium with the varsity name is citadins?
CREATE TABLE table_27369069_4 (soccer_stadium VARCHAR, varsity_name VARCHAR)
SELECT Gender, Occupation FROM player
What are the gender and occupation of players?
CREATE TABLE player (Gender VARCHAR, Occupation VARCHAR)
SELECT segment_a FROM table_15187735_5 WHERE segment_c = "Cardboard Boxes"
When cardboard boxes is segment c what is segment a?
CREATE TABLE table_15187735_5 (segment_a VARCHAR, segment_c VARCHAR)
SELECT T1.title FROM course AS T1 JOIN prereq AS T2 ON T1.course_id = T2.course_id GROUP BY T2.course_id HAVING COUNT(*) = 2
Find the title of courses that have two prerequisites?
CREATE TABLE prereq (course_id VARCHAR); CREATE TABLE course (title VARCHAR, course_id VARCHAR)
SELECT date FROM table_name_51 WHERE game = 2
Can you tell me the Date that has the Game of 2?
CREATE TABLE table_name_51 (date VARCHAR, game VARCHAR)
SELECT COUNT(no) FROM table_11545282_7 WHERE years_for_jazz = "2010"
How many players only played for the Jazz in only 2010?
CREATE TABLE table_11545282_7 (no VARCHAR, years_for_jazz VARCHAR)
SELECT college FROM table_name_59 WHERE player = "reuben foster"
What is Reuben Foster's college?
CREATE TABLE table_name_59 (college VARCHAR, player VARCHAR)
SELECT MAX(laps) AS Led FROM table_name_26 WHERE grid < 4 AND fin_pos = 15
What is the highest Laps Led with a grid of less than 4 and a finishing position of 15?
CREATE TABLE table_name_26 (laps INTEGER, grid VARCHAR, fin_pos VARCHAR)
SELECT MAX(year) FROM table_1963459_2 WHERE average_speed__mph_ = "145.24"
What year was the average speed 145.24
CREATE TABLE table_1963459_2 (year INTEGER, average_speed__mph_ VARCHAR)
SELECT opponent FROM table_name_12 WHERE loss = "trachsel (10-11)"
What opponent has a loss of Trachsel (10-11)?
CREATE TABLE table_name_12 (opponent VARCHAR, loss VARCHAR)
SELECT SUM(goals_scored) FROM table_name_79 WHERE points > 26 AND wins > 11
Which Goals scored has Points larger than 26 and Wins larger than 11?
CREATE TABLE table_name_79 (goals_scored INTEGER, points VARCHAR, wins VARCHAR)
SELECT high_rebounds FROM table_name_13 WHERE game > 4 AND date = "may 27"
Which High rebounds have a Game larger than 4, and a Date of may 27?
CREATE TABLE table_name_13 (high_rebounds VARCHAR, game VARCHAR, date VARCHAR)
SELECT cyclist FROM table_name_89 WHERE team = "gerolsteiner"
Who is Gerolsteiner's cyclist?
CREATE TABLE table_name_89 (cyclist VARCHAR, team VARCHAR)
SELECT score FROM table_name_53 WHERE opponent = "chris evert-lloyd"
Which Score had an Opponent of chris evert-lloyd?
CREATE TABLE table_name_53 (score VARCHAR, opponent VARCHAR)
SELECT points_for FROM table_name_97 WHERE points_against = "450"
Name the points for when points against is of 450
CREATE TABLE table_name_97 (points_for VARCHAR, points_against VARCHAR)
SELECT abb FROM table_name_30 WHERE disorder = "carbamoyl phosphate synthetase i deficiency"
What is the abbreviation of the enzyme involved in carbamoyl phosphate synthetase i deficiency?
CREATE TABLE table_name_30 (abb VARCHAR, disorder VARCHAR)
SELECT womens_doubles FROM table_12194021_1 WHERE season = 2002
Who won the womens doubles in 2002?
CREATE TABLE table_12194021_1 (womens_doubles VARCHAR, season VARCHAR)
SELECT catalogue FROM table_name_7 WHERE label = "bronze" AND format = "vinyl"
What is the catalog with a bronze label and in Vinyl format?
CREATE TABLE table_name_7 (catalogue VARCHAR, label VARCHAR, format VARCHAR)
SELECT SUM(wins) FROM table_name_77 WHERE top_5 < 1
Tell me the sum of wins for top 5 less than 1
CREATE TABLE table_name_77 (wins INTEGER, top_5 INTEGER)
SELECT built FROM table_name_48 WHERE sr_number < 2033 AND lb & sc_number < 18 AND notes = "i2" AND withdrawal = "cannot handle non-empty timestamp argument! 1935"
what is the built when s.r. number is less than 2033, lb&sc number is less than 18, notes is i2 and withdrawal is cannot handle non-empty timestamp argument! 1935?
CREATE TABLE table_name_48 (built VARCHAR, withdrawal VARCHAR, notes VARCHAR, sr_number VARCHAR, lb VARCHAR, sc_number VARCHAR)
SELECT sydney FROM table_2923917_4 WHERE distance = "10km"
How many dollars is listed under Sydney when the distance is 10km?
CREATE TABLE table_2923917_4 (sydney VARCHAR, distance VARCHAR)
SELECT release_date FROM table_name_14 WHERE production_number = "1018, br 1352"
What was the release date of the feature with a production number of 1018, BR 1352?
CREATE TABLE table_name_14 (release_date VARCHAR, production_number VARCHAR)
SELECT date FROM table_name_21 WHERE label = "hydra head records" AND format = "cd"
What is the date for Hydra Head Records with a CD format?
CREATE TABLE table_name_21 (date VARCHAR, label VARCHAR, format VARCHAR)
SELECT timeslot FROM table_name_74 WHERE calls = "whyn"
Tell me the timeslot for calls of whyn
CREATE TABLE table_name_74 (timeslot VARCHAR, calls VARCHAR)
SELECT score FROM table_name_2 WHERE opponents = "fc bayern munich" AND date = "september 20, 2005"
What is the score of the September 20, 2005 match when the Opponents are FC Bayern Munich?
CREATE TABLE table_name_2 (score VARCHAR, opponents VARCHAR, date VARCHAR)
SELECT MIN(points) FROM table_name_48 WHERE year = "2013" AND goals < 0
What are the lowest points with 2013 as the year, and goals less than 0?
CREATE TABLE table_name_48 (points INTEGER, year VARCHAR, goals VARCHAR)
SELECT date FROM table_name_17 WHERE home = "suns"
On what date was there a competition in which the home team was the Suns?
CREATE TABLE table_name_17 (date VARCHAR, home VARCHAR)
SELECT cfl_team FROM table_28059992_1 WHERE player = "Mark Farraway"
What is every CFL team with the player Mark Farraway?
CREATE TABLE table_28059992_1 (cfl_team VARCHAR, player VARCHAR)
SELECT year FROM table_name_13 WHERE venue = "atlanta, united states"
Which Year has a Venue of atlanta, united states?
CREATE TABLE table_name_13 (year VARCHAR, venue VARCHAR)
SELECT AVG(2012) FROM table_name_22 WHERE 2009 > 104.5 AND 2010 < 162.6 AND 2011 < 141.8
avg passengers in 2012 for 2009 more than 104.5 and 2010 less than 162.6 and 2011 less than 141.8 is what?
CREATE TABLE table_name_22 (Id VARCHAR)
SELECT AVG(game__number) FROM table_name_95 WHERE home = "san jose" AND points < 71
Which average Game # has a Home of san jose, and Points smaller than 71?
CREATE TABLE table_name_95 (game__number INTEGER, home VARCHAR, points VARCHAR)
SELECT MAX(annual_interchanges__millions__2011_12) FROM table_name_82 WHERE railway_station = "wimbledon"
What's the highest annual interchange for wimbledon railway station?
CREATE TABLE table_name_82 (annual_interchanges__millions__2011_12 INTEGER, railway_station VARCHAR)
SELECT COUNT(against) FROM table_name_4 WHERE wins > 2 AND losses = 5 AND draws < 0
What is the total number of Against values for clubs with more than 2 wins, 5 losses, and 0 draws?
CREATE TABLE table_name_4 (against VARCHAR, draws VARCHAR, wins VARCHAR, losses VARCHAR)
SELECT MIN(play_offs) FROM table_name_48 WHERE league = 4 AND fa_cup > 1
What's the lowest Play-offs with a League of 4 and FA Cup larger than 1?
CREATE TABLE table_name_48 (play_offs INTEGER, league VARCHAR, fa_cup VARCHAR)
SELECT MIN(byes) FROM table_name_51 WHERE against = 1655 AND wins > 10
How many byes were there with an Against of 1655 and more than 10 wins?
CREATE TABLE table_name_51 (byes INTEGER, against VARCHAR, wins VARCHAR)
SELECT home FROM table_name_45 WHERE visitor = "colorado" AND record = "26–15–9"
Which team was the home team when Colorado was the visitor and the record became 26–15–9?
CREATE TABLE table_name_45 (home VARCHAR, visitor VARCHAR, record VARCHAR)
SELECT COUNT(points) FROM table_name_80 WHERE rank = 5 AND games > 34
How many points are there for rank 5 with more than 34 games?
CREATE TABLE table_name_80 (points VARCHAR, rank VARCHAR, games VARCHAR)
SELECT away_team AS score FROM table_name_32 WHERE away_team = "fitzroy"
What was the away team score, when the away team was Fitzroy?
CREATE TABLE table_name_32 (away_team VARCHAR)
SELECT hometown FROM table_11677100_17 WHERE player = "Bubba Starling"
What is the hometown of Bubba Starling?
CREATE TABLE table_11677100_17 (hometown VARCHAR, player VARCHAR)
SELECT AVG(year) FROM table_name_57 WHERE category = "most popular actress" AND nominated_for = "birds of a feather"
Name the year that Birds of a feather category for most popular actress was nominated
CREATE TABLE table_name_57 (year INTEGER, category VARCHAR, nominated_for VARCHAR)
SELECT outcome FROM table_name_67 WHERE score = "3–6, 4–6"
What was the Outcome of the game with a Score of 3–6, 4–6?
CREATE TABLE table_name_67 (outcome VARCHAR, score VARCHAR)
SELECT AVG(laps) FROM table_name_42 WHERE rider = "toni elias"
What is the average of laps ridden by Toni Elias?
CREATE TABLE table_name_42 (laps INTEGER, rider VARCHAR)
SELECT SUM(played) FROM table_name_34 WHERE points = 15
How many games were played where exactly 15 points were scored?
CREATE TABLE table_name_34 (played INTEGER, points VARCHAR)
SELECT winner FROM table_name_67 WHERE course = "rest day"
Who was the winner at Rest Day course?
CREATE TABLE table_name_67 (winner VARCHAR, course VARCHAR)
SELECT produced FROM table_name_28 WHERE aircraft = "kai kuh-1 surion"
Where was the Kai Kuh-1 Surion Produced?
CREATE TABLE table_name_28 (produced VARCHAR, aircraft VARCHAR)
SELECT MAX(player) FROM table_name_63 WHERE year = "1r" AND sets = "clay" AND NOT aces > 4
What is the highest number of players during 1r year with a clay set and more than 4 aces?
CREATE TABLE table_name_63 (player INTEGER, year VARCHAR, sets VARCHAR, aces VARCHAR)
SELECT webcast FROM table_name_86 WHERE format = "spanish contemporary" AND website = "xhnoe.com"
Which webcast was in Spanish contemporary on xhnoe.com?
CREATE TABLE table_name_86 (webcast VARCHAR, format VARCHAR, website VARCHAR)
SELECT object_type FROM table_name_32 WHERE constellation = "orion" AND ngc_number > 2174 AND declination___j2000__ = "°48′06″"
Which Object type has a Constellation of orion, and an NGC number larger than 2174, and a Declination (J2000) of °48′06″?
CREATE TABLE table_name_32 (object_type VARCHAR, declination___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR)
SELECT date FROM table_name_47 WHERE site = "umbc field"
What date was the game held at UMBC Field?
CREATE TABLE table_name_47 (date VARCHAR, site VARCHAR)
SELECT COUNT(played) FROM table_name_24 WHERE ga = "22"
What is the total played games of a 22 G.A.?
CREATE TABLE table_name_24 (played VARCHAR, ga VARCHAR)
SELECT class FROM table_name_58 WHERE co_drivers = "emanuele pirro jj lehto"
What is the class of the co-driver emanuele pirro jj lehto?
CREATE TABLE table_name_58 (class VARCHAR, co_drivers VARCHAR)
SELECT model_number FROM table_16400024_1 WHERE release_price___usd__ = "$496"
What is the model number with a release price of $496?
CREATE TABLE table_16400024_1 (model_number VARCHAR, release_price___usd__ VARCHAR)
SELECT MAX(bronze) FROM table_name_77 WHERE silver > 0 AND rank = 7
What is the highest number of bronzes for teams ranked number 7 with more than 0 silver?
CREATE TABLE table_name_77 (bronze INTEGER, silver VARCHAR, rank VARCHAR)
SELECT nationality FROM table_name_60 WHERE years_for_jazz = "1974-79"
What is the nationality of the player on the Jazz from 1974-79?
CREATE TABLE table_name_60 (nationality VARCHAR, years_for_jazz VARCHAR)
SELECT result__pts_ FROM table_name_17 WHERE set_1 = "26-24"
What is the result of the game with a set 1 of 26-24?
CREATE TABLE table_name_17 (result__pts_ VARCHAR, set_1 VARCHAR)
SELECT name FROM table_name_77 WHERE company = "quantcast corporation"
Which Name has a Company of quantcast corporation?
CREATE TABLE table_name_77 (name VARCHAR, company VARCHAR)
SELECT MIN(year) FROM table_name_89 WHERE role = "main" AND character = "guan yu (關羽)"
What year was the main role a character named Guan Yu (關羽)?
CREATE TABLE table_name_89 (year INTEGER, role VARCHAR, character VARCHAR)
SELECT player FROM table_name_44 WHERE to_par = "+2" AND country = "spain"
Who is the player from Spain that has a +2 to par?
CREATE TABLE table_name_44 (player VARCHAR, to_par VARCHAR, country VARCHAR)