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