combined_text stringlengths 106 1.05k |
|---|
###question:Who was the home team when swansea city was the away team?###answer:SELECT home_team FROM table_name_47 WHERE away_team = "swansea city"###context:CREATE TABLE table_name_47 (home_team VARCHAR, away_team VARCHAR) |
###question:Who is the 92.5 with the press of 282.5?###answer:SELECT 925 FROM table_name_26 WHERE press = "282.5"###context:CREATE TABLE table_name_26 (press VARCHAR) |
###question:Who is the 92.5 with the press 282.5?###answer:SELECT 925 FROM table_name_44 WHERE press = "282.5"###context:CREATE TABLE table_name_44 (press VARCHAR) |
###question:Which 92.5 holds the world record?###answer:SELECT world_record FROM table_name_40 WHERE press = "925"###context:CREATE TABLE table_name_40 (world_record VARCHAR, press VARCHAR) |
###question:what is the season when the lead is john shuster and third is shawn rojeski?###answer:SELECT season FROM table_name_54 WHERE lead = "john shuster" AND third = "shawn rojeski"###context:CREATE TABLE table_name_54 (season VARCHAR, lead VARCHAR, third VARCHAR) |
###question:what is the season when the third is shawn rojeski?###answer:SELECT season FROM table_name_96 WHERE third = "shawn rojeski"###context:CREATE TABLE table_name_96 (season VARCHAR, third VARCHAR) |
###question:WHAT IS THE RELIGION WITH A SCHEDULED TRIBE OF 0.90%?###answer:SELECT religion FROM table_name_43 WHERE scheduled_tribe = "0.90%"###context:CREATE TABLE table_name_43 (religion VARCHAR, scheduled_tribe VARCHAR) |
###question:WHAT IS THE FORWARD CASTE WITH A SCHEDULED TRIBE OF 0.90%?###answer:SELECT forward_caste FROM table_name_87 WHERE scheduled_tribe = "0.90%"###context:CREATE TABLE table_name_87 (forward_caste VARCHAR, scheduled_tribe VARCHAR) |
###question:WHAT IS THE FORWARD CASTE WITH A SCHEDULED CASTE OF 89.50%?###answer:SELECT forward_caste FROM table_name_80 WHERE scheduled_caste = "89.50%"###context:CREATE TABLE table_name_80 (forward_caste VARCHAR, scheduled_caste VARCHAR) |
###question:WHAT IS THE FORWARD CASTE WITH A SCHEDULED CASTE OF 0.80%?###answer:SELECT forward_caste FROM table_name_49 WHERE scheduled_caste = "0.80%"###context:CREATE TABLE table_name_49 (forward_caste VARCHAR, scheduled_caste VARCHAR) |
###question:What was the score for the game with a record of 11-22 and a H/A/N of A?###answer:SELECT score FROM table_name_60 WHERE h_a_n = "a" AND record = "11-22"###context:CREATE TABLE table_name_60 (score VARCHAR, h_a_n VARCHAR, record VARCHAR) |
###question:What was the H/A/N for the game that ended in a score of 108-102?###answer:SELECT h_a_n FROM table_name_12 WHERE score = "108-102"###context:CREATE TABLE table_name_12 (h_a_n VARCHAR, score VARCHAR) |
###question:What was the score of the game with a H/A/N of H and a record of 12-24?###answer:SELECT score FROM table_name_12 WHERE h_a_n = "h" AND record = "12-24"###context:CREATE TABLE table_name_12 (score VARCHAR, h_a_n VARCHAR, record VARCHAR) |
###question:What was the score of the game played on December 17, with a H/A/N of H?###answer:SELECT score FROM table_name_19 WHERE h_a_n = "h" AND date = "december 17"###context:CREATE TABLE table_name_19 (score VARCHAR, h_a_n VARCHAR, date VARCHAR) |
###question:On what date did the Cavaliers have a record of 9-14?###answer:SELECT date FROM table_name_44 WHERE record = "9-14"###context:CREATE TABLE table_name_44 (date VARCHAR, record VARCHAR) |
###question:Who were the opponents in the game that ended in a score of 116-106?###answer:SELECT opponent FROM table_name_64 WHERE score = "116-106"###context:CREATE TABLE table_name_64 (opponent VARCHAR, score VARCHAR) |
###question:HOW MANY CARS HAD A CAR # SMALLER THAN 7 AND STARTED ON 2010?###answer:SELECT number_of_cars FROM table_name_38 WHERE car__number < 7 AND year_started = 2010###context:CREATE TABLE table_name_38 (number_of_cars VARCHAR, car__number VARCHAR, year_started VARCHAR) |
###question:WHAT WAS THE LOWEST CAR # WITH SON-E-WA, AND 2012 START YEAR?###answer:SELECT MIN(car__number) FROM table_name_11 WHERE current_car = "son-e-wa" AND year_started < 2012###context:CREATE TABLE table_name_11 (car__number INTEGER, current_car VARCHAR, year_started VARCHAR) |
###question:WHAT IS THE HIGHEST # OF CARS WITH A START YEAR LESS THAN 2012, TBA CURRENT CAR, AND MORE THAN 1 CAR?###answer:SELECT MAX(number_of_cars) FROM table_name_95 WHERE year_started < 2012 AND current_car = "tba" AND car__number > 1###context:CREATE TABLE table_name_95 (number_of_cars INTEGER, car__number VARCHAR... |
###question:Which monarch assumed office on December 15, 1876?###answer:SELECT monarch FROM table_name_6 WHERE assumed_office = "december 15, 1876"###context:CREATE TABLE table_name_6 (monarch VARCHAR, assumed_office VARCHAR) |
###question:On what date did ke ʻ eaumoku pāpa ʻ iahiahi leave office?###answer:SELECT left_office FROM table_name_25 WHERE name = "ke ʻ eaumoku pāpa ʻ iahiahi"###context:CREATE TABLE table_name_25 (left_office VARCHAR, name VARCHAR) |
###question:How many years in office were served by the person who assumed the office on October 4, 1886?###answer:SELECT years_in_office FROM table_name_23 WHERE assumed_office = "october 4, 1886"###context:CREATE TABLE table_name_23 (years_in_office VARCHAR, assumed_office VARCHAR) |
###question:On what date did the person who died on March 23, 1824 leave office?###answer:SELECT left_office FROM table_name_15 WHERE death = "march 23, 1824"###context:CREATE TABLE table_name_15 (left_office VARCHAR, death VARCHAR) |
###question:On what date did the person leave office who died on October 23, 1887 and who served 2 years?###answer:SELECT left_office FROM table_name_58 WHERE years_in_office = "2" AND death = "october 23, 1887"###context:CREATE TABLE table_name_58 (left_office VARCHAR, years_in_office VARCHAR, death VARCHAR) |
###question:Who is the monarch that left office circa 1886?###answer:SELECT monarch FROM table_name_7 WHERE left_office = "circa 1886"###context:CREATE TABLE table_name_7 (monarch VARCHAR, left_office VARCHAR) |
###question:What is the report for Challenge Stadium?###answer:SELECT report FROM table_name_29 WHERE venue = "challenge stadium"###context:CREATE TABLE table_name_29 (report VARCHAR, venue VARCHAR) |
###question:What did the Melbourne Tigers score when they were the away team?###answer:SELECT score FROM table_name_73 WHERE away_team = "melbourne tigers"###context:CREATE TABLE table_name_73 (score VARCHAR, away_team VARCHAR) |
###question:How many were in the crowd when the score was 97-80?###answer:SELECT COUNT(crowd) FROM table_name_48 WHERE score = "97-80"###context:CREATE TABLE table_name_48 (crowd VARCHAR, score VARCHAR) |
###question:How big was the crowd when the South Dragons were the away team at the Gold Coast Convention Centre?###answer:SELECT crowd FROM table_name_94 WHERE away_team = "south dragons" AND venue = "gold coast convention centre"###context:CREATE TABLE table_name_94 (crowd VARCHAR, away_team VARCHAR, venue VARCHAR) |
###question:What is the position of pick 32?###answer:SELECT position FROM table_name_81 WHERE pick = 32###context:CREATE TABLE table_name_81 (position VARCHAR, pick VARCHAR) |
###question:Who was the player in round 1?###answer:SELECT player FROM table_name_55 WHERE round = 1###context:CREATE TABLE table_name_55 (player VARCHAR, round VARCHAR) |
###question:Who are the opponents with a record of 3-0?###answer:SELECT opponents FROM table_name_73 WHERE record = "3-0"###context:CREATE TABLE table_name_73 (opponents VARCHAR, record VARCHAR) |
###question:Who is the opponent with 16 points?###answer:SELECT opponent FROM table_name_5 WHERE opponents = 16###context:CREATE TABLE table_name_5 (opponent VARCHAR, opponents VARCHAR) |
###question:What were the high assists when the score was l 86–94 (ot)?###answer:SELECT high_assists FROM table_name_62 WHERE score = "l 86–94 (ot)"###context:CREATE TABLE table_name_62 (high_assists VARCHAR, score VARCHAR) |
###question:What were the high rebounds when the score was l 101–109 (ot)?###answer:SELECT high_rebounds FROM table_name_19 WHERE score = "l 101–109 (ot)"###context:CREATE TABLE table_name_19 (high_rebounds VARCHAR, score VARCHAR) |
###question:What is the Venue that has a Rank of 2?###answer:SELECT venue FROM table_name_66 WHERE rank = "2"###context:CREATE TABLE table_name_66 (venue VARCHAR, rank VARCHAR) |
###question:What is the Rank that has a Season of 1995/96?###answer:SELECT rank FROM table_name_77 WHERE season = "1995/96"###context:CREATE TABLE table_name_77 (rank VARCHAR, season VARCHAR) |
###question:What is the Opponent that has a Rank of 4?###answer:SELECT opponent FROM table_name_94 WHERE rank = "4"###context:CREATE TABLE table_name_94 (opponent VARCHAR, rank VARCHAR) |
###question:What is the Rank that has a Venue of bellerive oval , hobart, and a Margin of 115 runs?###answer:SELECT rank FROM table_name_31 WHERE venue = "bellerive oval , hobart" AND margin = "115 runs"###context:CREATE TABLE table_name_31 (rank VARCHAR, venue VARCHAR, margin VARCHAR) |
###question:What is the Season that has a Venue of bellerive oval , hobart, and a Rank of 4?###answer:SELECT season FROM table_name_97 WHERE venue = "bellerive oval , hobart" AND rank = "4"###context:CREATE TABLE table_name_97 (season VARCHAR, venue VARCHAR, rank VARCHAR) |
###question:What is the Margin that has a Venue of bellerive oval , hobart, and a Season of 2002/03?###answer:SELECT margin FROM table_name_4 WHERE venue = "bellerive oval , hobart" AND season = "2002/03"###context:CREATE TABLE table_name_4 (margin VARCHAR, venue VARCHAR, season VARCHAR) |
###question:What is the To par of the Player from New Zealand who had a Score of 75-70=145?###answer:SELECT to_par FROM table_name_51 WHERE score = 75 - 70 = 145 AND country = "new zealand"###context:CREATE TABLE table_name_51 (to_par VARCHAR, country VARCHAR, score VARCHAR) |
###question:What is the To par of the T3 Player?###answer:SELECT to_par FROM table_name_63 WHERE place = "t3"###context:CREATE TABLE table_name_63 (to_par VARCHAR, place VARCHAR) |
###question:What is the sum of Rank, when Assists is "82"?###answer:SELECT SUM(rank) FROM table_name_21 WHERE assists = 82###context:CREATE TABLE table_name_21 (rank INTEGER, assists VARCHAR) |
###question:What is the total number of Assists, when Name is "Pablo Prigioni", and when Games is greater than 21?###answer:SELECT COUNT(assists) FROM table_name_94 WHERE name = "pablo prigioni" AND games > 21###context:CREATE TABLE table_name_94 (assists VARCHAR, name VARCHAR, games VARCHAR) |
###question:What is the average Assists, when Games is greater than 19, and when Name is "Pablo Prigioni"?###answer:SELECT AVG(assists) FROM table_name_64 WHERE games > 19 AND name = "pablo prigioni"###context:CREATE TABLE table_name_64 (assists INTEGER, games VARCHAR, name VARCHAR) |
###question:What country is Tom Kite from?###answer:SELECT country FROM table_name_56 WHERE player = "tom kite"###context:CREATE TABLE table_name_56 (country VARCHAR, player VARCHAR) |
###question:What is the most money United States player Bob Gilder won?###answer:SELECT MAX(money___) AS $__ FROM table_name_93 WHERE country = "united states" AND player = "bob gilder"###context:CREATE TABLE table_name_93 (money___ INTEGER, country VARCHAR, player VARCHAR) |
###question:What was the statue in st. paul, minnesota constructed before 1966 made out of?###answer:SELECT material FROM table_name_36 WHERE completed < 1966 AND location = "st. paul, minnesota"###context:CREATE TABLE table_name_36 (material VARCHAR, completed VARCHAR, location VARCHAR) |
###question:When was the most recent statue that was made out of solid granite completed?###answer:SELECT MAX(completed) FROM table_name_89 WHERE material = "solid granite"###context:CREATE TABLE table_name_89 (completed INTEGER, material VARCHAR) |
###question:What Game had a Result of 105-95?###answer:SELECT game FROM table_name_86 WHERE result = "105-95"###context:CREATE TABLE table_name_86 (game VARCHAR, result VARCHAR) |
###question:What is the Home Team of the game against Seattle on June 1?###answer:SELECT home_team FROM table_name_7 WHERE road_team = "seattle" AND date = "june 1"###context:CREATE TABLE table_name_7 (home_team VARCHAR, road_team VARCHAR, date VARCHAR) |
###question:What is the Home Team in Game 2?###answer:SELECT home_team FROM table_name_80 WHERE game = "game 2"###context:CREATE TABLE table_name_80 (home_team VARCHAR, game VARCHAR) |
###question:What is the Road Team in the game with a Result of 105-95?###answer:SELECT road_team FROM table_name_39 WHERE result = "105-95"###context:CREATE TABLE table_name_39 (road_team VARCHAR, result VARCHAR) |
###question:What is the Game on May 24 with Road Team Seattle?###answer:SELECT game FROM table_name_76 WHERE road_team = "seattle" AND date = "may 24"###context:CREATE TABLE table_name_76 (game VARCHAR, road_team VARCHAR, date VARCHAR) |
###question:On what Date was the Result 82-92?###answer:SELECT date FROM table_name_52 WHERE result = "82-92"###context:CREATE TABLE table_name_52 (date VARCHAR, result VARCHAR) |
###question:What is the 2006 population of the area with vehicle registration code of G and population density of 1,432.0?###answer:SELECT population__2006_ FROM table_name_7 WHERE vehicle_registration_code = "g" AND population_density = "1,432.0"###context:CREATE TABLE table_name_7 (population__2006_ VARCHAR, vehicle_... |
###question:What is the area of Waterford?###answer:SELECT area__km²_ FROM table_name_25 WHERE principal_town_city = "waterford"###context:CREATE TABLE table_name_25 (area__km²_ VARCHAR, principal_town_city VARCHAR) |
###question:What is the NUT 3 region with area of 41.58?###answer:SELECT nuts_3_region FROM table_name_38 WHERE area__km²_ = "41.58"###context:CREATE TABLE table_name_38 (nuts_3_region VARCHAR, area__km²_ VARCHAR) |
###question:What is Opponent, when Event is RITC 22 - Rage In The Cage 22?###answer:SELECT opponent FROM table_name_17 WHERE event = "ritc 22 - rage in the cage 22"###context:CREATE TABLE table_name_17 (opponent VARCHAR, event VARCHAR) |
###question:What is Record, when Method is KO, and when Opponent is Rich Guerin?###answer:SELECT record FROM table_name_99 WHERE method = "ko" AND opponent = "rich guerin"###context:CREATE TABLE table_name_99 (record VARCHAR, method VARCHAR, opponent VARCHAR) |
###question:What is Round, when Event is RITC 89 - Triple Main Event 89?###answer:SELECT round FROM table_name_59 WHERE event = "ritc 89 - triple main event 89"###context:CREATE TABLE table_name_59 (round VARCHAR, event VARCHAR) |
###question:What kind of Social Sec Leeds has a Media Officer of jason james and a Treasurer of james davidson?###answer:SELECT social_sec_leeds FROM table_name_62 WHERE media_officer = "jason james" AND treasurer = "james davidson"###context:CREATE TABLE table_name_62 (social_sec_leeds VARCHAR, media_officer VARCHAR, ... |
###question:Name the Social Sec Leeds has a President of tom dawson?###answer:SELECT social_sec_leeds FROM table_name_13 WHERE president = "tom dawson"###context:CREATE TABLE table_name_13 (social_sec_leeds VARCHAR, president VARCHAR) |
###question:Name the President has a Media Officer of pete marshall/ nazar striletski?###answer:SELECT president FROM table_name_25 WHERE media_officer = "pete marshall/ nazar striletski"###context:CREATE TABLE table_name_25 (president VARCHAR, media_officer VARCHAR) |
###question:Name the Social Sec Leeds has Fixtures Sec of n/a, and a General Sec of n/a, and the Season of 2005–2006?###answer:SELECT social_sec_leeds FROM table_name_23 WHERE fixtures_sec = "n/a" AND general_sec = "n/a" AND season = "2005–2006"###context:CREATE TABLE table_name_23 (social_sec_leeds VARCHAR, season VAR... |
###question:Name the President who has a Treasurer of james davidson, and a Season of 2006–2007?###answer:SELECT president FROM table_name_26 WHERE treasurer = "james davidson" AND season = "2006–2007"###context:CREATE TABLE table_name_26 (president VARCHAR, treasurer VARCHAR, season VARCHAR) |
###question:Name the Fixtures Sec which has a Season of 2009–2010###answer:SELECT fixtures_sec FROM table_name_12 WHERE season = "2009–2010"###context:CREATE TABLE table_name_12 (fixtures_sec VARCHAR, season VARCHAR) |
###question:What is the Format of the Epic/Sony Label after 1980?###answer:SELECT format FROM table_name_33 WHERE label = "epic/sony" AND date > 1980###context:CREATE TABLE table_name_33 (format VARCHAR, label VARCHAR, date VARCHAR) |
###question:What is the Format of the Label with Catalog SBP 234999?###answer:SELECT format FROM table_name_23 WHERE catalog = "sbp 234999"###context:CREATE TABLE table_name_23 (format VARCHAR, catalog VARCHAR) |
###question:Which poll source has a lead of 17?###answer:SELECT poll_source FROM table_name_87 WHERE lead_margin = 17###context:CREATE TABLE table_name_87 (poll_source VARCHAR, lead_margin VARCHAR) |
###question:What years did Elden Campbell category:articles with hcards and jersesy number of 41 play?###answer:SELECT years FROM table_name_31 WHERE jersey_number_s_ = 41 AND player = "elden campbell category:articles with hcards"###context:CREATE TABLE table_name_31 (years VARCHAR, jersey_number_s_ VARCHAR, player VA... |
###question:What is the listed date of the Warren pony truss bridge that was built in 1925?###answer:SELECT listed FROM table_name_1 WHERE built = "1925" AND type = "warren pony truss"###context:CREATE TABLE table_name_1 (listed VARCHAR, built VARCHAR, type VARCHAR) |
###question:When was Moores Creek Bridge built?###answer:SELECT built FROM table_name_20 WHERE name = "moores creek bridge"###context:CREATE TABLE table_name_20 (built VARCHAR, name VARCHAR) |
###question:When was Blackburn Point Bridge built?###answer:SELECT built FROM table_name_55 WHERE name = "blackburn point bridge"###context:CREATE TABLE table_name_55 (built VARCHAR, name VARCHAR) |
###question:What county is the St. Augustine bridge in?###answer:SELECT county FROM table_name_98 WHERE location = "st. augustine"###context:CREATE TABLE table_name_98 (county VARCHAR, location VARCHAR) |
###question:Which Date has Notes of notes?###answer:SELECT date FROM table_name_21 WHERE "notes" = "notes"###context:CREATE TABLE table_name_21 (date VARCHAR) |
###question:Which Date has a Location of davos, and a Time of 45.7?###answer:SELECT date FROM table_name_86 WHERE location = "davos" AND time = "45.7"###context:CREATE TABLE table_name_86 (date VARCHAR, location VARCHAR, time VARCHAR) |
###question:Which Location has a Date of 1931-02-02?###answer:SELECT location FROM table_name_44 WHERE date = "1931-02-02"###context:CREATE TABLE table_name_44 (location VARCHAR, date VARCHAR) |
###question:Which Time has Notes of men's speed skating?###answer:SELECT time FROM table_name_93 WHERE notes = "men's speed skating"###context:CREATE TABLE table_name_93 (time VARCHAR, notes VARCHAR) |
###question:Which Location has Notes of eisstadion, and a Date of 1930-01-11?###answer:SELECT location FROM table_name_5 WHERE notes = "eisstadion" AND date = "1930-01-11"###context:CREATE TABLE table_name_5 (location VARCHAR, notes VARCHAR, date VARCHAR) |
###question:Which Distance has a Date of 1930-01-11?###answer:SELECT distance FROM table_name_69 WHERE date = "1930-01-11"###context:CREATE TABLE table_name_69 (distance VARCHAR, date VARCHAR) |
###question:What is the weight when the race was the VRC Melbourne Cup?###answer:SELECT COUNT(weight) FROM table_name_76 WHERE race = "vrc melbourne cup"###context:CREATE TABLE table_name_76 (weight VARCHAR, race VARCHAR) |
###question:What weight has a distance of 8F, and RRC Hill Stakes (wfa) as the race?###answer:SELECT weight FROM table_name_7 WHERE distance = "8f" AND race = "rrc hill stakes (wfa)"###context:CREATE TABLE table_name_7 (weight VARCHAR, distance VARCHAR, race VARCHAR) |
###question:What is the distance when the weight is 9.2?###answer:SELECT distance FROM table_name_16 WHERE weight = 9.2###context:CREATE TABLE table_name_16 (distance VARCHAR, weight VARCHAR) |
###question:what is the pick for adam gettis?###answer:SELECT MIN(pick) FROM table_name_12 WHERE name = "adam gettis"###context:CREATE TABLE table_name_12 (pick INTEGER, name VARCHAR) |
###question:what is the pick for alfred morris when the overall is less than 217, and the round is smaller than 6?###answer:SELECT MAX(pick) FROM table_name_49 WHERE overall < 217 AND name = "alfred morris" AND round < 6###context:CREATE TABLE table_name_49 (pick INTEGER, round VARCHAR, overall VARCHAR, name VARCHAR) |
###question:what is the college for keenan robinson when overall is more than 102?###answer:SELECT college FROM table_name_55 WHERE overall > 102 AND name = "keenan robinson"###context:CREATE TABLE table_name_55 (college VARCHAR, overall VARCHAR, name VARCHAR) |
###question:what is the pick for robert griffin iii?###answer:SELECT pick FROM table_name_97 WHERE name = "robert griffin iii"###context:CREATE TABLE table_name_97 (pick VARCHAR, name VARCHAR) |
###question:How many appearances did the flamengo player who was with flamengo during the years 1989–1993 1996–1998 2004–2005 have?###answer:SELECT MAX(appearances) FROM table_name_21 WHERE flamengo_career = "1989–1993 1996–1998 2004–2005"###context:CREATE TABLE table_name_21 (appearances INTEGER, flamengo_career VARCH... |
###question:What was the attendance on week 1?###answer:SELECT attendance FROM table_name_96 WHERE week = 1###context:CREATE TABLE table_name_96 (attendance VARCHAR, week VARCHAR) |
###question:Who was the opponent before week 3 and a result of w 28-6?###answer:SELECT opponent FROM table_name_57 WHERE week < 3 AND result = "w 28-6"###context:CREATE TABLE table_name_57 (opponent VARCHAR, week VARCHAR, result VARCHAR) |
###question:What is the sum of core# with a part number of osa242cep5au and TDP greater than 82.1?###answer:SELECT SUM(core__number) FROM table_name_80 WHERE part_number_opn_ = "osa242cep5au" AND tdp__w_ > 82.1###context:CREATE TABLE table_name_80 (core__number INTEGER, part_number_opn_ VARCHAR, tdp__w_ VARCHAR) |
###question:What is the sum of core# with a TDP less than 85.3?###answer:SELECT SUM(core__number) FROM table_name_62 WHERE tdp__w_ < 85.3###context:CREATE TABLE table_name_62 (core__number INTEGER, tdp__w_ INTEGER) |
###question:Which Winning score has a Date of aug 26, 1973?###answer:SELECT winning_score FROM table_name_42 WHERE date = "aug 26, 1973"###context:CREATE TABLE table_name_42 (winning_score VARCHAR, date VARCHAR) |
###question:Which Runner(s)-up has a Date of may 19, 1973?###answer:SELECT runner_s__up FROM table_name_21 WHERE date = "may 19, 1973"###context:CREATE TABLE table_name_21 (runner_s__up VARCHAR, date VARCHAR) |
###question:Which Margin of victory has a Runner(s)-up of betty burfeindt, and a Tournament of pompano beach classic?###answer:SELECT margin_of_victory FROM table_name_4 WHERE runner_s__up = "betty burfeindt" AND tournament = "pompano beach classic"###context:CREATE TABLE table_name_4 (margin_of_victory VARCHAR, runner... |
###question:Which Runner(s)-up has a Tournament of cameron park open?###answer:SELECT runner_s__up FROM table_name_62 WHERE tournament = "cameron park open"###context:CREATE TABLE table_name_62 (runner_s__up VARCHAR, tournament VARCHAR) |
###question:Which Runner(s)-up has a Winning score of –8 (68-68-72-72=280)?###answer:SELECT runner_s__up FROM table_name_26 WHERE winning_score = –8(68 - 68 - 72 - 72 = 280)###context:CREATE TABLE table_name_26 (runner_s__up VARCHAR, winning_score VARCHAR) |
###question:Which Date has a Tournament of national jewish hospital open, and a Runner(s)-up of pat bradley?###answer:SELECT date FROM table_name_95 WHERE tournament = "national jewish hospital open" AND runner_s__up = "pat bradley"###context:CREATE TABLE table_name_95 (date VARCHAR, tournament VARCHAR, runner_s__up VA... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.