question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which Share has a weekly Rank of 8 and is dated 15 June? | CREATE TABLE table_name_12 (share VARCHAR, weekly_rank VARCHAR, date VARCHAR) | SELECT share FROM table_name_12 WHERE weekly_rank = "8" AND date = "15 june" | ### Context: CREATE TABLE table_name_12 (share VARCHAR, weekly_rank VARCHAR, date VARCHAR) ### Question: Which Share has a weekly Rank of 8 and is dated 15 June? ### Answer: SELECT share FROM table_name_12 WHERE weekly_rank = "8" AND date = "15 june" |
Which Weekly Rank has an Official ratings (millions) of 11.58? | CREATE TABLE table_name_82 (weekly_rank VARCHAR, official_ratings__millions_ VARCHAR) | SELECT weekly_rank FROM table_name_82 WHERE official_ratings__millions_ = 11.58 | ### Context: CREATE TABLE table_name_82 (weekly_rank VARCHAR, official_ratings__millions_ VARCHAR) ### Question: Which Weekly Rank has an Official ratings (millions) of 11.58? ### Answer: SELECT weekly_rank FROM table_name_82 WHERE official_ratings__millions_ = 11.58 |
Which Show is dated 9 June? | CREATE TABLE table_name_39 (show VARCHAR, date VARCHAR) | SELECT show FROM table_name_39 WHERE date = "9 june" | ### Context: CREATE TABLE table_name_39 (show VARCHAR, date VARCHAR) ### Question: Which Show is dated 9 June? ### Answer: SELECT show FROM table_name_39 WHERE date = "9 june" |
Which Weekly Rank for a Live Final Show has an Official Ratings (millions) greater than 5.2? | CREATE TABLE table_name_8 (weekly_rank VARCHAR, official_ratings__millions_ VARCHAR, show VARCHAR) | SELECT weekly_rank FROM table_name_8 WHERE official_ratings__millions_ > 5.2 AND show = "live final" | ### Context: CREATE TABLE table_name_8 (weekly_rank VARCHAR, official_ratings__millions_ VARCHAR, show VARCHAR) ### Question: Which Weekly Rank for a Live Final Show has an Official Ratings (millions) greater than 5.2? ### Answer: SELECT weekly_rank FROM table_name_8 WHERE official_ratings__millions_ > 5.2 AND show = "live final" |
What is the status with the opposing team of Scotland? | CREATE TABLE table_name_9 (status VARCHAR, opposing_teams VARCHAR) | SELECT status FROM table_name_9 WHERE opposing_teams = "scotland" | ### Context: CREATE TABLE table_name_9 (status VARCHAR, opposing_teams VARCHAR) ### Question: What is the status with the opposing team of Scotland? ### Answer: SELECT status FROM table_name_9 WHERE opposing_teams = "scotland" |
What is the lowest against score for Twickenham, London with the status of Five Nations against Ireland? | CREATE TABLE table_name_16 (against INTEGER, opposing_teams VARCHAR, venue VARCHAR, status VARCHAR) | SELECT MIN(against) FROM table_name_16 WHERE venue = "twickenham, london" AND status = "five nations" AND opposing_teams = "ireland" | ### Context: CREATE TABLE table_name_16 (against INTEGER, opposing_teams VARCHAR, venue VARCHAR, status VARCHAR) ### Question: What is the lowest against score for Twickenham, London with the status of Five Nations against Ireland? ### Answer: SELECT MIN(against) FROM table_name_16 WHERE venue = "twickenham, london" AND status = "five nations" AND opposing_teams = "ireland" |
Which Venue has a Against smaller than 7? | CREATE TABLE table_name_31 (venue VARCHAR, against INTEGER) | SELECT venue FROM table_name_31 WHERE against < 7 | ### Context: CREATE TABLE table_name_31 (venue VARCHAR, against INTEGER) ### Question: Which Venue has a Against smaller than 7? ### Answer: SELECT venue FROM table_name_31 WHERE against < 7 |
When has a Status of five nations, and a Against of 7? | CREATE TABLE table_name_71 (date VARCHAR, status VARCHAR, against VARCHAR) | SELECT date FROM table_name_71 WHERE status = "five nations" AND against = 7 | ### Context: CREATE TABLE table_name_71 (date VARCHAR, status VARCHAR, against VARCHAR) ### Question: When has a Status of five nations, and a Against of 7? ### Answer: SELECT date FROM table_name_71 WHERE status = "five nations" AND against = 7 |
Which Venue has a Against larger than 13? | CREATE TABLE table_name_16 (venue VARCHAR, against INTEGER) | SELECT venue FROM table_name_16 WHERE against > 13 | ### Context: CREATE TABLE table_name_16 (venue VARCHAR, against INTEGER) ### Question: Which Venue has a Against larger than 13? ### Answer: SELECT venue FROM table_name_16 WHERE against > 13 |
Name the Against which has a Venue of wembley stadium , london? | CREATE TABLE table_name_91 (against INTEGER, venue VARCHAR) | SELECT MAX(against) FROM table_name_91 WHERE venue = "wembley stadium , london" | ### Context: CREATE TABLE table_name_91 (against INTEGER, venue VARCHAR) ### Question: Name the Against which has a Venue of wembley stadium , london? ### Answer: SELECT MAX(against) FROM table_name_91 WHERE venue = "wembley stadium , london" |
Which wins have less than 1 bye? | CREATE TABLE table_name_29 (wins INTEGER, byes INTEGER) | SELECT MAX(wins) FROM table_name_29 WHERE byes < 1 | ### Context: CREATE TABLE table_name_29 (wins INTEGER, byes INTEGER) ### Question: Which wins have less than 1 bye? ### Answer: SELECT MAX(wins) FROM table_name_29 WHERE byes < 1 |
Which Against has Losses larger than 10, and Wins smaller than 4, and a Club of dunolly? | CREATE TABLE table_name_38 (against INTEGER, club VARCHAR, losses VARCHAR, wins VARCHAR) | SELECT MIN(against) FROM table_name_38 WHERE losses > 10 AND wins < 4 AND club = "dunolly" | ### Context: CREATE TABLE table_name_38 (against INTEGER, club VARCHAR, losses VARCHAR, wins VARCHAR) ### Question: Which Against has Losses larger than 10, and Wins smaller than 4, and a Club of dunolly? ### Answer: SELECT MIN(against) FROM table_name_38 WHERE losses > 10 AND wins < 4 AND club = "dunolly" |
Which Byes has an Against smaller than 1297, and a Club of avoca, and Wins larger than 12? | CREATE TABLE table_name_45 (byes INTEGER, wins VARCHAR, against VARCHAR, club VARCHAR) | SELECT AVG(byes) FROM table_name_45 WHERE against < 1297 AND club = "avoca" AND wins > 12 | ### Context: CREATE TABLE table_name_45 (byes INTEGER, wins VARCHAR, against VARCHAR, club VARCHAR) ### Question: Which Byes has an Against smaller than 1297, and a Club of avoca, and Wins larger than 12? ### Answer: SELECT AVG(byes) FROM table_name_45 WHERE against < 1297 AND club = "avoca" AND wins > 12 |
What Kit/Factory has a J250 model made by Jabiru? | CREATE TABLE table_name_90 (kit_factory VARCHAR, manufacturer VARCHAR, model VARCHAR) | SELECT kit_factory FROM table_name_90 WHERE manufacturer = "jabiru" AND model = "j250" | ### Context: CREATE TABLE table_name_90 (kit_factory VARCHAR, manufacturer VARCHAR, model VARCHAR) ### Question: What Kit/Factory has a J250 model made by Jabiru? ### Answer: SELECT kit_factory FROM table_name_90 WHERE manufacturer = "jabiru" AND model = "j250" |
When was the duchess, who was married on 11 july 1643, born? | CREATE TABLE table_name_12 (birth VARCHAR, marriage VARCHAR) | SELECT birth FROM table_name_12 WHERE marriage = "11 july 1643" | ### Context: CREATE TABLE table_name_12 (birth VARCHAR, marriage VARCHAR) ### Question: When was the duchess, who was married on 11 july 1643, born? ### Answer: SELECT birth FROM table_name_12 WHERE marriage = "11 july 1643" |
When was anne of lorraine born? | CREATE TABLE table_name_91 (birth VARCHAR, name VARCHAR) | SELECT birth FROM table_name_91 WHERE name = "anne of lorraine" | ### Context: CREATE TABLE table_name_91 (birth VARCHAR, name VARCHAR) ### Question: When was anne of lorraine born? ### Answer: SELECT birth FROM table_name_91 WHERE name = "anne of lorraine" |
When did the duchess, who was married to philippe, die? | CREATE TABLE table_name_56 (death VARCHAR, spouse VARCHAR) | SELECT death FROM table_name_56 WHERE spouse = "philippe" | ### Context: CREATE TABLE table_name_56 (death VARCHAR, spouse VARCHAR) ### Question: When did the duchess, who was married to philippe, die? ### Answer: SELECT death FROM table_name_56 WHERE spouse = "philippe" |
When did the woman, who was married 22 may 1657, cease to be the duchess? | CREATE TABLE table_name_59 (ceased_to_be_duchess VARCHAR, marriage VARCHAR) | SELECT ceased_to_be_duchess FROM table_name_59 WHERE marriage = "22 may 1657" | ### Context: CREATE TABLE table_name_59 (ceased_to_be_duchess VARCHAR, marriage VARCHAR) ### Question: When did the woman, who was married 22 may 1657, cease to be the duchess? ### Answer: SELECT ceased_to_be_duchess FROM table_name_59 WHERE marriage = "22 may 1657" |
What is the score of the game with a tie no of 3? | CREATE TABLE table_name_14 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_14 WHERE tie_no = "3" | ### Context: CREATE TABLE table_name_14 (score VARCHAR, tie_no VARCHAR) ### Question: What is the score of the game with a tie no of 3? ### Answer: SELECT score FROM table_name_14 WHERE tie_no = "3" |
Who did home team sunderland play on 23 january 1982? | CREATE TABLE table_name_33 (away_team VARCHAR, date VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_33 WHERE date = "23 january 1982" AND home_team = "sunderland" | ### Context: CREATE TABLE table_name_33 (away_team VARCHAR, date VARCHAR, home_team VARCHAR) ### Question: Who did home team sunderland play on 23 january 1982? ### Answer: SELECT away_team FROM table_name_33 WHERE date = "23 january 1982" AND home_team = "sunderland" |
What is the score of the game against away team queens park rangers on 23 january 1982? | CREATE TABLE table_name_63 (score VARCHAR, date VARCHAR, away_team VARCHAR) | SELECT score FROM table_name_63 WHERE date = "23 january 1982" AND away_team = "queens park rangers" | ### Context: CREATE TABLE table_name_63 (score VARCHAR, date VARCHAR, away_team VARCHAR) ### Question: What is the score of the game against away team queens park rangers on 23 january 1982? ### Answer: SELECT score FROM table_name_63 WHERE date = "23 january 1982" AND away_team = "queens park rangers" |
What is the score of the game with a tie no of 6? | CREATE TABLE table_name_21 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_21 WHERE tie_no = "6" | ### Context: CREATE TABLE table_name_21 (score VARCHAR, tie_no VARCHAR) ### Question: What is the score of the game with a tie no of 6? ### Answer: SELECT score FROM table_name_21 WHERE tie_no = "6" |
What is the score of the game home team gillingham played on 23 january 1982? | CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_67 WHERE date = "23 january 1982" AND home_team = "gillingham" | ### Context: CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, home_team VARCHAR) ### Question: What is the score of the game home team gillingham played on 23 january 1982? ### Answer: SELECT score FROM table_name_67 WHERE date = "23 january 1982" AND home_team = "gillingham" |
What is the tie no of the game that home team huddersfield town played? | CREATE TABLE table_name_15 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_15 WHERE home_team = "huddersfield town" | ### Context: CREATE TABLE table_name_15 (tie_no VARCHAR, home_team VARCHAR) ### Question: What is the tie no of the game that home team huddersfield town played? ### Answer: SELECT tie_no FROM table_name_15 WHERE home_team = "huddersfield town" |
What is the home team of the game with a 2-0 record? | CREATE TABLE table_name_89 (home VARCHAR, record VARCHAR) | SELECT home FROM table_name_89 WHERE record = "2-0" | ### Context: CREATE TABLE table_name_89 (home VARCHAR, record VARCHAR) ### Question: What is the home team of the game with a 2-0 record? ### Answer: SELECT home FROM table_name_89 WHERE record = "2-0" |
What is the score of the game with a 3-0 record? | CREATE TABLE table_name_67 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_67 WHERE record = "3-0" | ### Context: CREATE TABLE table_name_67 (score VARCHAR, record VARCHAR) ### Question: What is the score of the game with a 3-0 record? ### Answer: SELECT score FROM table_name_67 WHERE record = "3-0" |
What is the visitor team on April 4? | CREATE TABLE table_name_98 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_98 WHERE date = "april 4" | ### Context: CREATE TABLE table_name_98 (visitor VARCHAR, date VARCHAR) ### Question: What is the visitor team on April 4? ### Answer: SELECT visitor FROM table_name_98 WHERE date = "april 4" |
What is the score of the game with the chicago black hawks as the visitor and a 3-1 record? | CREATE TABLE table_name_45 (score VARCHAR, visitor VARCHAR, record VARCHAR) | SELECT score FROM table_name_45 WHERE visitor = "chicago black hawks" AND record = "3-1" | ### Context: CREATE TABLE table_name_45 (score VARCHAR, visitor VARCHAR, record VARCHAR) ### Question: What is the score of the game with the chicago black hawks as the visitor and a 3-1 record? ### Answer: SELECT score FROM table_name_45 WHERE visitor = "chicago black hawks" AND record = "3-1" |
What is Instant Messaging, when Telephony is "Yes with integrated Sametime"? | CREATE TABLE table_name_64 (instant_messaging VARCHAR, telephony VARCHAR) | SELECT instant_messaging FROM table_name_64 WHERE telephony = "yes with integrated sametime" | ### Context: CREATE TABLE table_name_64 (instant_messaging VARCHAR, telephony VARCHAR) ### Question: What is Instant Messaging, when Telephony is "Yes with integrated Sametime"? ### Answer: SELECT instant_messaging FROM table_name_64 WHERE telephony = "yes with integrated sametime" |
What is Videoconferencing, when Synchronous Conferencing is "No", when Web Conferencing is "No", and when Faxing is "Yes"? | CREATE TABLE table_name_24 (videoconferencing VARCHAR, faxing VARCHAR, synchronous_conferencing VARCHAR, web_conferencing VARCHAR) | SELECT videoconferencing FROM table_name_24 WHERE synchronous_conferencing = "no" AND web_conferencing = "no" AND faxing = "yes" | ### Context: CREATE TABLE table_name_24 (videoconferencing VARCHAR, faxing VARCHAR, synchronous_conferencing VARCHAR, web_conferencing VARCHAR) ### Question: What is Videoconferencing, when Synchronous Conferencing is "No", when Web Conferencing is "No", and when Faxing is "Yes"? ### Answer: SELECT videoconferencing FROM table_name_24 WHERE synchronous_conferencing = "no" AND web_conferencing = "no" AND faxing = "yes" |
What is Videoconferencing, when Data Conferencing is "No", and when Web Conferencing is "No"? | CREATE TABLE table_name_82 (videoconferencing VARCHAR, data_conferencing VARCHAR, web_conferencing VARCHAR) | SELECT videoconferencing FROM table_name_82 WHERE data_conferencing = "no" AND web_conferencing = "no" | ### Context: CREATE TABLE table_name_82 (videoconferencing VARCHAR, data_conferencing VARCHAR, web_conferencing VARCHAR) ### Question: What is Videoconferencing, when Data Conferencing is "No", and when Web Conferencing is "No"? ### Answer: SELECT videoconferencing FROM table_name_82 WHERE data_conferencing = "no" AND web_conferencing = "no" |
What is Application Sharing, when Web Conferencing is "Web Conferencing"? | CREATE TABLE table_name_40 (application_sharing VARCHAR, web_conferencing VARCHAR) | SELECT application_sharing FROM table_name_40 WHERE web_conferencing = "web conferencing" | ### Context: CREATE TABLE table_name_40 (application_sharing VARCHAR, web_conferencing VARCHAR) ### Question: What is Application Sharing, when Web Conferencing is "Web Conferencing"? ### Answer: SELECT application_sharing FROM table_name_40 WHERE web_conferencing = "web conferencing" |
What is Instant Messaging, when Electronic Meeting System is "Yes", and when Name is "Microsoft Sharepoint"? | CREATE TABLE table_name_48 (instant_messaging VARCHAR, electronic_meeting_system VARCHAR, name VARCHAR) | SELECT instant_messaging FROM table_name_48 WHERE electronic_meeting_system = "yes" AND name = "microsoft sharepoint" | ### Context: CREATE TABLE table_name_48 (instant_messaging VARCHAR, electronic_meeting_system VARCHAR, name VARCHAR) ### Question: What is Instant Messaging, when Electronic Meeting System is "Yes", and when Name is "Microsoft Sharepoint"? ### Answer: SELECT instant_messaging FROM table_name_48 WHERE electronic_meeting_system = "yes" AND name = "microsoft sharepoint" |
What is Instant Messaging, when Telephony is "Yes with integrated Sametime"? | CREATE TABLE table_name_26 (instant_messaging VARCHAR, telephony VARCHAR) | SELECT instant_messaging FROM table_name_26 WHERE telephony = "yes with integrated sametime" | ### Context: CREATE TABLE table_name_26 (instant_messaging VARCHAR, telephony VARCHAR) ### Question: What is Instant Messaging, when Telephony is "Yes with integrated Sametime"? ### Answer: SELECT instant_messaging FROM table_name_26 WHERE telephony = "yes with integrated sametime" |
What Tournament has an Outcome of winner, and Opponents of eddie dibbs harold solomon? | CREATE TABLE table_name_78 (tournament VARCHAR, outcome VARCHAR, opponents VARCHAR) | SELECT tournament FROM table_name_78 WHERE outcome = "winner" AND opponents = "eddie dibbs harold solomon" | ### Context: CREATE TABLE table_name_78 (tournament VARCHAR, outcome VARCHAR, opponents VARCHAR) ### Question: What Tournament has an Outcome of winner, and Opponents of eddie dibbs harold solomon? ### Answer: SELECT tournament FROM table_name_78 WHERE outcome = "winner" AND opponents = "eddie dibbs harold solomon" |
What Partner has a Score of 3–6, 2–6? | CREATE TABLE table_name_59 (partner VARCHAR, score VARCHAR) | SELECT partner FROM table_name_59 WHERE score = "3–6, 2–6" | ### Context: CREATE TABLE table_name_59 (partner VARCHAR, score VARCHAR) ### Question: What Partner has a Score of 3–6, 2–6? ### Answer: SELECT partner FROM table_name_59 WHERE score = "3–6, 2–6" |
What Tournament has a Partner of tom gorman? | CREATE TABLE table_name_65 (tournament VARCHAR, partner VARCHAR) | SELECT tournament FROM table_name_65 WHERE partner = "tom gorman" | ### Context: CREATE TABLE table_name_65 (tournament VARCHAR, partner VARCHAR) ### Question: What Tournament has a Partner of tom gorman? ### Answer: SELECT tournament FROM table_name_65 WHERE partner = "tom gorman" |
What Outcome has Opponents of bob hewitt frew mcmillan? | CREATE TABLE table_name_2 (outcome VARCHAR, opponents VARCHAR) | SELECT outcome FROM table_name_2 WHERE opponents = "bob hewitt frew mcmillan" | ### Context: CREATE TABLE table_name_2 (outcome VARCHAR, opponents VARCHAR) ### Question: What Outcome has Opponents of bob hewitt frew mcmillan? ### Answer: SELECT outcome FROM table_name_2 WHERE opponents = "bob hewitt frew mcmillan" |
Who was the name of the opposing team on 11/02/1961? | CREATE TABLE table_name_36 (opposing_teams VARCHAR, date VARCHAR) | SELECT opposing_teams FROM table_name_36 WHERE date = "11/02/1961" | ### Context: CREATE TABLE table_name_36 (opposing_teams VARCHAR, date VARCHAR) ### Question: Who was the name of the opposing team on 11/02/1961? ### Answer: SELECT opposing_teams FROM table_name_36 WHERE date = "11/02/1961" |
Which Opposing team had an Against smaller Than 5? | CREATE TABLE table_name_14 (opposing_teams VARCHAR, against INTEGER) | SELECT opposing_teams FROM table_name_14 WHERE against < 5 | ### Context: CREATE TABLE table_name_14 (opposing_teams VARCHAR, against INTEGER) ### Question: Which Opposing team had an Against smaller Than 5? ### Answer: SELECT opposing_teams FROM table_name_14 WHERE against < 5 |
What is the status for 07/01/1961? | CREATE TABLE table_name_91 (status VARCHAR, date VARCHAR) | SELECT status FROM table_name_91 WHERE date = "07/01/1961" | ### Context: CREATE TABLE table_name_91 (status VARCHAR, date VARCHAR) ### Question: What is the status for 07/01/1961? ### Answer: SELECT status FROM table_name_91 WHERE date = "07/01/1961" |
What position does Karl Singer play? | CREATE TABLE table_name_22 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_22 WHERE player = "karl singer" | ### Context: CREATE TABLE table_name_22 (position VARCHAR, player VARCHAR) ### Question: What position does Karl Singer play? ### Answer: SELECT position FROM table_name_22 WHERE player = "karl singer" |
Which player is an offensive tackle for the New York Jets? | CREATE TABLE table_name_37 (player VARCHAR, position VARCHAR, afl_team VARCHAR) | SELECT player FROM table_name_37 WHERE position = "offensive tackle" AND afl_team = "new york jets" | ### Context: CREATE TABLE table_name_37 (player VARCHAR, position VARCHAR, afl_team VARCHAR) ### Question: Which player is an offensive tackle for the New York Jets? ### Answer: SELECT player FROM table_name_37 WHERE position = "offensive tackle" AND afl_team = "new york jets" |
What position does Mike Dennis play? | CREATE TABLE table_name_42 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_42 WHERE player = "mike dennis" | ### Context: CREATE TABLE table_name_42 (position VARCHAR, player VARCHAR) ### Question: What position does Mike Dennis play? ### Answer: SELECT position FROM table_name_42 WHERE player = "mike dennis" |
Which AFL team has a pick 4 for the offensive tackle position? | CREATE TABLE table_name_14 (afl_team VARCHAR, position VARCHAR, pick VARCHAR) | SELECT afl_team FROM table_name_14 WHERE position = "offensive tackle" AND pick = 4 | ### Context: CREATE TABLE table_name_14 (afl_team VARCHAR, position VARCHAR, pick VARCHAR) ### Question: Which AFL team has a pick 4 for the offensive tackle position? ### Answer: SELECT afl_team FROM table_name_14 WHERE position = "offensive tackle" AND pick = 4 |
From which country was Sodje loaned? | CREATE TABLE table_name_88 (country VARCHAR, name VARCHAR) | SELECT country FROM table_name_88 WHERE name = "sodje" | ### Context: CREATE TABLE table_name_88 (country VARCHAR, name VARCHAR) ### Question: From which country was Sodje loaned? ### Answer: SELECT country FROM table_name_88 WHERE name = "sodje" |
From which club is player C. Dickinson? | CREATE TABLE table_name_35 (loan_club VARCHAR, name VARCHAR) | SELECT loan_club FROM table_name_35 WHERE name = "c. dickinson" | ### Context: CREATE TABLE table_name_35 (loan_club VARCHAR, name VARCHAR) ### Question: From which club is player C. Dickinson? ### Answer: SELECT loan_club FROM table_name_35 WHERE name = "c. dickinson" |
What is the fate for the Bremen ship? | CREATE TABLE table_name_26 (fate VARCHAR, ship VARCHAR) | SELECT fate FROM table_name_26 WHERE ship = "bremen" | ### Context: CREATE TABLE table_name_26 (fate VARCHAR, ship VARCHAR) ### Question: What is the fate for the Bremen ship? ### Answer: SELECT fate FROM table_name_26 WHERE ship = "bremen" |
Who is the original operator for the AG Vulcan builder and the Prinzess Irene ship? | CREATE TABLE table_name_54 (original_operator VARCHAR, builder VARCHAR, ship VARCHAR) | SELECT original_operator FROM table_name_54 WHERE builder = "ag vulcan" AND ship = "prinzess irene" | ### Context: CREATE TABLE table_name_54 (original_operator VARCHAR, builder VARCHAR, ship VARCHAR) ### Question: Who is the original operator for the AG Vulcan builder and the Prinzess Irene ship? ### Answer: SELECT original_operator FROM table_name_54 WHERE builder = "ag vulcan" AND ship = "prinzess irene" |
What is the Tonnage that has builder AG Vulcan, and the original operator NDL, and the ship, Prinzess Irene? | CREATE TABLE table_name_9 (tonnage VARCHAR, ship VARCHAR, builder VARCHAR, original_operator VARCHAR) | SELECT tonnage FROM table_name_9 WHERE builder = "ag vulcan" AND original_operator = "ndl" AND ship = "prinzess irene" | ### Context: CREATE TABLE table_name_9 (tonnage VARCHAR, ship VARCHAR, builder VARCHAR, original_operator VARCHAR) ### Question: What is the Tonnage that has builder AG Vulcan, and the original operator NDL, and the ship, Prinzess Irene? ### Answer: SELECT tonnage FROM table_name_9 WHERE builder = "ag vulcan" AND original_operator = "ndl" AND ship = "prinzess irene" |
Who has a Score of 68-71-70=208? | CREATE TABLE table_name_60 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_60 WHERE score = 68 - 71 - 70 = 208 | ### Context: CREATE TABLE table_name_60 (player VARCHAR, score VARCHAR) ### Question: Who has a Score of 68-71-70=208? ### Answer: SELECT player FROM table_name_60 WHERE score = 68 - 71 - 70 = 208 |
Which country has -9 to par with a Score of 70-69-68=207? | CREATE TABLE table_name_55 (country VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT country FROM table_name_55 WHERE to_par = "-9" AND score = 70 - 69 - 68 = 207 | ### Context: CREATE TABLE table_name_55 (country VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: Which country has -9 to par with a Score of 70-69-68=207? ### Answer: SELECT country FROM table_name_55 WHERE to_par = "-9" AND score = 70 - 69 - 68 = 207 |
What is Tiger Woods' to par? | CREATE TABLE table_name_5 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_5 WHERE player = "tiger woods" | ### Context: CREATE TABLE table_name_5 (to_par VARCHAR, player VARCHAR) ### Question: What is Tiger Woods' to par? ### Answer: SELECT to_par FROM table_name_5 WHERE player = "tiger woods" |
Which away team played against Peterborough United, with a tie no of replay? | CREATE TABLE table_name_85 (away_team VARCHAR, tie_no VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_85 WHERE tie_no = "replay" AND home_team = "peterborough united" | ### Context: CREATE TABLE table_name_85 (away_team VARCHAR, tie_no VARCHAR, home_team VARCHAR) ### Question: Which away team played against Peterborough United, with a tie no of replay? ### Answer: SELECT away_team FROM table_name_85 WHERE tie_no = "replay" AND home_team = "peterborough united" |
What are the lowest matches that have wickets greater than 16, 3/15 as the best, and an econ less than 8? | CREATE TABLE table_name_19 (matches INTEGER, econ VARCHAR, wickets VARCHAR, best VARCHAR) | SELECT MIN(matches) FROM table_name_19 WHERE wickets > 16 AND best = "3/15" AND econ < 8 | ### Context: CREATE TABLE table_name_19 (matches INTEGER, econ VARCHAR, wickets VARCHAR, best VARCHAR) ### Question: What are the lowest matches that have wickets greater than 16, 3/15 as the best, and an econ less than 8? ### Answer: SELECT MIN(matches) FROM table_name_19 WHERE wickets > 16 AND best = "3/15" AND econ < 8 |
How many econs have 13.76 as the S/Rate, with runs less than 325? | CREATE TABLE table_name_27 (econ VARCHAR, s_rate VARCHAR, runs VARCHAR) | SELECT COUNT(econ) FROM table_name_27 WHERE s_rate = 13.76 AND runs < 325 | ### Context: CREATE TABLE table_name_27 (econ VARCHAR, s_rate VARCHAR, runs VARCHAR) ### Question: How many econs have 13.76 as the S/Rate, with runs less than 325? ### Answer: SELECT COUNT(econ) FROM table_name_27 WHERE s_rate = 13.76 AND runs < 325 |
What is the average wickets that have overs greater than 44, danish kaneria as the player, with an average greater than 13.8? | CREATE TABLE table_name_24 (wickets INTEGER, average VARCHAR, overs VARCHAR, player VARCHAR) | SELECT AVG(wickets) FROM table_name_24 WHERE overs > 44 AND player = "danish kaneria" AND average > 13.8 | ### Context: CREATE TABLE table_name_24 (wickets INTEGER, average VARCHAR, overs VARCHAR, player VARCHAR) ### Question: What is the average wickets that have overs greater than 44, danish kaneria as the player, with an average greater than 13.8? ### Answer: SELECT AVG(wickets) FROM table_name_24 WHERE overs > 44 AND player = "danish kaneria" AND average > 13.8 |
How many 5+/inns have tyron henderson as the player, with wickets less than 21? | CREATE TABLE table_name_40 (_inns VARCHAR, player VARCHAR, wickets VARCHAR) | SELECT COUNT(5) + _inns FROM table_name_40 WHERE player = "tyron henderson" AND wickets < 21 | ### Context: CREATE TABLE table_name_40 (_inns VARCHAR, player VARCHAR, wickets VARCHAR) ### Question: How many 5+/inns have tyron henderson as the player, with wickets less than 21? ### Answer: SELECT COUNT(5) + _inns FROM table_name_40 WHERE player = "tyron henderson" AND wickets < 21 |
What is the surface when the partner was Robert Haybittel? | CREATE TABLE table_name_42 (surface VARCHAR, partner VARCHAR) | SELECT surface FROM table_name_42 WHERE partner = "robert haybittel" | ### Context: CREATE TABLE table_name_42 (surface VARCHAR, partner VARCHAR) ### Question: What is the surface when the partner was Robert Haybittel? ### Answer: SELECT surface FROM table_name_42 WHERE partner = "robert haybittel" |
What was the rating of the episode Wonder Drug? | CREATE TABLE table_name_82 (ratings__5_capital_cities_ VARCHAR, episode_no VARCHAR) | SELECT ratings__5_capital_cities_ FROM table_name_82 WHERE episode_no = "wonder drug" | ### Context: CREATE TABLE table_name_82 (ratings__5_capital_cities_ VARCHAR, episode_no VARCHAR) ### Question: What was the rating of the episode Wonder Drug? ### Answer: SELECT ratings__5_capital_cities_ FROM table_name_82 WHERE episode_no = "wonder drug" |
Who was the winning team on May 12? | CREATE TABLE table_name_77 (winning_team VARCHAR, date VARCHAR) | SELECT winning_team FROM table_name_77 WHERE date = "may 12" | ### Context: CREATE TABLE table_name_77 (winning_team VARCHAR, date VARCHAR) ### Question: Who was the winning team on May 12? ### Answer: SELECT winning_team FROM table_name_77 WHERE date = "may 12" |
Who was the winning team for circuit zolder? | CREATE TABLE table_name_46 (winning_team VARCHAR, circuit VARCHAR) | SELECT winning_team FROM table_name_46 WHERE circuit = "circuit zolder" | ### Context: CREATE TABLE table_name_46 (winning_team VARCHAR, circuit VARCHAR) ### Question: Who was the winning team for circuit zolder? ### Answer: SELECT winning_team FROM table_name_46 WHERE circuit = "circuit zolder" |
Who was the winning team for round 3? | CREATE TABLE table_name_1 (winning_team VARCHAR, round VARCHAR) | SELECT winning_team FROM table_name_1 WHERE round = "3" | ### Context: CREATE TABLE table_name_1 (winning_team VARCHAR, round VARCHAR) ### Question: Who was the winning team for round 3? ### Answer: SELECT winning_team FROM table_name_1 WHERE round = "3" |
Who was the winning team on July 13? | CREATE TABLE table_name_11 (winning_team VARCHAR, date VARCHAR) | SELECT winning_team FROM table_name_11 WHERE date = "july 13" | ### Context: CREATE TABLE table_name_11 (winning_team VARCHAR, date VARCHAR) ### Question: Who was the winning team on July 13? ### Answer: SELECT winning_team FROM table_name_11 WHERE date = "july 13" |
Name the highest Year which has a Venue of narbonne , france? | CREATE TABLE table_name_95 (year INTEGER, venue VARCHAR) | SELECT MAX(year) FROM table_name_95 WHERE venue = "narbonne , france" | ### Context: CREATE TABLE table_name_95 (year INTEGER, venue VARCHAR) ### Question: Name the highest Year which has a Venue of narbonne , france? ### Answer: SELECT MAX(year) FROM table_name_95 WHERE venue = "narbonne , france" |
Which Competition has a Year larger than 1990 in seville , spain? | CREATE TABLE table_name_5 (competition VARCHAR, year VARCHAR, venue VARCHAR) | SELECT competition FROM table_name_5 WHERE year > 1990 AND venue = "seville , spain" | ### Context: CREATE TABLE table_name_5 (competition VARCHAR, year VARCHAR, venue VARCHAR) ### Question: Which Competition has a Year larger than 1990 in seville , spain? ### Answer: SELECT competition FROM table_name_5 WHERE year > 1990 AND venue = "seville , spain" |
COunt the Year which has a Venue of latakia , syria? | CREATE TABLE table_name_71 (year VARCHAR, venue VARCHAR) | SELECT COUNT(year) FROM table_name_71 WHERE venue = "latakia , syria" | ### Context: CREATE TABLE table_name_71 (year VARCHAR, venue VARCHAR) ### Question: COunt the Year which has a Venue of latakia , syria? ### Answer: SELECT COUNT(year) FROM table_name_71 WHERE venue = "latakia , syria" |
Which Position has an Event of 4x400 m relay, and a Venue of stuttgart , germany? | CREATE TABLE table_name_93 (position VARCHAR, event VARCHAR, venue VARCHAR) | SELECT position FROM table_name_93 WHERE event = "4x400 m relay" AND venue = "stuttgart , germany" | ### Context: CREATE TABLE table_name_93 (position VARCHAR, event VARCHAR, venue VARCHAR) ### Question: Which Position has an Event of 4x400 m relay, and a Venue of stuttgart , germany? ### Answer: SELECT position FROM table_name_93 WHERE event = "4x400 m relay" AND venue = "stuttgart , germany" |
Which Year has a Competition of european indoor championships, and a Venue of budapest , hungary? | CREATE TABLE table_name_80 (year INTEGER, competition VARCHAR, venue VARCHAR) | SELECT SUM(year) FROM table_name_80 WHERE competition = "european indoor championships" AND venue = "budapest , hungary" | ### Context: CREATE TABLE table_name_80 (year INTEGER, competition VARCHAR, venue VARCHAR) ### Question: Which Year has a Competition of european indoor championships, and a Venue of budapest , hungary? ### Answer: SELECT SUM(year) FROM table_name_80 WHERE competition = "european indoor championships" AND venue = "budapest , hungary" |
How many rounds did satrio hermanto go with an opc-challenge engine? | CREATE TABLE table_name_84 (rounds VARCHAR, engine VARCHAR, driver VARCHAR) | SELECT rounds FROM table_name_84 WHERE engine = "opc-challenge" AND driver = "satrio hermanto" | ### Context: CREATE TABLE table_name_84 (rounds VARCHAR, engine VARCHAR, driver VARCHAR) ### Question: How many rounds did satrio hermanto go with an opc-challenge engine? ### Answer: SELECT rounds FROM table_name_84 WHERE engine = "opc-challenge" AND driver = "satrio hermanto" |
How many rounds did frédéric vervisch go? | CREATE TABLE table_name_27 (rounds VARCHAR, driver VARCHAR) | SELECT rounds FROM table_name_27 WHERE driver = "frédéric vervisch" | ### Context: CREATE TABLE table_name_27 (rounds VARCHAR, driver VARCHAR) ### Question: How many rounds did frédéric vervisch go? ### Answer: SELECT rounds FROM table_name_27 WHERE driver = "frédéric vervisch" |
How many rounds did shirley van der lof go? | CREATE TABLE table_name_46 (rounds VARCHAR, driver VARCHAR) | SELECT rounds FROM table_name_46 WHERE driver = "shirley van der lof" | ### Context: CREATE TABLE table_name_46 (rounds VARCHAR, driver VARCHAR) ### Question: How many rounds did shirley van der lof go? ### Answer: SELECT rounds FROM table_name_46 WHERE driver = "shirley van der lof" |
What c class engine did philipp eng and team hs technik motorsport use? | CREATE TABLE table_name_2 (engine VARCHAR, driver VARCHAR, class VARCHAR, team VARCHAR) | SELECT engine FROM table_name_2 WHERE class = "c" AND team = "hs technik motorsport" AND driver = "philipp eng" | ### Context: CREATE TABLE table_name_2 (engine VARCHAR, driver VARCHAR, class VARCHAR, team VARCHAR) ### Question: What c class engine did philipp eng and team hs technik motorsport use? ### Answer: SELECT engine FROM table_name_2 WHERE class = "c" AND team = "hs technik motorsport" AND driver = "philipp eng" |
What is the chassis of rahel frey's volkswagen engine? | CREATE TABLE table_name_74 (chassis VARCHAR, engine VARCHAR, driver VARCHAR) | SELECT chassis FROM table_name_74 WHERE engine = "volkswagen" AND driver = "rahel frey" | ### Context: CREATE TABLE table_name_74 (chassis VARCHAR, engine VARCHAR, driver VARCHAR) ### Question: What is the chassis of rahel frey's volkswagen engine? ### Answer: SELECT chassis FROM table_name_74 WHERE engine = "volkswagen" AND driver = "rahel frey" |
What is the greatest number of losses when the against is 1465 and there are more than 7 wins? | CREATE TABLE table_name_80 (losses INTEGER, against VARCHAR, wins VARCHAR) | SELECT MAX(losses) FROM table_name_80 WHERE against = 1465 AND wins > 7 | ### Context: CREATE TABLE table_name_80 (losses INTEGER, against VARCHAR, wins VARCHAR) ### Question: What is the greatest number of losses when the against is 1465 and there are more than 7 wins? ### Answer: SELECT MAX(losses) FROM table_name_80 WHERE against = 1465 AND wins > 7 |
What is the total of against matches when there are less than 12 wins, less than 0 draws, and Moulamein is the golden river? | CREATE TABLE table_name_36 (against INTEGER, draws VARCHAR, wins VARCHAR, golden_rivers VARCHAR) | SELECT SUM(against) FROM table_name_36 WHERE wins < 12 AND golden_rivers = "moulamein" AND draws < 0 | ### Context: CREATE TABLE table_name_36 (against INTEGER, draws VARCHAR, wins VARCHAR, golden_rivers VARCHAR) ### Question: What is the total of against matches when there are less than 12 wins, less than 0 draws, and Moulamein is the golden river? ### Answer: SELECT SUM(against) FROM table_name_36 WHERE wins < 12 AND golden_rivers = "moulamein" AND draws < 0 |
What is the total losses when Hay is the golden river and there are more than 2 byes? | CREATE TABLE table_name_1 (losses VARCHAR, golden_rivers VARCHAR, byes VARCHAR) | SELECT COUNT(losses) FROM table_name_1 WHERE golden_rivers = "hay" AND byes > 2 | ### Context: CREATE TABLE table_name_1 (losses VARCHAR, golden_rivers VARCHAR, byes VARCHAR) ### Question: What is the total losses when Hay is the golden river and there are more than 2 byes? ### Answer: SELECT COUNT(losses) FROM table_name_1 WHERE golden_rivers = "hay" AND byes > 2 |
What is the total number of draws when there are 1465 against matches and less than 2 byes? | CREATE TABLE table_name_76 (draws VARCHAR, against VARCHAR, byes VARCHAR) | SELECT COUNT(draws) FROM table_name_76 WHERE against = 1465 AND byes < 2 | ### Context: CREATE TABLE table_name_76 (draws VARCHAR, against VARCHAR, byes VARCHAR) ### Question: What is the total number of draws when there are 1465 against matches and less than 2 byes? ### Answer: SELECT COUNT(draws) FROM table_name_76 WHERE against = 1465 AND byes < 2 |
What is the greatest number of losses when there are more than 0 draws and 1390 against matches? | CREATE TABLE table_name_22 (losses INTEGER, draws VARCHAR, against VARCHAR) | SELECT MAX(losses) FROM table_name_22 WHERE draws > 0 AND against = 1390 | ### Context: CREATE TABLE table_name_22 (losses INTEGER, draws VARCHAR, against VARCHAR) ### Question: What is the greatest number of losses when there are more than 0 draws and 1390 against matches? ### Answer: SELECT MAX(losses) FROM table_name_22 WHERE draws > 0 AND against = 1390 |
What is the highest number of wins when there are more than 2 byes? | CREATE TABLE table_name_76 (wins INTEGER, byes INTEGER) | SELECT MAX(wins) FROM table_name_76 WHERE byes > 2 | ### Context: CREATE TABLE table_name_76 (wins INTEGER, byes INTEGER) ### Question: What is the highest number of wins when there are more than 2 byes? ### Answer: SELECT MAX(wins) FROM table_name_76 WHERE byes > 2 |
Which percent has Wins larger than 72, and a Name of john yovicsin? | CREATE TABLE table_name_70 (pct INTEGER, wins VARCHAR, name VARCHAR) | SELECT SUM(pct) FROM table_name_70 WHERE wins > 72 AND name = "john yovicsin" | ### Context: CREATE TABLE table_name_70 (pct INTEGER, wins VARCHAR, name VARCHAR) ### Question: Which percent has Wins larger than 72, and a Name of john yovicsin? ### Answer: SELECT SUM(pct) FROM table_name_70 WHERE wins > 72 AND name = "john yovicsin" |
How many Ties have Years of 1919–1925, and a Pct larger than 0.734? | CREATE TABLE table_name_75 (ties INTEGER, years VARCHAR, pct VARCHAR) | SELECT SUM(ties) FROM table_name_75 WHERE years = "1919–1925" AND pct > 0.734 | ### Context: CREATE TABLE table_name_75 (ties INTEGER, years VARCHAR, pct VARCHAR) ### Question: How many Ties have Years of 1919–1925, and a Pct larger than 0.734? ### Answer: SELECT SUM(ties) FROM table_name_75 WHERE years = "1919–1925" AND pct > 0.734 |
Which Pct has Years of 1957–1970, and Wins smaller than 78? | CREATE TABLE table_name_89 (pct INTEGER, years VARCHAR, wins VARCHAR) | SELECT SUM(pct) FROM table_name_89 WHERE years = "1957–1970" AND wins < 78 | ### Context: CREATE TABLE table_name_89 (pct INTEGER, years VARCHAR, wins VARCHAR) ### Question: Which Pct has Years of 1957–1970, and Wins smaller than 78? ### Answer: SELECT SUM(pct) FROM table_name_89 WHERE years = "1957–1970" AND wins < 78 |
Which Wins have Years of 1881, and a Pct larger than 0.75? | CREATE TABLE table_name_18 (wins INTEGER, years VARCHAR, pct VARCHAR) | SELECT AVG(wins) FROM table_name_18 WHERE years = "1881" AND pct > 0.75 | ### Context: CREATE TABLE table_name_18 (wins INTEGER, years VARCHAR, pct VARCHAR) ### Question: Which Wins have Years of 1881, and a Pct larger than 0.75? ### Answer: SELECT AVG(wins) FROM table_name_18 WHERE years = "1881" AND pct > 0.75 |
What's the genre of the song recorded in 1929? | CREATE TABLE table_name_41 (genre VARCHAR, year_recorded VARCHAR) | SELECT genre FROM table_name_41 WHERE year_recorded = "1929" | ### Context: CREATE TABLE table_name_41 (genre VARCHAR, year_recorded VARCHAR) ### Question: What's the genre of the song recorded in 1929? ### Answer: SELECT genre FROM table_name_41 WHERE year_recorded = "1929" |
What's the year inducted for the label of label? | CREATE TABLE table_name_59 (year_inducted VARCHAR) | SELECT year_inducted FROM table_name_59 WHERE "label" = "label" | ### Context: CREATE TABLE table_name_59 (year_inducted VARCHAR) ### Question: What's the year inducted for the label of label? ### Answer: SELECT year_inducted FROM table_name_59 WHERE "label" = "label" |
What genre is the song recorded in 1929? | CREATE TABLE table_name_26 (genre VARCHAR, year_recorded VARCHAR) | SELECT genre FROM table_name_26 WHERE year_recorded = "1929" | ### Context: CREATE TABLE table_name_26 (genre VARCHAR, year_recorded VARCHAR) ### Question: What genre is the song recorded in 1929? ### Answer: SELECT genre FROM table_name_26 WHERE year_recorded = "1929" |
What genre is the song recorded in 1926? | CREATE TABLE table_name_56 (genre VARCHAR, year_recorded VARCHAR) | SELECT genre FROM table_name_56 WHERE year_recorded = "1926" | ### Context: CREATE TABLE table_name_56 (genre VARCHAR, year_recorded VARCHAR) ### Question: What genre is the song recorded in 1926? ### Answer: SELECT genre FROM table_name_56 WHERE year_recorded = "1926" |
Which Party has a Residence of san diego? | CREATE TABLE table_name_23 (party VARCHAR, residence VARCHAR) | SELECT party FROM table_name_23 WHERE residence = "san diego" | ### Context: CREATE TABLE table_name_23 (party VARCHAR, residence VARCHAR) ### Question: Which Party has a Residence of san diego? ### Answer: SELECT party FROM table_name_23 WHERE residence = "san diego" |
Which Years in Senate has a Years in Assembly of 2010–present, and toni atkins? | CREATE TABLE table_name_23 (years_in_senate VARCHAR, years_in_assembly VARCHAR, name VARCHAR) | SELECT years_in_senate FROM table_name_23 WHERE years_in_assembly = "2010–present" AND name = "toni atkins" | ### Context: CREATE TABLE table_name_23 (years_in_senate VARCHAR, years_in_assembly VARCHAR, name VARCHAR) ### Question: Which Years in Senate has a Years in Assembly of 2010–present, and toni atkins? ### Answer: SELECT years_in_senate FROM table_name_23 WHERE years_in_assembly = "2010–present" AND name = "toni atkins" |
Which Party has Years in Senate of —, and Years in Assembly of 2012–present? | CREATE TABLE table_name_12 (party VARCHAR, years_in_senate VARCHAR, years_in_assembly VARCHAR) | SELECT party FROM table_name_12 WHERE years_in_senate = "—" AND years_in_assembly = "2012–present" | ### Context: CREATE TABLE table_name_12 (party VARCHAR, years_in_senate VARCHAR, years_in_assembly VARCHAR) ### Question: Which Party has Years in Senate of —, and Years in Assembly of 2012–present? ### Answer: SELECT party FROM table_name_12 WHERE years_in_senate = "—" AND years_in_assembly = "2012–present" |
Show the Residence whose Name is rich gordon? | CREATE TABLE table_name_60 (residence VARCHAR, name VARCHAR) | SELECT residence FROM table_name_60 WHERE name = "rich gordon" | ### Context: CREATE TABLE table_name_60 (residence VARCHAR, name VARCHAR) ### Question: Show the Residence whose Name is rich gordon? ### Answer: SELECT residence FROM table_name_60 WHERE name = "rich gordon" |
Which Years in Assembly has a Name of toni atkins? | CREATE TABLE table_name_27 (years_in_assembly VARCHAR, name VARCHAR) | SELECT years_in_assembly FROM table_name_27 WHERE name = "toni atkins" | ### Context: CREATE TABLE table_name_27 (years_in_assembly VARCHAR, name VARCHAR) ### Question: Which Years in Assembly has a Name of toni atkins? ### Answer: SELECT years_in_assembly FROM table_name_27 WHERE name = "toni atkins" |
Which Party has Years in Assembly of 2008–present, and a Name of tom ammiano? | CREATE TABLE table_name_77 (party VARCHAR, years_in_assembly VARCHAR, name VARCHAR) | SELECT party FROM table_name_77 WHERE years_in_assembly = "2008–present" AND name = "tom ammiano" | ### Context: CREATE TABLE table_name_77 (party VARCHAR, years_in_assembly VARCHAR, name VARCHAR) ### Question: Which Party has Years in Assembly of 2008–present, and a Name of tom ammiano? ### Answer: SELECT party FROM table_name_77 WHERE years_in_assembly = "2008–present" AND name = "tom ammiano" |
In what year(s) did Raymond Floyd have a total of less than 291 and a To par of +10? | CREATE TABLE table_name_34 (year_s__won VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR) | SELECT year_s__won FROM table_name_34 WHERE total < 291 AND to_par = "+10" AND player = "raymond floyd" | ### Context: CREATE TABLE table_name_34 (year_s__won VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR) ### Question: In what year(s) did Raymond Floyd have a total of less than 291 and a To par of +10? ### Answer: SELECT year_s__won FROM table_name_34 WHERE total < 291 AND to_par = "+10" AND player = "raymond floyd" |
What was Jeff Sluman's To par when his total was smaller than 284? | CREATE TABLE table_name_61 (to_par VARCHAR, total VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_61 WHERE total < 284 AND player = "jeff sluman" | ### Context: CREATE TABLE table_name_61 (to_par VARCHAR, total VARCHAR, player VARCHAR) ### Question: What was Jeff Sluman's To par when his total was smaller than 284? ### Answer: SELECT to_par FROM table_name_61 WHERE total < 284 AND player = "jeff sluman" |
What was the finish for Lanny Wadkins of the United States? | CREATE TABLE table_name_83 (finish VARCHAR, country VARCHAR, player VARCHAR) | SELECT finish FROM table_name_83 WHERE country = "united states" AND player = "lanny wadkins" | ### Context: CREATE TABLE table_name_83 (finish VARCHAR, country VARCHAR, player VARCHAR) ### Question: What was the finish for Lanny Wadkins of the United States? ### Answer: SELECT finish FROM table_name_83 WHERE country = "united states" AND player = "lanny wadkins" |
Which player had a To par of +11? | CREATE TABLE table_name_55 (player VARCHAR, to_par VARCHAR) | SELECT player FROM table_name_55 WHERE to_par = "+11" | ### Context: CREATE TABLE table_name_55 (player VARCHAR, to_par VARCHAR) ### Question: Which player had a To par of +11? ### Answer: SELECT player FROM table_name_55 WHERE to_par = "+11" |
From which country was the player whose year(s) won was 1983? | CREATE TABLE table_name_9 (country VARCHAR, year_s__won VARCHAR) | SELECT country FROM table_name_9 WHERE year_s__won = "1983" | ### Context: CREATE TABLE table_name_9 (country VARCHAR, year_s__won VARCHAR) ### Question: From which country was the player whose year(s) won was 1983? ### Answer: SELECT country FROM table_name_9 WHERE year_s__won = "1983" |
What is the total for the player whose finish was t66? | CREATE TABLE table_name_70 (total VARCHAR, finish VARCHAR) | SELECT total FROM table_name_70 WHERE finish = "t66" | ### Context: CREATE TABLE table_name_70 (total VARCHAR, finish VARCHAR) ### Question: What is the total for the player whose finish was t66? ### Answer: SELECT total FROM table_name_70 WHERE finish = "t66" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.