answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT nationality FROM table_name_80 WHERE fate = "sunk (mine)" AND tonnage__grt_ < 2 OFFSET 266
Which Nationality has a Fate of sunk (mine), and a Tonnage (GRT) smaller than 2,266?
CREATE TABLE table_name_80 (nationality VARCHAR, fate VARCHAR, tonnage__grt_ VARCHAR)
SELECT tenure FROM table_name_14 WHERE lineage = "3rd son of tadatsune"
What's the tenure of 3rd son of tadatsune?
CREATE TABLE table_name_14 (tenure VARCHAR, lineage VARCHAR)
SELECT brigade FROM table_name_63 WHERE name = "al-hamra ('arab al-hamra)"
What is the brigade when Al-Hamra ('arab al-hamra) shows for name?
CREATE TABLE table_name_63 (brigade VARCHAR, name VARCHAR)
SELECT time FROM table_name_10 WHERE notes = "fb" AND country = "france"
What time was the race for the country of france with fb listed under notes?
CREATE TABLE table_name_10 (time VARCHAR, notes VARCHAR, country VARCHAR)
SELECT prr_class FROM table_name_4 WHERE wheel_arrangement = "b-b" AND service = "freight" AND build_date = "1967"
What is the PRR class of the freight train built in 1967 with a b-b wheel arrangement?
CREATE TABLE table_name_4 (prr_class VARCHAR, build_date VARCHAR, wheel_arrangement VARCHAR, service VARCHAR)
SELECT team FROM table_name_1 WHERE college = "washington"
Who is the team for Washington College?
CREATE TABLE table_name_1 (team VARCHAR, college VARCHAR)
SELECT date FROM table_name_85 WHERE home_team = "footscray"
What date did the home team of footscray play?
CREATE TABLE table_name_85 (date VARCHAR, home_team VARCHAR)
SELECT ship_size FROM table_name_57 WHERE 2006 = "$31,750"
What ship size had a cargo value of $31,750 in 2006?
CREATE TABLE table_name_57 (ship_size VARCHAR)
SELECT team FROM table_name_22 WHERE driver_s_ = "reed sorenson"
What team does Reed Sorenson drive for?
CREATE TABLE table_name_22 (team VARCHAR, driver_s_ VARCHAR)
SELECT SUM(episodes) FROM table_name_29 WHERE romaji_title = "slow dance"
How many Episodes have a Romaji Title of slow dance?
CREATE TABLE table_name_29 (episodes INTEGER, romaji_title VARCHAR)
SELECT position FROM table_name_67 WHERE school_previous_club_team_country = "kentucky"
What is Position, when School/Previous Club Team/Country is Kentucky?
CREATE TABLE table_name_67 (position VARCHAR, school_previous_club_team_country VARCHAR)
SELECT COUNT(location) FROM table_1301373_1 WHERE team = "Newcastle Jets"
How many locations does the team Newcastle Jets come from?
CREATE TABLE table_1301373_1 (location VARCHAR, team VARCHAR)
SELECT driver FROM table_name_80 WHERE grid = 12
what driver has 12 in grid?
CREATE TABLE table_name_80 (driver VARCHAR, grid VARCHAR)
SELECT result FROM table_name_27 WHERE attendance = "42,308"
Which team won on the day when attendance was 42,308?
CREATE TABLE table_name_27 (result VARCHAR, attendance VARCHAR)
SELECT COUNT(drumset_name) FROM table_2889300_6 WHERE drumstand__oftenoptional_ = "HD-1/3Stand" AND tom_tom_pads = "3xCloth-Head"
how many drumsets of drumstand (oftenoptional) with hd-1/3stand and tom-tom pads is 3xcloth-head are
CREATE TABLE table_2889300_6 (drumset_name VARCHAR, drumstand__oftenoptional_ VARCHAR, tom_tom_pads VARCHAR)
SELECT tv_time FROM table_name_91 WHERE date = "december 22, 1996"
What is TV Time, when Date is December 22, 1996?
CREATE TABLE table_name_91 (tv_time VARCHAR, date VARCHAR)
SELECT location_of_the_church FROM table_178389_1 WHERE church_name = "Ortnevik kyrkje"
What is the location of the church when the church name is Ortnevik Kyrkje?
CREATE TABLE table_178389_1 (location_of_the_church VARCHAR, church_name VARCHAR)
SELECT shooter FROM table_name_64 WHERE rank_points = "8" AND event = "wc kerrville"
Who was the shooter when the rank points was 8 and the event was WC Kerrville?
CREATE TABLE table_name_64 (shooter VARCHAR, rank_points VARCHAR, event VARCHAR)
SELECT result FROM table_name_91 WHERE film_series = "thirst" AND year = 2010 AND group = "green globe film awards"
What was the result for Thirst in 2010 at the Green Globe Film Awards?
CREATE TABLE table_name_91 (result VARCHAR, group VARCHAR, film_series VARCHAR, year VARCHAR)
SELECT MIN(fa_cup_goals) FROM table_27086613_5 WHERE fa_cup_apps = 2 AND position = "FW"
Name the least fa cup goals with fa cup apps being 2 and fw
CREATE TABLE table_27086613_5 (fa_cup_goals INTEGER, fa_cup_apps VARCHAR, position VARCHAR)
SELECT T2.pName FROM tryout AS T1 JOIN player AS T2 ON T1.pID = T2.pID WHERE T1.cName = (SELECT cName FROM college ORDER BY enr DESC LIMIT 1)
Find the name of the tryout players who are from the college with largest size.
CREATE TABLE college (cName VARCHAR, enr VARCHAR); CREATE TABLE tryout (pID VARCHAR, cName VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR)
SELECT tom_horner__i_ FROM table_20032301_3 WHERE sampling_error = "2.5%"
What percentage voted for Tom Horner according to the poll source with sampling error of 2.5%?
CREATE TABLE table_20032301_3 (tom_horner__i_ VARCHAR, sampling_error VARCHAR)
SELECT constructor FROM table_name_72 WHERE q1 + q2_time = "2:45.416"
Constructor with total time of 2:45.416
CREATE TABLE table_name_72 (constructor VARCHAR, q1 VARCHAR, q2_time VARCHAR)
SELECT round_of_16 FROM table_17289604_38 WHERE round_of_32 = "Koryttseva ( UKR ) W 2–6, 6–1, 7–5"
What was round of 16 when in round 32 it was koryttseva ( ukr ) w 2–6, 6–1, 7–5?
CREATE TABLE table_17289604_38 (round_of_16 VARCHAR, round_of_32 VARCHAR)
SELECT COUNT(laps) FROM table_name_3 WHERE constructor = "toyota" AND time_retired = "+13.409"
How many laps had a constructor of toyota and a Time/Retired of +13.409?
CREATE TABLE table_name_3 (laps VARCHAR, constructor VARCHAR, time_retired VARCHAR)
SELECT date_of_report FROM table_22368322_2 WHERE tier_1_ratio = "3.9%"
Name the date of report for tier 1 ratio being 3.9%
CREATE TABLE table_22368322_2 (date_of_report VARCHAR, tier_1_ratio VARCHAR)
SELECT SUM(rank) FROM table_name_93 WHERE director = "martin brest"
WHAT IS THE RANK OF MARTIN BREST?
CREATE TABLE table_name_93 (rank INTEGER, director VARCHAR)
SELECT order FROM table_name_61 WHERE elector = "marino bulcani"
What's the Order with an Elector of Marino Bulcani?
CREATE TABLE table_name_61 (order VARCHAR, elector VARCHAR)
SELECT MAX(apps) FROM table_name_7 WHERE rank = 8 AND season = "2012/13"
How many apps for the rank of 8 in the 2012/13 season?
CREATE TABLE table_name_7 (apps INTEGER, rank VARCHAR, season VARCHAR)
SELECT * FROM employees WHERE hire_date > '1987-09-07'
display those employees who joined after 7th September, 1987.
CREATE TABLE employees (hire_date INTEGER)
SELECT MAX(goals_for) FROM table_name_27 WHERE team = "congleton town" AND lost > 11
Which Goals For has a Team of congleton town, and a Lost larger than 11?
CREATE TABLE table_name_27 (goals_for INTEGER, team VARCHAR, lost VARCHAR)
SELECT score FROM table_name_56 WHERE record = "39-20"
What was the score when the Blue Jays had a record of 39-20?
CREATE TABLE table_name_56 (score VARCHAR, record VARCHAR)
SELECT opponents_in_the_final FROM table_name_63 WHERE partner = "katarina srebotnik" AND championship = "wimbledon (4)"
Which opponent in the final had a partner of Katarina Srebotnik and a championship of wimbledon (4)?
CREATE TABLE table_name_63 (opponents_in_the_final VARCHAR, partner VARCHAR, championship VARCHAR)
SELECT result FROM table_name_17 WHERE award = "drama desk award" AND nominee = "patricia mcgourty"
What is the result of nominee, Patricia McGourty, for the drama desk award?
CREATE TABLE table_name_17 (result VARCHAR, award VARCHAR, nominee VARCHAR)
SELECT AVG(population) FROM table_name_83 WHERE median_household_income = "$87,832" AND number_of_households < 64 OFFSET 886
What is the population where the median household income is $87,832 and there are fewer than 64,886 households?
CREATE TABLE table_name_83 (population INTEGER, median_household_income VARCHAR, number_of_households VARCHAR)
SELECT top_scorer FROM table_1218784_1 WHERE gf = 41
Who is the top scorer where gf is 41?
CREATE TABLE table_1218784_1 (top_scorer VARCHAR, gf VARCHAR)
SELECT 2012 AS _employees__total_ FROM table_name_63 WHERE rank__2012_ = 7
What is the 2012 Employees (Total) when the rank (2012) is 7?
CREATE TABLE table_name_63 (rank__2012_ VARCHAR)
SELECT data_limit__gb FROM table_name_8 WHERE company = "vodafone"
What is the data limit for vodafone?
CREATE TABLE table_name_8 (data_limit__gb VARCHAR, company VARCHAR)
SELECT COUNT(react) FROM table_name_24 WHERE athlete = "alleyne francique" AND lane > 9
How many reactions have an Athlete of alleyne francique, and a Lane larger than 9?
CREATE TABLE table_name_24 (react VARCHAR, athlete VARCHAR, lane VARCHAR)
SELECT sport FROM table_name_58 WHERE age_groups = "21 or younger" AND competition_name = "world youth netball championships"
what is the sport when the age group is 21 or younger and the competition name is world youth netball championships?
CREATE TABLE table_name_58 (sport VARCHAR, age_groups VARCHAR, competition_name VARCHAR)
SELECT visitor FROM table_name_67 WHERE record = "31–31–8"
Which visiting team had a record of 31–31–8?
CREATE TABLE table_name_67 (visitor VARCHAR, record VARCHAR)
SELECT official_name FROM table_171361_1 WHERE area_km_2 = "30.75"
What is the name of the community with an area of 30.75 sq. km.?
CREATE TABLE table_171361_1 (official_name VARCHAR, area_km_2 VARCHAR)
SELECT date FROM table_name_23 WHERE time = "2:23:47"
What is the Date of the Event with a Time of 2:23:47?
CREATE TABLE table_name_23 (date VARCHAR, time VARCHAR)
SELECT flno, origin, destination FROM Flight ORDER BY origin
Show flight number, origin, destination of all flights in the alphabetical order of the departure cities.
CREATE TABLE Flight (flno VARCHAR, origin VARCHAR, destination VARCHAR)
SELECT chassis FROM table_name_19 WHERE entrant = "danka arrows yamaha"
What is the company that made the chassis for the entrant danka arrows yamaha?
CREATE TABLE table_name_19 (chassis VARCHAR, entrant VARCHAR)
SELECT title FROM table_2226817_12 WHERE original_air_date = "March 2, 1997"
what is the name of the episode whose premiere was in march 2, 1997?
CREATE TABLE table_2226817_12 (title VARCHAR, original_air_date VARCHAR)
SELECT MAX(attendance) FROM table_name_83 WHERE score = "3-5"
What was the highest attendance of a game that had a score of 3-5?
CREATE TABLE table_name_83 (attendance INTEGER, score VARCHAR)
SELECT duration FROM table_name_53 WHERE count_palatine_of_the_rhine = "charles albert, elector of bavaria"
What is the duration for Count Palatine of the Rhine of charles albert, elector of bavaria?
CREATE TABLE table_name_53 (duration VARCHAR, count_palatine_of_the_rhine VARCHAR)
SELECT winning_driver FROM table_name_96 WHERE winning_constructor = "o.m."
Which driver won when o.m. was the winning constructor ?
CREATE TABLE table_name_96 (winning_driver VARCHAR, winning_constructor VARCHAR)
SELECT MAX(year) FROM table_name_58 WHERE runner_s__up = "steve stricker"
In which year is the highest for runner-up Steve Stricker?
CREATE TABLE table_name_58 (year INTEGER, runner_s__up VARCHAR)
SELECT SUM(lost) FROM table_name_18 WHERE points > 16 AND drawn < 1
What's the lost when there were more than 16 points and had a drawn less than 1?
CREATE TABLE table_name_18 (lost INTEGER, points VARCHAR, drawn VARCHAR)
SELECT title FROM table_15824796_3 WHERE original_air_date = "February 27, 1954"
What is the title of the first episode of the season that begin on february 27, 1954?
CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR)
SELECT death FROM table_name_2 WHERE birth = "30 october 1797"
What is the date of death of the duchess born on 30 October 1797?
CREATE TABLE table_name_2 (death VARCHAR, birth VARCHAR)
SELECT COUNT(year) FROM table_name_42 WHERE result = "nominated"
How many years have a Result of nominated?
CREATE TABLE table_name_42 (year VARCHAR, result VARCHAR)
SELECT opponents_in_the_final FROM table_name_19 WHERE outcome = "runner-up" AND date = "august 7, 2011"
Name the opponents for outcome of runner-up and date of august 7, 2011
CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT score FROM table_name_54 WHERE visitor = "magic" AND home = "clippers"
What was the score when there was a visitor of Magic and at home with the Clippers?
CREATE TABLE table_name_54 (score VARCHAR, visitor VARCHAR, home VARCHAR)
SELECT to_winning_team FROM table_13657749_2 WHERE gto_winning_team = "Gene Felton"
Who is Gene Felton's TO Winning Team?
CREATE TABLE table_13657749_2 (to_winning_team VARCHAR, gto_winning_team VARCHAR)
SELECT frame_size FROM table_name_74 WHERE max_fps = 120 AND width = 2048 AND height = 1024
What frame size corresponds the selection with a max fps of 120, a width of 2048, and height of 1024?
CREATE TABLE table_name_74 (frame_size VARCHAR, height VARCHAR, max_fps VARCHAR, width VARCHAR)
SELECT party FROM table_1341598_10 WHERE incumbent = "Charles Edward Bennett"
What party does incumbent Charles Edward Bennett belong to?
CREATE TABLE table_1341598_10 (party VARCHAR, incumbent VARCHAR)
SELECT number FROM table_name_33 WHERE language = "other"
What Number has a Language listed as other?
CREATE TABLE table_name_33 (number VARCHAR, language VARCHAR)
SELECT winning_driver FROM table_29361707_2 WHERE pole_position = "Roberval Andrade" AND fastest_lap = "Felipe Giaffone" AND winning_team = "RVR Corinthians Motorsport"
Who was the winner at the track where Roberval Andrade won pole, Felipe Giaffone had the fastest lap, and RVR Corinthians Motorsport was the winning team?
CREATE TABLE table_29361707_2 (winning_driver VARCHAR, winning_team VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)
SELECT season FROM table_name_77 WHERE final_placing = "19th"
Which Season has a 19th Final Place?
CREATE TABLE table_name_77 (season VARCHAR, final_placing VARCHAR)
SELECT SUM(distance__km_) FROM table_name_19 WHERE station = "kawage"
What is the distance of Kawage station?
CREATE TABLE table_name_19 (distance__km_ INTEGER, station VARCHAR)
SELECT COUNT(district) FROM table_1342315_17 WHERE incumbent = "Riley Joseph Wilson"
How many districts does riley joseph wilson?
CREATE TABLE table_1342315_17 (district VARCHAR, incumbent VARCHAR)
SELECT no_in_series FROM table_26565936_2 WHERE written_by = "Bo Crese"
What number(s) in the series was written by bo crese?
CREATE TABLE table_26565936_2 (no_in_series VARCHAR, written_by VARCHAR)
SELECT engine FROM table_name_51 WHERE team = "chesterfield racing" AND chassis = "march 761"
Which Engine has a Team of Chesterfield Racing and include a Chassis of March 761?
CREATE TABLE table_name_51 (engine VARCHAR, team VARCHAR, chassis VARCHAR)
SELECT location FROM table_name_63 WHERE opponent = "gray maynard"
Where was the fight against Gray Maynard?
CREATE TABLE table_name_63 (location VARCHAR, opponent VARCHAR)
SELECT SUM(car__number) FROM table_name_30 WHERE points < 126 AND laps = 147
What is the sum of car numbers with less than 126 points and 147 laps?
CREATE TABLE table_name_30 (car__number INTEGER, points VARCHAR, laps VARCHAR)
SELECT 2011 FROM table_name_32 WHERE 2007 = "1r"
What is the value for 2011 corresponding to a 2007 value of 1r?
CREATE TABLE table_name_32 (Id VARCHAR)
SELECT no_party_preference FROM table_27003186_3 WHERE other = "10.1%"
What is the no party preference when other is 10.1%?
CREATE TABLE table_27003186_3 (no_party_preference VARCHAR, other VARCHAR)
SELECT AVG(T1.Price), T2.name FROM products AS T1 JOIN Manufacturers AS T2 ON T1.manufacturer = T2.code GROUP BY T2.name HAVING AVG(T1.price) >= 150
Select the names of manufacturer whose products have an average price higher than or equal to $150.
CREATE TABLE Manufacturers (name VARCHAR, code VARCHAR); CREATE TABLE products (Price INTEGER, manufacturer VARCHAR, price INTEGER)
SELECT subject_name FROM SUBJECTS
List all the subject names.
CREATE TABLE SUBJECTS (subject_name VARCHAR)
SELECT matches FROM table_name_72 WHERE year = "2003"
What is Matches, when Year is "2003"?
CREATE TABLE table_name_72 (matches VARCHAR, year VARCHAR)
SELECT listed FROM table_name_1 WHERE built = "1925" AND type = "warren pony truss"
What is the listed date of the Warren pony truss bridge that was built in 1925?
CREATE TABLE table_name_1 (listed VARCHAR, built VARCHAR, type VARCHAR)
SELECT COUNT(year) FROM table_name_4 WHERE wins < 2 AND class = "50cc" AND points = 15
Tell me the total number of years for wins less than 2 and class of 50cc with points of 15
CREATE TABLE table_name_4 (year VARCHAR, points VARCHAR, wins VARCHAR, class VARCHAR)
SELECT COUNT(seats_forfeited) FROM table_20728138_1 WHERE party = "Revolutionary Socialist party"
How many seats were forfeited in the revolutionary socialist party?
CREATE TABLE table_20728138_1 (seats_forfeited VARCHAR, party VARCHAR)
SELECT mississippi_st FROM table_name_55 WHERE alabama = "cornelius bennett"
Who was the Mississippi State player associated with Cornelius Bennett?
CREATE TABLE table_name_55 (mississippi_st VARCHAR, alabama VARCHAR)
SELECT MAX(crime_rate_per_1), 000 AS _people FROM table_12340907_1 WHERE cost_per_capita = "$152"
Which crime rate per 1,000 people is associated with a cost per capita of $152?
CREATE TABLE table_12340907_1 (crime_rate_per_1 INTEGER, cost_per_capita VARCHAR)
SELECT event FROM table_name_36 WHERE year = 1986
Which Event has a Year of 1986?
CREATE TABLE table_name_36 (event VARCHAR, year VARCHAR)
SELECT ResName, Rating FROM Restaurant ORDER BY Rating DESC LIMIT 1
Which restaurants have highest rating? List the restaurant name and its rating.
CREATE TABLE Restaurant (ResName VARCHAR, Rating VARCHAR)
SELECT date FROM table_name_78 WHERE game = "game 7"
On what day was Game 7 of this season played?
CREATE TABLE table_name_78 (date VARCHAR, game VARCHAR)
SELECT MAX(assets__usd__millions) FROM table_name_37 WHERE bank = "equity bank" AND number_of_branches < 44
What is the highest Assets (USD) Millions from Equity Bank and less than 44 branches?
CREATE TABLE table_name_37 (assets__usd__millions INTEGER, bank VARCHAR, number_of_branches VARCHAR)
SELECT date FROM table_name_96 WHERE competition = "2014 fifa world cup qualification"
When was the 2014 fifa world cup qualification?
CREATE TABLE table_name_96 (date VARCHAR, competition VARCHAR)
SELECT score FROM table_name_47 WHERE location = "addis ababa"
What is the score at the Addis Ababa location?
CREATE TABLE table_name_47 (score VARCHAR, location VARCHAR)
SELECT opponents_in_the_final FROM table_name_54 WHERE score_in_the_final = "6–1, 1–6, 4–6"
Who were the opponents in the final in which the score was 6–1, 1–6, 4–6?
CREATE TABLE table_name_54 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR)
SELECT MIN(rank) FROM table_name_5 WHERE silver < 1 AND total > 1 AND bronze < 1
Name the least rank when silver is less than 1 and bronze is less than 1 with total more than 1
CREATE TABLE table_name_5 (rank INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)
SELECT date_won FROM table_name_5 WHERE location = "bayamón, puerto rico" AND champion_s_ = "bonecrusher"
When did Bonecrusher win the championship at Bayamón, Puerto Rico?
CREATE TABLE table_name_5 (date_won VARCHAR, location VARCHAR, champion_s_ VARCHAR)
SELECT method FROM table_name_15 WHERE round > 3
Which method was used in a round greater than 3?
CREATE TABLE table_name_15 (method VARCHAR, round INTEGER)
SELECT rank FROM table_name_96 WHERE final = "5:18.85"
Which rank has final with 5:18.85?
CREATE TABLE table_name_96 (rank VARCHAR, final VARCHAR)
SELECT number_of_teams FROM table_name_66 WHERE top_goalscorer_s_ = "not awarded" AND year = "2007 details"
How many teams were at the 2007 details tournament where there a top goalscorer was not awarded?
CREATE TABLE table_name_66 (number_of_teams VARCHAR, top_goalscorer_s_ VARCHAR, year VARCHAR)
SELECT 1989 FROM table_name_60 WHERE 1991 = "4r"
What is the 1989 result of the tournament in which Katerina Maleeva finished 4r in 1991?
CREATE TABLE table_name_60 (Id VARCHAR)
SELECT to_par FROM table_name_88 WHERE money___$__ = 100 AND player = "vic ghezzi"
Which To par has $100 in money played by Vic Ghezzi?
CREATE TABLE table_name_88 (to_par VARCHAR, money___$__ VARCHAR, player VARCHAR)
SELECT episode FROM table_name_17 WHERE share = "tba"
What Episode has a Share of tba?
CREATE TABLE table_name_17 (episode VARCHAR, share VARCHAR)
SELECT 2004 FROM table_name_19 WHERE 2008 = "wta premier 5 tournaments"
What is 2004, when 2008 is "WTA Premier 5 Tournaments"?
CREATE TABLE table_name_19 (Id VARCHAR)
SELECT MIN(laps) FROM table_name_16 WHERE rider = "mattia pasini"
How many laps did Mattia Pasini ride?
CREATE TABLE table_name_16 (laps INTEGER, rider VARCHAR)
SELECT MIN(sipe_sipe_municipality) FROM table_2509113_2 WHERE language = "Quechua"
What is the Sipe Sipe Municipality minimum if the language is Quechua?
CREATE TABLE table_2509113_2 (sipe_sipe_municipality INTEGER, language VARCHAR)
SELECT department FROM table_17118006_2 WHERE local_investment__us$_ = "626,798"
What was the department that got $626,798 in local investments?
CREATE TABLE table_17118006_2 (department VARCHAR, local_investment__us$_ VARCHAR)
SELECT original_title FROM table_name_88 WHERE language = "hindi"
What was the original title of the Hindi film?
CREATE TABLE table_name_88 (original_title VARCHAR, language VARCHAR)
SELECT to_par FROM table_name_74 WHERE country = "united states" AND player = "mark brooks"
What is To par, when Country is "United States", and when Player is "Mark Brooks"?
CREATE TABLE table_name_74 (to_par VARCHAR, country VARCHAR, player VARCHAR)
SELECT catalogue FROM table_name_33 WHERE song_title = "love me tonight"
Name the catalogue with song title of love me tonight
CREATE TABLE table_name_33 (catalogue VARCHAR, song_title VARCHAR)