question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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.