instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: How many laps resulted from a Qual of 165.229?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (laps INTEGER, qual VARCHAR)
SELECT MAX(laps) FROM table_name_17 WHERE qual = "165.229"
Write a SQL query that answers the following question: Whent he start was 15, what was the Qual?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (qual VARCHAR, start VARCHAR)
SELECT qual FROM table_name_4 WHERE start = "15"
Write a SQL query that answers the following question: What was the start result with a Rank of 7 and more than 100 laps?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (start VARCHAR, rank VARCHAR, laps VARCHAR)
SELECT start FROM table_name_15 WHERE rank = "7" AND laps > 100
Write a SQL query that answers the following question: Who was the shirt sponsor for the Blackburn Rovers?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (shirt_sponsor VARCHAR, team VARCHAR)
SELECT shirt_sponsor FROM table_name_59 WHERE team = "blackburn rovers"
Write a SQL query that answers the following question: Who was the team captain of the Bolton Wanderers?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (captain VARCHAR, team VARCHAR)
SELECT captain FROM table_name_60 WHERE team = "bolton wanderers"
Write a SQL query that answers the following question: For which team did Adidas manufacture kits and TDK sponsor shirts?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (team VARCHAR, kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)
SELECT team FROM table_name_75 WHERE kit_manufacturer = "adidas" AND shirt_sponsor = "tdk"
Write a SQL query that answers the following question: On which team was Robbie Earle the captain?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (team VARCHAR, captain VARCHAR)
SELECT team FROM table_name_5 WHERE captain = "robbie earle"
Write a SQL query that answers the following question: Who was the manager for the team with captain Neil Redfearn?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (manager_1 VARCHAR, captain VARCHAR)
SELECT manager_1 FROM table_name_24 WHERE captain = "neil redfearn"
Write a SQL query that answers the following question: Who was the team captain for Crystal Palace?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (captain VARCHAR, team VARCHAR)
SELECT captain FROM table_name_56 WHERE team = "crystal palace"
Write a SQL query that answers the following question: drop goals larger than 0, and a Penalties of 52, and a Number larger than 5 had what lowest score?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (score INTEGER, number VARCHAR, drop_goals VARCHAR, penalties VARCHAR)
SELECT MIN(score) FROM table_name_96 WHERE drop_goals > 0 AND penalties = 52 AND number > 5
Write a SQL query that answers the following question: Player of jaco coetzee, and a Tries larger than 6 had what total number of score?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (score VARCHAR, player VARCHAR, tries VARCHAR)
SELECT COUNT(score) FROM table_name_50 WHERE player = "jaco coetzee" AND tries > 6
Write a SQL query that answers the following question: What is the highest round that has a draftee from Washington State University?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (round INTEGER, school VARCHAR)
SELECT MAX(round) FROM table_name_60 WHERE school = "washington state university"
Write a SQL query that answers the following question: What round was Bob Randall selected in?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (round INTEGER, name VARCHAR)
SELECT MAX(round) FROM table_name_16 WHERE name = "bob randall"
Write a SQL query that answers the following question: Name the Ont of N.B. of 10 and normal total of 77
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (ont VARCHAR, nb VARCHAR, normal_total VARCHAR)
SELECT ont FROM table_name_5 WHERE nb = "10" AND normal_total = "77"
Write a SQL query that answers the following question: Name the date enacted for N.S. of 10 and normal total of 104
The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (date_enacted VARCHAR, ns VARCHAR, normal_total VARCHAR)
SELECT date_enacted FROM table_name_73 WHERE ns = "10" AND normal_total = "104"
Write a SQL query that answers the following question: Name the NS with normal total of 102
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (ns VARCHAR, normal_total VARCHAR)
SELECT ns FROM table_name_11 WHERE normal_total = "102"
Write a SQL query that answers the following question: Name the normal with que of 24
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (normal_total VARCHAR, que VARCHAR)
SELECT normal_total FROM table_name_62 WHERE que = "24"
Write a SQL query that answers the following question: What is the sum of all the points won by Peter Whitehead in an alta f2 Chassis?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (points INTEGER, entrant VARCHAR, chassis VARCHAR)
SELECT SUM(points) FROM table_name_41 WHERE entrant = "peter whitehead" AND chassis = "alta f2"
Write a SQL query that answers the following question: How many points does g a vandervell have?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (points VARCHAR, entrant VARCHAR)
SELECT points FROM table_name_95 WHERE entrant = "g a vandervell"
Write a SQL query that answers the following question: How many total points were earned with ferrari 125 Chassis after 1952?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (points INTEGER, chassis VARCHAR, year VARCHAR)
SELECT SUM(points) FROM table_name_77 WHERE chassis = "ferrari 125" AND year > 1952
Write a SQL query that answers the following question: What is the total number of Points that Peter Whitehead earned in a Ferrari 125?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (points INTEGER, entrant VARCHAR, chassis VARCHAR)
SELECT SUM(points) FROM table_name_42 WHERE entrant = "peter whitehead" AND chassis = "ferrari 125"
Write a SQL query that answers the following question: Name the D 41 √ for having D 43 of r 13
The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (d_41_√ VARCHAR, d_43_o VARCHAR)
SELECT d_41_√ FROM table_name_20 WHERE d_43_o = "r 13"
Write a SQL query that answers the following question: What was the rank of a transfer fee larger than 13 million, and after 2008?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (rank VARCHAR, transfer_fee___€_million_ VARCHAR, year VARCHAR)
SELECT COUNT(rank) FROM table_name_26 WHERE transfer_fee___€_million_ > 13 AND year > 2008
Write a SQL query that answers the following question: What president was elected in 2010?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (president VARCHAR, elected VARCHAR)
SELECT president FROM table_name_69 WHERE elected = 2010
Write a SQL query that answers the following question: When seats for 2001 is greater than 15 and % 2001 is greater than 100, what is the % 2006?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (_percentage_2006 INTEGER, seats_2001 VARCHAR, _percentage_2001 VARCHAR)
SELECT AVG(_percentage_2006) FROM table_name_70 WHERE seats_2001 > 15 AND _percentage_2001 > 100
Write a SQL query that answers the following question: What is the sum of % for 2001 if 2001 seats equals 7?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (_percentage_2001 VARCHAR, seats_2001 VARCHAR)
SELECT COUNT(_percentage_2001) FROM table_name_32 WHERE seats_2001 = 7
Write a SQL query that answers the following question: If 2006 is 13% and 2001 is greater than 12.1%, what is the greatest number of seats for 2001?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (seats_2001 INTEGER, _percentage_2006 VARCHAR, _percentage_2001 VARCHAR)
SELECT MAX(seats_2001) FROM table_name_71 WHERE _percentage_2006 = 13 AND _percentage_2001 > 12.1
Write a SQL query that answers the following question: What were the circumstances of the Hostile incident on the road to Jalalabad?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (circumstances VARCHAR, nature_of_incident VARCHAR, location VARCHAR)
SELECT circumstances FROM table_name_18 WHERE nature_of_incident = "hostile" AND location = "road to jalalabad"
Write a SQL query that answers the following question: What was the circumstance that happened on the road to Jalalabad?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (circumstances VARCHAR, location VARCHAR)
SELECT circumstances FROM table_name_89 WHERE location = "road to jalalabad"
Write a SQL query that answers the following question: What happened in Mazar-i-sharif?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (circumstances VARCHAR, location VARCHAR)
SELECT circumstances FROM table_name_3 WHERE location = "mazar-i-sharif"
Write a SQL query that answers the following question: What is the Index number of Chen Bangjun Andie from Singapore?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (index VARCHAR, country VARCHAR, name VARCHAR)
SELECT index FROM table_name_23 WHERE country = "singapore" AND name = "chen bangjun andie"
Write a SQL query that answers the following question: What is the Chinese name of the Eliminated player from Singapore in Index f9?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (Chinese VARCHAR, index VARCHAR, status VARCHAR, country VARCHAR)
SELECT Chinese AS name FROM table_name_51 WHERE status = "eliminated" AND country = "singapore" AND index = "f9"
Write a SQL query that answers the following question: What is the Chinese name of the player in Index F10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (Chinese VARCHAR, index VARCHAR)
SELECT Chinese AS name FROM table_name_73 WHERE index = "f10"
Write a SQL query that answers the following question: What is the name of the player from Malaysia, Kuala Lumpur in Index f8?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (name VARCHAR, country VARCHAR, index VARCHAR)
SELECT name FROM table_name_67 WHERE country = "malaysia, kuala lumpur" AND index = "f8"
Write a SQL query that answers the following question: Who was the opponent of the game on August 8?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_36 WHERE date = "august 8"
Write a SQL query that answers the following question: Who took the winning slot at the Vojens venue?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (winners VARCHAR, venue VARCHAR)
SELECT winners FROM table_name_29 WHERE venue = "vojens"
Write a SQL query that answers the following question: Who was the runner-up in 1980 at the Pocking venue?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (runner_up VARCHAR, venue VARCHAR, year VARCHAR)
SELECT runner_up FROM table_name_93 WHERE venue = "pocking" AND year = "1980"
Write a SQL query that answers the following question: What rank did the United States swimmer come in who posted 11.26 seconds in the 100-meter youth female division?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (rank VARCHAR, fastest_time__s_ VARCHAR, nation VARCHAR)
SELECT COUNT(rank) FROM table_name_71 WHERE fastest_time__s_ = "11.26" AND nation = "united states"
Write a SQL query that answers the following question: What is the lowest overall with more than 17 rounds?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (overall INTEGER, round INTEGER)
SELECT MIN(overall) FROM table_name_25 WHERE round > 17
Write a SQL query that answers the following question: What position has 14 rounds?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (position VARCHAR, round VARCHAR)
SELECT position FROM table_name_15 WHERE round = 14
Write a SQL query that answers the following question: What United States player has a score of 69-73-68=210?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (player VARCHAR, country VARCHAR, score VARCHAR)
SELECT player FROM table_name_72 WHERE score = 69 - 73 - 68 = 210 AND country = "united states"
Write a SQL query that answers the following question: What Argentina country is in t10 place?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_49 (score VARCHAR, place VARCHAR, country VARCHAR)
SELECT score FROM table_name_49 WHERE place = "t10" AND country = "argentina"
Write a SQL query that answers the following question: Which country has the score of 71-71-68=210?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_99 WHERE score = 71 - 71 - 68 = 210
Write a SQL query that answers the following question: What To par scored 72-71-68=211?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_29 WHERE score = 72 - 71 - 68 = 211
Write a SQL query that answers the following question: Name the award won for category of choice tv villain in years after 2008
The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (award VARCHAR, year VARCHAR, result VARCHAR, category VARCHAR)
SELECT award FROM table_name_94 WHERE result = "won" AND category = "choice tv villain" AND year > 2008
Write a SQL query that answers the following question: Name the award for nominated result and year after 2011
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (award VARCHAR, result VARCHAR, year VARCHAR)
SELECT award FROM table_name_38 WHERE result = "nominated" AND year > 2011
Write a SQL query that answers the following question: Which Perth also has Sydney yes, Gold Coast yes, and Adelaide no?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (perth VARCHAR, adelaide VARCHAR, sydney VARCHAR, gold_coast VARCHAR)
SELECT perth FROM table_name_97 WHERE sydney = "yes" AND gold_coast = "yes" AND adelaide = "no"
Write a SQL query that answers the following question: Which Perth has Gold Coast yes, Sydney yes, Melbourne yes, and Adelaide yes?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (perth VARCHAR, adelaide VARCHAR, melbourne VARCHAR, gold_coast VARCHAR, sydney VARCHAR)
SELECT perth FROM table_name_56 WHERE gold_coast = "yes" AND sydney = "yes" AND melbourne = "yes" AND adelaide = "yes"
Write a SQL query that answers the following question: Which Adelaide has Sydney yes, Melbourne yes, and Perth no?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (adelaide VARCHAR, perth VARCHAR, sydney VARCHAR, melbourne VARCHAR)
SELECT adelaide FROM table_name_31 WHERE sydney = "yes" AND melbourne = "yes" AND perth = "no"
Write a SQL query that answers the following question: Which Adelaide has Perth no, Gold Coast no, and Sydney yes?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (adelaide VARCHAR, sydney VARCHAR, perth VARCHAR, gold_coast VARCHAR)
SELECT adelaide FROM table_name_13 WHERE perth = "no" AND gold_coast = "yes" AND sydney = "yes"
Write a SQL query that answers the following question: Which Melbourne has Gold Coast yes, Perth cancelled, and Adelaide cancelled?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (melbourne VARCHAR, adelaide VARCHAR, gold_coast VARCHAR, perth VARCHAR)
SELECT melbourne FROM table_name_11 WHERE gold_coast = "yes" AND perth = "cancelled" AND adelaide = "cancelled"
Write a SQL query that answers the following question: Which Melbourne has Sydney yes, Gold Coast yes, and Perth yes?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (melbourne VARCHAR, perth VARCHAR, sydney VARCHAR, gold_coast VARCHAR)
SELECT melbourne FROM table_name_71 WHERE sydney = "yes" AND gold_coast = "yes" AND perth = "yes"
Write a SQL query that answers the following question: Who came in 3rd when Matej žagar won?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (winners VARCHAR)
SELECT 3 AS rd_place FROM table_name_30 WHERE winners = "matej žagar"
Write a SQL query that answers the following question: Who won at Krško?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (winners VARCHAR, venue VARCHAR)
SELECT winners FROM table_name_25 WHERE venue = "krško"
Write a SQL query that answers the following question: Who came in 3rd when Nicolai Klindt won?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (winners VARCHAR)
SELECT 3 AS rd_place FROM table_name_2 WHERE winners = "nicolai klindt"
Write a SQL query that answers the following question: Who came in 3rd at Venue?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (Id VARCHAR)
SELECT 3 AS rd_place FROM table_name_99 WHERE "venue" = "venue"
Write a SQL query that answers the following question: What is the total number of weeks that the Steelers had a record of 1–0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (week VARCHAR, record VARCHAR)
SELECT COUNT(week) FROM table_name_99 WHERE record = "1–0"
Write a SQL query that answers the following question: Who was the opponent at the Steelers game that had a result of l 20–17?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_46 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_46 WHERE result = "l 20–17"
Write a SQL query that answers the following question: Name the condition for partial thromboplastin time of prolonged and platelet count of unaffected with bleeding time of prolonged
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (condition VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)
SELECT condition FROM table_name_41 WHERE partial_thromboplastin_time = "prolonged" AND platelet_count = "unaffected" AND bleeding_time = "prolonged"
Write a SQL query that answers the following question: Name the condition with partial thromboplastin time of prolonged or unaffected
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (condition VARCHAR, partial_thromboplastin_time VARCHAR)
SELECT condition FROM table_name_14 WHERE partial_thromboplastin_time = "prolonged or unaffected"
Write a SQL query that answers the following question: Name the condition with partial thromboplastin time of unaffected and prothrombin time of unaffected with platelet count of decreased
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (condition VARCHAR, platelet_count VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR)
SELECT condition FROM table_name_4 WHERE partial_thromboplastin_time = "unaffected" AND prothrombin_time = "unaffected" AND platelet_count = "decreased"
Write a SQL query that answers the following question: Name the condition with platelet count of unaffected and bleeding time of unaffected with prothrombin time of prolonged and partial thromboplastin time of prolonged
The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (condition VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, platelet_count VARCHAR, bleeding_time VARCHAR)
SELECT condition FROM table_name_52 WHERE platelet_count = "unaffected" AND bleeding_time = "unaffected" AND prothrombin_time = "prolonged" AND partial_thromboplastin_time = "prolonged"
Write a SQL query that answers the following question: Name the bleeding time with platelet count of unaffected and condition of factor xii deficiency
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (bleeding_time VARCHAR, platelet_count VARCHAR, condition VARCHAR)
SELECT bleeding_time FROM table_name_83 WHERE platelet_count = "unaffected" AND condition = "factor xii deficiency"
Write a SQL query that answers the following question: what is the number of losses with draws less than 1 and 6.3% efficiency?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (losses INTEGER, efficiency__percentage VARCHAR, draws VARCHAR)
SELECT AVG(losses) FROM table_name_8 WHERE efficiency__percentage = "6.3%" AND draws < 1
Write a SQL query that answers the following question: what is the number of draws for ali said gouled?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (draws VARCHAR, name VARCHAR)
SELECT COUNT(draws) FROM table_name_12 WHERE name = "ali said gouled"
Write a SQL query that answers the following question: what is the number of draws when there are 4 losses and 28.6% efficiency?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (draws VARCHAR, losses VARCHAR, efficiency__percentage VARCHAR)
SELECT COUNT(draws) FROM table_name_11 WHERE losses = 4 AND efficiency__percentage = "28.6%"
Write a SQL query that answers the following question: Name the females when males are 1 548
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (females VARCHAR, males VARCHAR)
SELECT females FROM table_name_60 WHERE males = "1 548"
Write a SQL query that answers the following question: Name the percentage with number of 1 343
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (percentage___percentage_ VARCHAR, number VARCHAR)
SELECT percentage___percentage_ FROM table_name_11 WHERE number = "1 343"
Write a SQL query that answers the following question: Name the percentage which has females of 2
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (percentage___percentage_ VARCHAR, females VARCHAR)
SELECT percentage___percentage_ FROM table_name_17 WHERE females = "2"
Write a SQL query that answers the following question: Name the males for language of persons that didn't name their native language
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (males VARCHAR, language VARCHAR)
SELECT males FROM table_name_57 WHERE language = "persons that didn't name their native language"
Write a SQL query that answers the following question: What are the school colors for the college whose main campus is overland park?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (school_colors VARCHAR, main_campus_location VARCHAR)
SELECT school_colors FROM table_name_66 WHERE main_campus_location = "overland park"
Write a SQL query that answers the following question: What is independence community college's newest campus?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (founded INTEGER, institution VARCHAR)
SELECT MIN(founded) FROM table_name_37 WHERE institution = "independence community college"
Write a SQL query that answers the following question: What college was founded in 1967?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (main_campus_location VARCHAR, founded VARCHAR)
SELECT main_campus_location FROM table_name_61 WHERE founded = 1967
Write a SQL query that answers the following question: Who had a function of explorator?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (name VARCHAR, function VARCHAR)
SELECT name FROM table_name_9 WHERE function = "explorator"
Write a SQL query that answers the following question: Can you tell me the Competing entities that has the First held smaller than 1970?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (competing_entities VARCHAR, first_held INTEGER)
SELECT competing_entities FROM table_name_4 WHERE first_held < 1970
Write a SQL query that answers the following question: What surface was played on on October 3, 2010?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_42 WHERE date = "october 3, 2010"
Write a SQL query that answers the following question: What was the tier versus Manana Shapakidze?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (tier VARCHAR, opponent_in_the_final VARCHAR)
SELECT tier FROM table_name_5 WHERE opponent_in_the_final = "manana shapakidze"
Write a SQL query that answers the following question: What was the score versus Michaela Pochabová?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_85 (score VARCHAR, opponent_in_the_final VARCHAR)
SELECT score FROM table_name_85 WHERE opponent_in_the_final = "michaela pochabová"
Write a SQL query that answers the following question: Who was the opponent on May 8, 2006?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_75 WHERE date = "may 8, 2006"
Write a SQL query that answers the following question: What was the tier versus Annalisa bona?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (tier VARCHAR, opponent_in_the_final VARCHAR)
SELECT tier FROM table_name_59 WHERE opponent_in_the_final = "annalisa bona"
Write a SQL query that answers the following question: Which song has votes greater than 640 and a draw of 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (song VARCHAR, votes VARCHAR, draw VARCHAR)
SELECT song FROM table_name_62 WHERE votes > 640 AND draw = 1
Write a SQL query that answers the following question: When Keey has 58.1% what % does Bush have?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (bush_percentage VARCHAR, kerry_percentage VARCHAR)
SELECT bush_percentage FROM table_name_39 WHERE kerry_percentage = "58.1%"
Write a SQL query that answers the following question: Which of Real Betis career had appearances smaller than 98, nationality of Spain, and goals greater than 15?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (real_betis_career VARCHAR, goals VARCHAR, appearances VARCHAR, nationality VARCHAR)
SELECT real_betis_career FROM table_name_63 WHERE appearances < 98 AND nationality = "spain" AND goals > 15
Write a SQL query that answers the following question: What Decile has State Authority and Raumati South Area?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (decile VARCHAR, authority VARCHAR, area VARCHAR)
SELECT decile FROM table_name_67 WHERE authority = "state" AND area = "raumati south"
Write a SQL query that answers the following question: What is the total Decile with Waikanae Area?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (decile INTEGER, area VARCHAR)
SELECT SUM(decile) FROM table_name_6 WHERE area = "waikanae"
Write a SQL query that answers the following question: What Player with a Place of T10 had a Score of 80-70-72-72=294?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (player VARCHAR, place VARCHAR, score VARCHAR)
SELECT player FROM table_name_8 WHERE place = "t10" AND score = 80 - 70 - 72 - 72 = 294
Write a SQL query that answers the following question: What was the Money ($) amount for Lloyd Mangrum?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (money___$__ VARCHAR, player VARCHAR)
SELECT money___$__ FROM table_name_19 WHERE player = "lloyd mangrum"
Write a SQL query that answers the following question: What was the Money ($) amount for Cary Middlecoff?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (money___$__ VARCHAR, player VARCHAR)
SELECT money___$__ FROM table_name_20 WHERE player = "cary middlecoff"
Write a SQL query that answers the following question: What date was the game with a score of 5–2, and a Loss of lilly (9–9)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (date VARCHAR, score VARCHAR, loss VARCHAR)
SELECT date FROM table_name_98 WHERE score = "5–2" AND loss = "lilly (9–9)"
Write a SQL query that answers the following question: What team was the opponent when there was a score of 5–4 (11)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_38 WHERE score = "5–4 (11)"
Write a SQL query that answers the following question: What date was the game with a record of 47–39?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_93 WHERE record = "47–39"
Write a SQL query that answers the following question: What year did Tom Watson win?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (year_s__won VARCHAR, player VARCHAR)
SELECT year_s__won FROM table_name_78 WHERE player = "tom watson"
Write a SQL query that answers the following question: What is the total number that Tom Watson parred larger than 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (total VARCHAR, player VARCHAR, to_par VARCHAR)
SELECT COUNT(total) FROM table_name_93 WHERE player = "tom watson" AND to_par > 10
Write a SQL query that answers the following question: Which date has a Record of 4-5?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_71 WHERE record = "4-5"
Write a SQL query that answers the following question: Which score has a Loss of gubicza (0-1)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (score VARCHAR, loss VARCHAR)
SELECT score FROM table_name_66 WHERE loss = "gubicza (0-1)"
Write a SQL query that answers the following question: Which loss happened april 18?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_87 WHERE date = "april 18"
Write a SQL query that answers the following question: Which record has an Opponent of orioles and a Date of april 14?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (record VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT record FROM table_name_9 WHERE opponent = "orioles" AND date = "april 14"
Write a SQL query that answers the following question: Which record has a Date of april 25?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_96 WHERE date = "april 25"
Write a SQL query that answers the following question: Which opponent has a Record of 4-5?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_31 WHERE record = "4-5"
Write a SQL query that answers the following question: Name the country which has prix uip venezia
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (country VARCHAR, nominating_festival VARCHAR)
SELECT country FROM table_name_9 WHERE nominating_festival = "prix uip venezia"