answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT result FROM table_name_32 WHERE week < 3 AND attendance = "53,658"
CREATE TABLE table_name_32 (result VARCHAR, week VARCHAR, attendance VARCHAR)
What was the result of the game before week 3 with an attendance of 53,658?
SELECT MIN(week) FROM table_name_3 WHERE date = "september 26, 1965"
CREATE TABLE table_name_3 (week INTEGER, date VARCHAR)
What was the earliest week on September 26, 1965?
SELECT SUM(year) FROM table_name_79 WHERE name = "one south broad"
CREATE TABLE table_name_79 (year INTEGER, name VARCHAR)
What is the total time for one south broad?
SELECT name FROM table_name_33 WHERE year < 1973 AND address = "123 south broad street"
CREATE TABLE table_name_33 (name VARCHAR, year VARCHAR, address VARCHAR)
What is the 123 south broad street address name before 1973?
SELECT competition FROM table_name_98 WHERE goal < 2
CREATE TABLE table_name_98 (competition VARCHAR, goal INTEGER)
Which competition has goals less than 2?
SELECT result FROM table_name_59 WHERE goal > 4
CREATE TABLE table_name_59 (result VARCHAR, goal INTEGER)
What's the result of a goal larger than 4?
SELECT type FROM table_name_44 WHERE course = "marostica to bibione"
CREATE TABLE table_name_44 (type VARCHAR, course VARCHAR)
tell me the type that has the marostica to bibione course.
SELECT winner FROM table_name_32 WHERE date = "29 may"
CREATE TABLE table_name_32 (winner VARCHAR, date VARCHAR)
who won on 29 may?
SELECT term FROM table_name_55 WHERE hometown = "ester creek"
CREATE TABLE table_name_55 (term VARCHAR, hometown VARCHAR)
What is the term for hometown Ester Creek?
SELECT MIN(gold) FROM table_name_81 WHERE total = 5 AND rank > 1
CREATE TABLE table_name_81 (gold INTEGER, total VARCHAR, rank VARCHAR)
What is the number of Gold medals for the Nation with a Total of 5 and Rank larger than 1?
SELECT COUNT(silver) FROM table_name_26 WHERE bronze > 1 AND rank < 5
CREATE TABLE table_name_26 (silver VARCHAR, bronze VARCHAR, rank VARCHAR)
What is the total number of Silver for the Nation with more than 1 Bronze and a Rank less than 5?
SELECT round FROM table_name_92 WHERE res = "loss" AND event = "ufc 118"
CREATE TABLE table_name_92 (round VARCHAR, res VARCHAR, event VARCHAR)
In what round was the loss at ufc 118?
SELECT MIN(decile) FROM table_name_60 WHERE area = "otumoetai"
CREATE TABLE table_name_60 (decile INTEGER, area VARCHAR)
What is the smallest decile with an Area of otumoetai?
SELECT decile FROM table_name_62 WHERE area = "welcome bay" AND authority = "state"
CREATE TABLE table_name_62 (decile VARCHAR, area VARCHAR, authority VARCHAR)
Which decile has an Area of welcome bay, and an Authority of state?
SELECT SUM(decile) FROM table_name_93 WHERE gender = "coed" AND authority = "state" AND name = "mount maunganui school"
CREATE TABLE table_name_93 (decile INTEGER, name VARCHAR, gender VARCHAR, authority VARCHAR)
How many deciles have a Gender of coed, an Authority of state, and a Name of mount maunganui school?
SELECT name FROM table_name_96 WHERE decile = 5 AND area = "tauranga"
CREATE TABLE table_name_96 (name VARCHAR, decile VARCHAR, area VARCHAR)
Which name has a Decile of 5, and an Area of tauranga?
SELECT authority FROM table_name_21 WHERE gender = "coed" AND decile < 6 AND area = "merivale"
CREATE TABLE table_name_21 (authority VARCHAR, area VARCHAR, gender VARCHAR, decile VARCHAR)
Which Authority has a Gender of coed, a Decile smaller than 6, and an Area of merivale?
SELECT MIN(decile) FROM table_name_70 WHERE name = "st mary's catholic school"
CREATE TABLE table_name_70 (decile INTEGER, name VARCHAR)
What is the smallest decile with a Name of st mary's catholic school?
SELECT AVG(births__000s_) FROM table_name_14 WHERE total_fertility_rate = "na" AND natural_growth < 2.5
CREATE TABLE table_name_14 (births__000s_ INTEGER, total_fertility_rate VARCHAR, natural_growth VARCHAR)
What is the average birth rate that has a total fertility rate of na, and a natural growth smaller than 2.5?
SELECT deaths FROM table_name_41 WHERE natural_growth < 3.4 AND total_fertility_rate = "1.63"
CREATE TABLE table_name_41 (deaths VARCHAR, natural_growth VARCHAR, total_fertility_rate VARCHAR)
What was the amount of deaths that had a natural growth smaller than 3.4, and a total fertility rate of 1.63?
SELECT AVG(births__000s_) FROM table_name_38 WHERE deaths = 0.4
CREATE TABLE table_name_38 (births__000s_ INTEGER, deaths VARCHAR)
What is the average births that had a death rate of 0.4
SELECT SUM(births__000s_) FROM table_name_59 WHERE deaths > 7.6 AND year = "1990-2009"
CREATE TABLE table_name_59 (births__000s_ INTEGER, deaths VARCHAR, year VARCHAR)
What was the amount of Births (000s) that had a death rate larger than 7.6, and a Year of 1990-2009?
SELECT total_fertility_rate FROM table_name_60 WHERE deaths > 7.8
CREATE TABLE table_name_60 (total_fertility_rate VARCHAR, deaths INTEGER)
What was the total fertility rate that had a death rate larger than 7.8?
SELECT votes FROM table_name_78 WHERE occupation = "security guard"
CREATE TABLE table_name_78 (votes VARCHAR, occupation VARCHAR)
How many votes did the security guard get?
SELECT AVG(2005) FROM table_name_38 WHERE 2008 > 0 AND 2007 > 310 AND average_annual = 767 AND total > 4 OFFSET 597
CREATE TABLE table_name_38 (total VARCHAR, average_annual VARCHAR)
What is the average value for 2005, when the value for 2008 is greater than 0, when the value for 2007 is greater than 310, when the Average annual is 767, and when the Total is greater than 4,597?
SELECT AVG(2005) FROM table_name_32 WHERE average_annual = 767
CREATE TABLE table_name_32 (average_annual VARCHAR)
What is the average value for 2005, when the value for Average annual is 767?
SELECT year FROM table_name_83 WHERE tournament = "1st division el salvador" AND finish = "champion" AND team = "fas"
CREATE TABLE table_name_83 (year VARCHAR, team VARCHAR, tournament VARCHAR, finish VARCHAR)
In what Year was 1st Division El Salvador with a Finish of Champion and a Team of Fas?
SELECT year FROM table_name_99 WHERE finish = "champions"
CREATE TABLE table_name_99 (year VARCHAR, finish VARCHAR)
In what Year was the Finish Champions?
SELECT finish FROM table_name_25 WHERE team = "platense municipal zacatecoluca" AND tournament = "1st division el salvador"
CREATE TABLE table_name_25 (finish VARCHAR, team VARCHAR, tournament VARCHAR)
During the Tournament of 1st Division El Salvador, what was the Finish for the Team of Platense Municipal Zacatecoluca?
SELECT role FROM table_name_82 WHERE tournament = "1st division honduras"
CREATE TABLE table_name_82 (role VARCHAR, tournament VARCHAR)
What is the Role in the 1st Division Honduras Tournament?
SELECT tournament FROM table_name_21 WHERE year = "1986"
CREATE TABLE table_name_21 (tournament VARCHAR, year VARCHAR)
What is the Tournament in the Year of 1986?
SELECT role FROM table_name_65 WHERE team = "platense municipal zacatecoluca" AND tournament = "torneo fraternidad/uncaf club championship"
CREATE TABLE table_name_65 (role VARCHAR, team VARCHAR, tournament VARCHAR)
During the Tournament of Torneo Fraternidad/UNCAF Club championship, what is the Role of the Platense Municipal Zacatecoluca Team?
SELECT record FROM table_name_61 WHERE opponent = "yankees" AND loss = "mulholland (5-6)"
CREATE TABLE table_name_61 (record VARCHAR, opponent VARCHAR, loss VARCHAR)
What is the record of teams that play the yankees, and lose at mulholland (5-6)
SELECT MAX(total) FROM table_name_80 WHERE gold = 0 AND silver > 0 AND nation = "ukraine"
CREATE TABLE table_name_80 (total INTEGER, nation VARCHAR, gold VARCHAR, silver VARCHAR)
Which total is highest with 0 gold and more than 0 silver, in Ukraine?
SELECT SUM(rank) FROM table_name_55 WHERE silver = 2 AND total > 10
CREATE TABLE table_name_55 (rank INTEGER, silver VARCHAR, total VARCHAR)
What is the total rank with more than 2 silver and total larger than 10?
SELECT SUM(rank) FROM table_name_86 WHERE total > 2 AND gold < 0
CREATE TABLE table_name_86 (rank INTEGER, total VARCHAR, gold VARCHAR)
What is the total rank with a total larger than 2, and less than 0 gold
SELECT MAX(bronze) FROM table_name_17 WHERE gold < 0
CREATE TABLE table_name_17 (bronze INTEGER, gold INTEGER)
Which is the highest bronze with gold less than 0?
SELECT SUM(total) FROM table_name_89 WHERE rank < 5 AND gold > 5 AND bronze > 8
CREATE TABLE table_name_89 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR)
What is the total with a rank less than 5, gold larger than 5 and bronze larger than 8?
SELECT MIN(year) FROM table_name_3 WHERE result = "1st" AND extra = "4 x 400 m relay"
CREATE TABLE table_name_3 (year INTEGER, result VARCHAR, extra VARCHAR)
Result of 1st, and an Extra of 4 x 400 m relay is in what lowest year?
SELECT venue FROM table_name_41 WHERE year < 2007 AND result = "1st"
CREATE TABLE table_name_41 (venue VARCHAR, year VARCHAR, result VARCHAR)
a Year smaller than 2007, and a Result of 1st is in what venue?
SELECT result FROM table_name_90 WHERE venue = "melbourne , australia" AND extra = "200 m"
CREATE TABLE table_name_90 (result VARCHAR, venue VARCHAR, extra VARCHAR)
Venue of melbourne , australia, and a Extra of 200 m has what results?
SELECT year FROM table_name_10 WHERE result = "1st" AND venue = "melbourne , australia" AND extra = "100 m"
CREATE TABLE table_name_10 (year VARCHAR, extra VARCHAR, result VARCHAR, venue VARCHAR)
Result of 1st, and a Venue of melbourne , australia, and a Extra of 100 m happened in which year?
SELECT rectifier FROM table_name_69 WHERE det_pre_amp = "x" AND _number_tubes = "4"
CREATE TABLE table_name_69 (rectifier VARCHAR, det_pre_amp VARCHAR, _number_tubes VARCHAR)
Name the rectifier for Det/Pre-amp of x and # tubes of 4
SELECT det_pre_amp FROM table_name_74 WHERE _number_tubes = "8"
CREATE TABLE table_name_74 (det_pre_amp VARCHAR, _number_tubes VARCHAR)
Name the det/pre-amp with # of tubes of 8
SELECT det_pre_amp FROM table_name_56 WHERE _number_tubes = "4" AND rectifier = "x"
CREATE TABLE table_name_56 (det_pre_amp VARCHAR, _number_tubes VARCHAR, rectifier VARCHAR)
Name the det/pre-amp with # tubes of 4 and rectifier of x
SELECT _number_tubes FROM table_name_30 WHERE audio_amp = "x"
CREATE TABLE table_name_30 (_number_tubes VARCHAR, audio_amp VARCHAR)
Name the # tubes with audio amp of x
SELECT competition FROM table_name_84 WHERE goal = 3
CREATE TABLE table_name_84 (competition VARCHAR, goal VARCHAR)
What type of Competition has a Goal of 3?
SELECT competition FROM table_name_17 WHERE date = "july 1, 2000"
CREATE TABLE table_name_17 (competition VARCHAR, date VARCHAR)
Which Competition has the Date July 1, 2000?
SELECT years FROM table_name_46 WHERE representative = "james robert jones"
CREATE TABLE table_name_46 (years VARCHAR, representative VARCHAR)
Which years did James Robert Jones serve?
SELECT years FROM table_name_40 WHERE state = "new hampshire" AND representative = "james hutchins johnson"
CREATE TABLE table_name_40 (years VARCHAR, state VARCHAR, representative VARCHAR)
James Hutchins Johnson, from New Hampshire, served during what years?
SELECT team_name FROM table_name_97 WHERE losses = 6 AND games > 18
CREATE TABLE table_name_97 (team_name VARCHAR, losses VARCHAR, games VARCHAR)
Who is the team that has played more than 18 games and has 6 losses?
SELECT season FROM table_name_19 WHERE points < 16 AND losses = 18
CREATE TABLE table_name_19 (season VARCHAR, points VARCHAR, losses VARCHAR)
Which season did the Burnaby Lakers have less than 16 points and less than 18 losses?
SELECT team_name FROM table_name_23 WHERE losses > 15 AND season = "1988"
CREATE TABLE table_name_23 (team_name VARCHAR, losses VARCHAR, season VARCHAR)
Which team had more than 15 losses in 1988?
SELECT SUM(losses) FROM table_name_11 WHERE team_name = "burnaby lakers" AND points = 8 AND season = "1998" AND games < 25
CREATE TABLE table_name_11 (losses INTEGER, games VARCHAR, season VARCHAR, team_name VARCHAR, points VARCHAR)
How many losses did the Burnaby Lakers accumulate when they scored 8 points in 1998 playing less than 25 games?
SELECT school_club_team FROM table_name_53 WHERE position = "dl"
CREATE TABLE table_name_53 (school_club_team VARCHAR, position VARCHAR)
What was the school for the player who was a DL?
SELECT MIN(pick) FROM table_name_8 WHERE player = "ian hazlett"
CREATE TABLE table_name_8 (pick INTEGER, player VARCHAR)
Which pick was used on Ian Hazlett?
SELECT thumb_stick FROM table_name_37 WHERE basic_shape = "curved" AND backlit = "yes" AND supplier = "genius"
CREATE TABLE table_name_37 (thumb_stick VARCHAR, supplier VARCHAR, basic_shape VARCHAR, backlit VARCHAR)
Which Thumb stick has a Basic shape of curved, a Backlit of yes, and a Supplier of genius?
SELECT thumb_stick FROM table_name_76 WHERE wrist_pad = "no" AND supplier = "sharkoon"
CREATE TABLE table_name_76 (thumb_stick VARCHAR, wrist_pad VARCHAR, supplier VARCHAR)
Which Thumb stick has a Wrist pad of no, and a Supplier of sharkoon?
SELECT keys__x_modes_ FROM table_name_55 WHERE supplier = "wolfking"
CREATE TABLE table_name_55 (keys__x_modes_ VARCHAR, supplier VARCHAR)
Which keys (x modes) have a Supplier of wolfking?
SELECT supplier FROM table_name_16 WHERE basic_shape = "flat" AND wrist_pad = "no" AND keys__x_modes_ = "25+"
CREATE TABLE table_name_16 (supplier VARCHAR, keys__x_modes_ VARCHAR, basic_shape VARCHAR, wrist_pad VARCHAR)
Which Supplier have a Basic shape of flat, a Wrist pad of no, and Keys (x modes) of 25+?
SELECT opponent FROM table_name_52 WHERE time = "3:59"
CREATE TABLE table_name_52 (opponent VARCHAR, time VARCHAR)
Who was the opponent with the time 3:59?
SELECT israel_bowl FROM table_name_65 WHERE date = "march 30, 2012"
CREATE TABLE table_name_65 (israel_bowl VARCHAR, date VARCHAR)
Name the Israel Bowl for march 30, 2012
SELECT venue FROM table_name_47 WHERE date = "march 28, 2008"
CREATE TABLE table_name_47 (venue VARCHAR, date VARCHAR)
Name the venue for march 28, 2008
SELECT champion FROM table_name_33 WHERE israel_bowl = "iv"
CREATE TABLE table_name_33 (champion VARCHAR, israel_bowl VARCHAR)
Name the champion for israel bowl of iv
SELECT season FROM table_name_56 WHERE runner_up = "judean rebels"
CREATE TABLE table_name_56 (season VARCHAR, runner_up VARCHAR)
Name the season for runner up of judean rebels
SELECT date__from_ FROM table_name_46 WHERE name_of_system = "hsm (1883–1910) gt (1915–1922)" AND traction_type = "steam"
CREATE TABLE table_name_46 (date__from_ VARCHAR, name_of_system VARCHAR, traction_type VARCHAR)
On what date did the event begin that had a steam traction type and used the system named HSM (1883–1910) GT (1915–1922)?
SELECT date__from_ FROM table_name_66 WHERE location = "zaltbommel"
CREATE TABLE table_name_66 (date__from_ VARCHAR, location VARCHAR)
On what date did the event at Zaltbommel begin?
SELECT location FROM table_name_5 WHERE name_of_system = "atm (1880–1911) geta (1911–1944)" AND traction_type = "electric"
CREATE TABLE table_name_5 (location VARCHAR, name_of_system VARCHAR, traction_type VARCHAR)
At what location did the event that used electric traction and system name ATM (1880–1911) GETA (1911–1944) occur?
SELECT to_par FROM table_name_93 WHERE country = "england" AND place = "t1"
CREATE TABLE table_name_93 (to_par VARCHAR, country VARCHAR, place VARCHAR)
What is the to par of the player from England with a t1 place?
SELECT country FROM table_name_43 WHERE score = 69 - 70 - 67 = 206 AND player = "sergio garcía"
CREATE TABLE table_name_43 (country VARCHAR, player VARCHAR, score VARCHAR)
What is the country sergio garcía, who has a score of 69-70-67=206, is from?
SELECT to_par FROM table_name_38 WHERE country = "united states" AND place = "t5"
CREATE TABLE table_name_38 (to_par VARCHAR, country VARCHAR, place VARCHAR)
What is the to par of the player from the United States with a t5 place?
SELECT to_par FROM table_name_44 WHERE country = "united states" AND score = 69 - 68 - 65 = 202
CREATE TABLE table_name_44 (to_par VARCHAR, country VARCHAR, score VARCHAR)
What is the to par of the player from the United States with a score of 69-68-65=202?
SELECT COUNT(lane) FROM table_name_88 WHERE time = "2:01.51" AND rank < 4
CREATE TABLE table_name_88 (lane VARCHAR, time VARCHAR, rank VARCHAR)
How many lanes had a rank smaller than 4 and a time of 2:01.51?
SELECT time FROM table_name_39 WHERE lane = 7
CREATE TABLE table_name_39 (time VARCHAR, lane VARCHAR)
What was the time of the person in lane 7?
SELECT MAX(employees) FROM table_name_50 WHERE company = "nokia" AND rank < 3
CREATE TABLE table_name_50 (employees INTEGER, company VARCHAR, rank VARCHAR)
How many employees at nokia, ranked under 3?
SELECT moving_from FROM table_name_2 WHERE moving_to = "shakhtar donetsk" AND rank = 8
CREATE TABLE table_name_2 (moving_from VARCHAR, moving_to VARCHAR, rank VARCHAR)
The person with a rank of 8 moving to Shakhtar Donetsk was moving from what Ukrainian Football Club as a transfer?
SELECT moving_to FROM table_name_39 WHERE year > 2005 AND rank > 5 AND name = "ismaël bangoura"
CREATE TABLE table_name_39 (moving_to VARCHAR, name VARCHAR, year VARCHAR, rank VARCHAR)
Ismaël Bangoura with a rank larger than 5 after the year 2005 was moving to what football club?
SELECT moving_from FROM table_name_55 WHERE rank = 9
CREATE TABLE table_name_55 (moving_from VARCHAR, rank VARCHAR)
The player with a rank of 9, made a move from what football club?
SELECT MIN(rank) FROM table_name_37 WHERE year > 2005 AND moving_from = "nancy"
CREATE TABLE table_name_37 (rank INTEGER, year VARCHAR, moving_from VARCHAR)
Moving from Nancy after 2005, what is listed as the lowest rank?
SELECT year FROM table_name_64 WHERE rank < 8 AND moving_from = "olympiacos"
CREATE TABLE table_name_64 (year VARCHAR, rank VARCHAR, moving_from VARCHAR)
What is the listed year that has a rank smaller than 8 and moving from Olympiacos?
SELECT home_venue FROM table_name_63 WHERE state = "goa" AND city = "salcette"
CREATE TABLE table_name_63 (home_venue VARCHAR, state VARCHAR, city VARCHAR)
Which team plays in Goa, Salcette?
SELECT home_venue FROM table_name_95 WHERE team = "bengaluru fc"
CREATE TABLE table_name_95 (home_venue VARCHAR, team VARCHAR)
Where is the home venue of Bengaluru FC?
SELECT state FROM table_name_43 WHERE team = "mumbai"
CREATE TABLE table_name_43 (state VARCHAR, team VARCHAR)
What is the state of the team who plays in Mumbai?
SELECT city FROM table_name_31 WHERE state = "maharashtra" AND team = "pune"
CREATE TABLE table_name_31 (city VARCHAR, state VARCHAR, team VARCHAR)
Where is the city of Maharashtra's Pune team?
SELECT money_requested__£_ FROM table_name_10 WHERE company_or_product_name = "basstoneslap"
CREATE TABLE table_name_10 (money_requested__£_ VARCHAR, company_or_product_name VARCHAR)
How much Money is requested by BassToneSlap?
SELECT investing_dragon_s_ FROM table_name_43 WHERE money_requested__£_ = "100,000" AND entrepreneur_s_ = "kay russell"
CREATE TABLE table_name_43 (investing_dragon_s_ VARCHAR, money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR)
Which Investing Dragon has requested £100,000 and is supported by Entrepreneur Kay Russell?
SELECT company_or_product_name FROM table_name_83 WHERE episode = "episode 3" AND investing_dragon_s_ = "deborah meaden"
CREATE TABLE table_name_83 (company_or_product_name VARCHAR, episode VARCHAR, investing_dragon_s_ VARCHAR)
What is the name of the Company or Product that is Episode 3 and is suppoted by Investing Dragon Deborah Meaden?
SELECT episode FROM table_name_38 WHERE money_requested__£_ = "150,000"
CREATE TABLE table_name_38 (episode VARCHAR, money_requested__£_ VARCHAR)
Which Episode has requested £150,000?
SELECT counting_method FROM table_name_89 WHERE basis = "network-centric"
CREATE TABLE table_name_89 (counting_method VARCHAR, basis VARCHAR)
What is the counting method for a network-centric basis?
SELECT directed___undirected FROM table_name_83 WHERE name = "mfinder" AND basis = "network-centric"
CREATE TABLE table_name_83 (directed___undirected VARCHAR, name VARCHAR, basis VARCHAR)
What is the directed/undirected for mfinder, which has a network-centric basis?
SELECT directed___undirected FROM table_name_25 WHERE induced___non_induced = "induced" AND name = "fpf (mavisto)"
CREATE TABLE table_name_25 (directed___undirected VARCHAR, induced___non_induced VARCHAR, name VARCHAR)
What is the directed/undirected of fpf (mavisto), which has an induced/non-induced of induced?
SELECT name FROM table_name_12 WHERE directed___undirected = "both" AND basis = "subgraph-centric"
CREATE TABLE table_name_12 (name VARCHAR, directed___undirected VARCHAR, basis VARCHAR)
What is the name of the algorithm with a directed/undirected of both and a subgraph-centric basis?
SELECT directed___undirected FROM table_name_13 WHERE induced___non_induced = "induced" AND counting_method = "exact" AND name = "mfinder"
CREATE TABLE table_name_13 (directed___undirected VARCHAR, name VARCHAR, induced___non_induced VARCHAR, counting_method VARCHAR)
What is the directed/undirected for mfinder, which has an induced/non-induced of induced and an exact counting method?
SELECT opponent FROM table_name_6 WHERE outcome = "winner" AND surface = "hard" AND date = "august 27, 2011"
CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR, outcome VARCHAR, surface VARCHAR)
Who is the opponent for the winner outcome on a hard surface on August 27, 2011?
SELECT outcome FROM table_name_59 WHERE date = "august 5, 2007"
CREATE TABLE table_name_59 (outcome VARCHAR, date VARCHAR)
What was the outcome on August 5, 2007?
SELECT score FROM table_name_25 WHERE date = "january 16, 2010"
CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR)
What was the score on January 16, 2010?
SELECT country FROM table_name_6 WHERE name = "paul runyan"
CREATE TABLE table_name_6 (country VARCHAR, name VARCHAR)
What country is Paul Runyan from?
SELECT to_par FROM table_name_17 WHERE country = "scotland" AND name = "willie macfarlane"
CREATE TABLE table_name_17 (to_par VARCHAR, country VARCHAR, name VARCHAR)
What is the To par of Willie MacFarlane from the country of Scotland?
SELECT country FROM table_name_25 WHERE to_par = "+1" AND score = 71 - 76 - 70 = 217
CREATE TABLE table_name_25 (country VARCHAR, to_par VARCHAR, score VARCHAR)
What country has a To par of +1 and the score of 71-76-70=217?
SELECT player FROM table_name_15 WHERE goals = "143"
CREATE TABLE table_name_15 (player VARCHAR, goals VARCHAR)
What player scored 143 goals?