text stringlengths 114 1.06k |
|---|
### question: Which earth has west metal? ### answer: SELECT earth FROM table_name_10 WHERE metal = "west" ### context: CREATE TABLE table_name_10 (earth VARCHAR, metal VARCHAR) |
### question: Which wood has stabilizing earth? ### answer: SELECT wood FROM table_name_50 WHERE earth = "stabilizing" ### context: CREATE TABLE table_name_50 (wood VARCHAR, earth VARCHAR) |
### question: Which fire has dry metal? ### answer: SELECT fire FROM table_name_24 WHERE metal = "dry" ### context: CREATE TABLE table_name_24 (fire VARCHAR, metal VARCHAR) |
### question: what name has a Rank of lieutenant colonel, and a Begin Date of 1904-02-22 22 february 1904? ### answer: SELECT name FROM table_name_87 WHERE rank = "lieutenant colonel" AND begin_date = "1904-02-22 22 february 1904" ### context: CREATE TABLE table_name_87 (name VARCHAR, rank VARCHAR, begin_date VARCHAR) |
### question: Oklahoma State produced a player in which position in the draft? ### answer: SELECT position FROM table_name_26 WHERE school_club_team = "oklahoma state" ### context: CREATE TABLE table_name_26 (position VARCHAR, school_club_team VARCHAR) |
### question: What is the highest round where a back named Ed Cody can be found? ### answer: SELECT MAX(round) FROM table_name_53 WHERE position = "back" AND player = "ed cody" ### context: CREATE TABLE table_name_53 (round INTEGER, position VARCHAR, player VARCHAR) |
### question: Which Losses is the lowest one that has a Season smaller than 1920, and Draws larger than 0? ### answer: SELECT MIN(losses) FROM table_name_75 WHERE season < 1920 AND draws > 0 ### context: CREATE TABLE table_name_75 (losses INTEGER, season VARCHAR, draws VARCHAR) |
### question: Which Draws have Losses larger than 16, and a Season larger than 1966? ### answer: SELECT SUM(draws) FROM table_name_53 WHERE losses > 16 AND season > 1966 ### context: CREATE TABLE table_name_53 (draws INTEGER, losses VARCHAR, season VARCHAR) |
### question: Which Draws have a Team of annandale, and Losses smaller than 13? ### answer: SELECT SUM(draws) FROM table_name_58 WHERE team = "annandale" AND losses < 13 ### context: CREATE TABLE table_name_58 (draws INTEGER, team VARCHAR, losses VARCHAR) |
### question: Which Draws have Losses smaller than 16, and a Team of university, and Wins larger than 0? ### answer: SELECT AVG(draws) FROM table_name_38 WHERE losses < 16 AND team = "university" AND wins > 0 ### context: CREATE TABLE table_name_38 (draws INTEGER, wins VARCHAR, losses VARCHAR, team VARCHAR) |
### question: Which Wins is the lowest one that has a Season smaller than 1920, and Losses smaller than 14? ### answer: SELECT MIN(wins) FROM table_name_99 WHERE season < 1920 AND losses < 14 ### context: CREATE TABLE table_name_99 (wins INTEGER, season VARCHAR, losses VARCHAR) |
### question: Which date had a sport of Academics? ### answer: SELECT date FROM table_name_70 WHERE sport = "academics" ### context: CREATE TABLE table_name_70 (date VARCHAR, sport VARCHAR) |
### question: Which date had a site of N/A? ### answer: SELECT date FROM table_name_9 WHERE site = "n/a" ### context: CREATE TABLE table_name_9 (date VARCHAR, site VARCHAR) |
### question: what was the builder in 1929 ### answer: SELECT builder FROM table_name_22 WHERE year_built = "1929" ### context: CREATE TABLE table_name_22 (builder VARCHAR, year_built VARCHAR) |
### question: What was the attendance for the March 6 game, where one of the teams had 53 points. ### answer: SELECT attendance FROM table_name_55 WHERE points = 53 AND date = "march 6" ### context: CREATE TABLE table_name_55 (attendance VARCHAR, points VARCHAR, date VARCHAR) |
### question: For the game with 6,126 in attendance, how many points did both teams have in the standings? ### answer: SELECT COUNT(points) FROM table_name_16 WHERE attendance = 6 OFFSET 126 ### context: CREATE TABLE table_name_16 (points VARCHAR, attendance VARCHAR) |
### question: What is the record of the team with a St. Louis home? ### answer: SELECT record FROM table_name_18 WHERE home = "st. louis" ### context: CREATE TABLE table_name_18 (record VARCHAR, home VARCHAR) |
### question: What country has a territory of French Guiana? ### answer: SELECT country FROM table_name_28 WHERE territory = "french guiana" ### context: CREATE TABLE table_name_28 (country VARCHAR, territory VARCHAR) |
### question: Which 2008-12 has a 2013 of A, and a Tournament of wimbledon? ### answer: SELECT 2008 AS _12 FROM table_name_77 WHERE 2013 = "a" AND tournament = "wimbledon" ### context: CREATE TABLE table_name_77 (tournament VARCHAR) |
### question: Which 2013 has a 2007 of A, and a Tournament of french open? ### answer: SELECT 2013 FROM table_name_49 WHERE 2007 = "a" AND tournament = "french open" ### context: CREATE TABLE table_name_49 (tournament VARCHAR) |
### question: Which 2013 has a 2006 of grand slam tournaments? ### answer: SELECT 2013 FROM table_name_64 WHERE 2006 = "grand slam tournaments" ### context: CREATE TABLE table_name_64 (Id VARCHAR) |
### question: Which 2006 has a 2007 of A? ### answer: SELECT 2006 FROM table_name_98 WHERE 2007 = "a" ### context: CREATE TABLE table_name_98 (Id VARCHAR) |
### question: Which 2008-12 has a 2007 of A, and a Tournament of us open? ### answer: SELECT 2008 AS _12 FROM table_name_80 WHERE 2007 = "a" AND tournament = "us open" ### context: CREATE TABLE table_name_80 (tournament VARCHAR) |
### question: What was the record on April 1? ### answer: SELECT record FROM table_name_57 WHERE date = "april 1" ### context: CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR) |
### question: What's the score on April 9? ### answer: SELECT score FROM table_name_62 WHERE date = "april 9" ### context: CREATE TABLE table_name_62 (score VARCHAR, date VARCHAR) |
### question: Where was home on April 3? ### answer: SELECT home FROM table_name_71 WHERE date = "april 3" ### context: CREATE TABLE table_name_71 (home VARCHAR, date VARCHAR) |
### question: What's the score on April 9? ### answer: SELECT score FROM table_name_12 WHERE date = "april 9" ### context: CREATE TABLE table_name_12 (score VARCHAR, date VARCHAR) |
### question: What is the average number of points of the team with more than 18 played? ### answer: SELECT AVG(points) FROM table_name_72 WHERE played > 18 ### context: CREATE TABLE table_name_72 (points INTEGER, played INTEGER) |
### question: What is the lowest score of the team with 19 points and less than 18 played? ### answer: SELECT MIN(scored) FROM table_name_82 WHERE points = 19 AND played < 18 ### context: CREATE TABLE table_name_82 (scored INTEGER, points VARCHAR, played VARCHAR) |
### question: What is the average number of draws of the team with less than 17 points and less than 4 wins? ### answer: SELECT AVG(draws) FROM table_name_31 WHERE points < 17 AND wins < 4 ### context: CREATE TABLE table_name_31 (draws INTEGER, points VARCHAR, wins VARCHAR) |
### question: What is the title of the record with an artist of Tangorodrim, category number FSR006? ### answer: SELECT title FROM table_name_46 WHERE artist = "tangorodrim" AND cat__number = "fsr006" ### context: CREATE TABLE table_name_46 (title VARCHAR, artist VARCHAR, cat__number VARCHAR) |
### question: What was the format of the release by Triumfall? ### answer: SELECT format FROM table_name_31 WHERE artist = "triumfall" ### context: CREATE TABLE table_name_31 (format VARCHAR, artist VARCHAR) |
### question: What is the category number that was released in November 2007? ### answer: SELECT cat__number FROM table_name_85 WHERE release_date = "november 2007" ### context: CREATE TABLE table_name_85 (cat__number VARCHAR, release_date VARCHAR) |
### question: Which is the lowest round to have a pick of 12 and position of linebacker? ### answer: SELECT MIN(round) FROM table_name_86 WHERE pick__number = 12 AND position = "linebacker" ### context: CREATE TABLE table_name_86 (round INTEGER, pick__number VARCHAR, position VARCHAR) |
### question: Which player was picked in round 15 with a pick smaller than 13? ### answer: SELECT name FROM table_name_76 WHERE pick__number < 13 AND round = 15 ### context: CREATE TABLE table_name_76 (name VARCHAR, pick__number VARCHAR, round VARCHAR) |
### question: How many picks were from Lamar College? ### answer: SELECT COUNT(pick__number) FROM table_name_34 WHERE college = "lamar" ### context: CREATE TABLE table_name_34 (pick__number VARCHAR, college VARCHAR) |
### question: How many overall values have a college of Notre Dame and rounds over 2? ### answer: SELECT COUNT(overall) FROM table_name_97 WHERE college = "notre dame" AND round > 2 ### context: CREATE TABLE table_name_97 (overall VARCHAR, college VARCHAR, round VARCHAR) |
### question: What player was at Albion? ### answer: SELECT player FROM table_name_90 WHERE venue = "albion" ### context: CREATE TABLE table_name_90 (player VARCHAR, venue VARCHAR) |
### question: Where was the venue that had 274 runs? ### answer: SELECT venue FROM table_name_29 WHERE runs = "274" ### context: CREATE TABLE table_name_29 (venue VARCHAR, runs VARCHAR) |
### question: which athlete played against Queensland? ### answer: SELECT player FROM table_name_17 WHERE opponent = "queensland" ### context: CREATE TABLE table_name_17 (player VARCHAR, opponent VARCHAR) |
### question: Where is the venue with more than 245 runs? ### answer: SELECT venue FROM table_name_71 WHERE runs = "245" ### context: CREATE TABLE table_name_71 (venue VARCHAR, runs VARCHAR) |
### question: Where did Jack Badcock play? ### answer: SELECT venue FROM table_name_22 WHERE player = "jack badcock" ### context: CREATE TABLE table_name_22 (venue VARCHAR, player VARCHAR) |
### question: Which Surface has a Date of 16 november 2007? ### answer: SELECT surface FROM table_name_73 WHERE date = "16 november 2007" ### context: CREATE TABLE table_name_73 (surface VARCHAR, date VARCHAR) |
### question: Name the date for 2004 afc asian cup qualifier ### answer: SELECT date FROM table_name_23 WHERE competition = "2004 afc asian cup qualifier" ### context: CREATE TABLE table_name_23 (date VARCHAR, competition VARCHAR) |
### question: Name the venue for 23 january 2009 ### answer: SELECT venue FROM table_name_88 WHERE date = "23 january 2009" ### context: CREATE TABLE table_name_88 (venue VARCHAR, date VARCHAR) |
### question: Name the competition for khartoum ### answer: SELECT competition FROM table_name_54 WHERE venue = "khartoum" ### context: CREATE TABLE table_name_54 (competition VARCHAR, venue VARCHAR) |
### question: What is the fewest ties the team had with fewer than 7 games? ### answer: SELECT MIN(drawn) FROM table_name_25 WHERE games < 7 ### context: CREATE TABLE table_name_25 (drawn INTEGER, games INTEGER) |
### question: What is the population for a county that has a median income of $69,760? ### answer: SELECT population FROM table_name_25 WHERE median_household_income = "$69,760" ### context: CREATE TABLE table_name_25 (population VARCHAR, median_household_income VARCHAR) |
### question: What county has $51,456 income per capita? ### answer: SELECT county FROM table_name_37 WHERE per_capita_income = "$51,456" ### context: CREATE TABLE table_name_37 (county VARCHAR, per_capita_income VARCHAR) |
### question: Who was the opponent when attendance was 60,355? ### answer: SELECT opponent FROM table_name_87 WHERE attendance = "60,355" ### context: CREATE TABLE table_name_87 (opponent VARCHAR, attendance VARCHAR) |
### question: Which Net profit/loss (SEK) has a Basic eps (SEK) of -6.58, and Employees (Average/Year) larger than 31,035? ### answer: SELECT SUM(net_profit_loss__sek_) FROM table_name_87 WHERE basic_eps__sek_ = -6.58 AND employees__average_year_ > 31 OFFSET 035 ### context: CREATE TABLE table_name_87 (net_profit_loss_... |
### question: What is the result when 13 is the week? ### answer: SELECT result FROM table_name_64 WHERE week = 13 ### context: CREATE TABLE table_name_64 (result VARCHAR, week VARCHAR) |
### question: What average week has shea stadium as the game site, and 1979-12-09 as the date? ### answer: SELECT AVG(week) FROM table_name_11 WHERE game_site = "shea stadium" AND date = "1979-12-09" ### context: CREATE TABLE table_name_11 (week INTEGER, game_site VARCHAR, date VARCHAR) |
### question: Name the most rank for the United States with wins less than 1 ### answer: SELECT MAX(rank) FROM table_name_18 WHERE country = "united states" AND wins < 1 ### context: CREATE TABLE table_name_18 (rank INTEGER, country VARCHAR, wins VARCHAR) |
### question: Name the most rank for wins more than 0 and events of 26 ### answer: SELECT MAX(rank) FROM table_name_58 WHERE events = 26 AND wins > 0 ### context: CREATE TABLE table_name_58 (rank INTEGER, events VARCHAR, wins VARCHAR) |
### question: Name the average earnings for rank of 3 and wins less than 3 ### answer: SELECT AVG(earnings___) AS $__ FROM table_name_34 WHERE rank = 3 AND wins < 3 ### context: CREATE TABLE table_name_34 (earnings___ INTEGER, rank VARCHAR, wins VARCHAR) |
### question: What is the average area of the city that has a density less than than 206.2 and an altitude of less than 85? ### answer: SELECT AVG(area__km_2__) FROM table_name_14 WHERE density__inhabitants_km_2__ < 206.2 AND altitude__mslm_ < 85 ### context: CREATE TABLE table_name_14 (area__km_2__ INTEGER, density__i... |
### question: What is the lowest density of alessandria where the area is bigger than 16.02 and altitude is less than 116? ### answer: SELECT MIN(density__inhabitants_km_2__) FROM table_name_39 WHERE area__km_2__ > 16.02 AND altitude__mslm_ < 116 AND city = "alessandria" ### context: CREATE TABLE table_name_39 (density... |
### question: What is the lowest density of serravalle scrivia? ### answer: SELECT MIN(density__inhabitants_km_2__) FROM table_name_87 WHERE city = "serravalle scrivia" ### context: CREATE TABLE table_name_87 (density__inhabitants_km_2__ INTEGER, city VARCHAR) |
### question: What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8? ### answer: SELECT MIN(population) FROM table_name_37 WHERE altitude__mslm_ < 197 AND city = "alessandria" AND density__inhabitants_km_2__ < 461.8 ### context: CREATE TABLE table_name_37 (popul... |
### question: What myspace has linkedin as the site, with an orkit greater than 3? ### answer: SELECT AVG(myspace) FROM table_name_62 WHERE site = "linkedin" AND orkut > 3 ### context: CREATE TABLE table_name_62 (myspace INTEGER, site VARCHAR, orkut VARCHAR) |
### question: How many linkedin have Facebook as the site, with a myspace less than 64? ### answer: SELECT COUNT(linkedin) FROM table_name_79 WHERE site = "facebook" AND myspace < 64 ### context: CREATE TABLE table_name_79 (linkedin VARCHAR, site VARCHAR, myspace VARCHAR) |
### question: What is the highest Ning that has a bebo less than 4, an orkut less than 100, with a plaxo greater than 0? ### answer: SELECT MAX(ning) FROM table_name_40 WHERE bebo < 4 AND orkut < 100 AND plaxo > 0 ### context: CREATE TABLE table_name_40 (ning INTEGER, plaxo VARCHAR, bebo VARCHAR, orkut VARCHAR) |
### question: What is the average plaxo that has a myspace greater than 64, a bebo greater than 3, with 4 as the friendster? ### answer: SELECT AVG(plaxo) FROM table_name_63 WHERE myspace > 64 AND bebo > 3 AND friendster = 4 ### context: CREATE TABLE table_name_63 (plaxo INTEGER, friendster VARCHAR, myspace VARCHAR, be... |
### question: What album has the title I Need A Life with the label of warp records / paper bag records? ### answer: SELECT album FROM table_name_18 WHERE label = "warp records / paper bag records" AND title = "i need a life" ### context: CREATE TABLE table_name_18 (album VARCHAR, label VARCHAR, title VARCHAR) |
### question: What title has a Label of warp records / paper bag records? ### answer: SELECT title FROM table_name_39 WHERE label = "warp records / paper bag records" ### context: CREATE TABLE table_name_39 (title VARCHAR, label VARCHAR) |
### question: What's the lowest Points for the Team of San Martín De Tucumán, and a Played that's smaller than 38? ### answer: SELECT MIN(points) FROM table_name_84 WHERE team = "san martín de tucumán" AND played < 38 ### context: CREATE TABLE table_name_84 (points INTEGER, team VARCHAR, played VARCHAR) |
### question: What nation has a total more than 3, with more than 5 for bronze, and less than 4 for the silver? ### answer: SELECT nation FROM table_name_29 WHERE total > 3 AND bronze > 5 AND silver < 4 ### context: CREATE TABLE table_name_29 (nation VARCHAR, silver VARCHAR, total VARCHAR, bronze VARCHAR) |
### question: What is the largest number for bronze with a rank of 19? ### answer: SELECT MAX(bronze) FROM table_name_61 WHERE rank = "19" ### context: CREATE TABLE table_name_61 (bronze INTEGER, rank VARCHAR) |
### question: what season had a score of 1:0 ### answer: SELECT season FROM table_name_4 WHERE score = "1:0" ### context: CREATE TABLE table_name_4 (season VARCHAR, score VARCHAR) |
### question: indoor year is 1978, what is the record? ### answer: SELECT record FROM table_name_70 WHERE indoor_year = "1978" ### context: CREATE TABLE table_name_70 (record VARCHAR, indoor_year VARCHAR) |
### question: Record of 11-10-3 is what sum of game #? ### answer: SELECT SUM(game__number) FROM table_name_57 WHERE record = "11-10-3" ### context: CREATE TABLE table_name_57 (game__number INTEGER, record VARCHAR) |
### question: Points of 31, and a Score of 1 - 5 is what home? ### answer: SELECT home FROM table_name_51 WHERE points = 31 AND score = "1 - 5" ### context: CREATE TABLE table_name_51 (home VARCHAR, points VARCHAR, score VARCHAR) |
### question: Visitor of calgary has what record? ### answer: SELECT record FROM table_name_30 WHERE visitor = "calgary" ### context: CREATE TABLE table_name_30 (record VARCHAR, visitor VARCHAR) |
### question: Score of 2 - 2 had what points? ### answer: SELECT points FROM table_name_47 WHERE score = "2 - 2" ### context: CREATE TABLE table_name_47 (points VARCHAR, score VARCHAR) |
### question: What was the Attendance when Lincoln City was the Opponents with H/A of A? ### answer: SELECT COUNT(attendance) FROM table_name_20 WHERE opponents = "lincoln city" AND h___a = "a" ### context: CREATE TABLE table_name_20 (attendance VARCHAR, opponents VARCHAR, h___a VARCHAR) |
### question: what Area has the frequency of 100.3 and an On-air ID of yass fm? ### answer: SELECT area_served FROM table_name_94 WHERE frequency = "100.3" AND on_air_id = "yass fm" ### context: CREATE TABLE table_name_94 (area_served VARCHAR, frequency VARCHAR, on_air_id VARCHAR) |
### question: What is the Callsign with an Area of tamworth and frequency of 0 88.9? ### answer: SELECT callsign FROM table_name_8 WHERE area_served = "tamworth" AND frequency = "0 88.9" ### context: CREATE TABLE table_name_8 (callsign VARCHAR, area_served VARCHAR, frequency VARCHAR) |
### question: What is the Purpose of the Area Braidwood? ### answer: SELECT purpose FROM table_name_62 WHERE area_served = "braidwood" ### context: CREATE TABLE table_name_62 (purpose VARCHAR, area_served VARCHAR) |
### question: What Band has a Frequency of 0 99.7 in the Area of Newcastle? ### answer: SELECT band FROM table_name_34 WHERE frequency = "0 99.7" AND area_served = "newcastle" ### context: CREATE TABLE table_name_34 (band VARCHAR, frequency VARCHAR, area_served VARCHAR) |
### question: What is the Frequency of Gosford when the Callsign of 2cfm? ### answer: SELECT frequency FROM table_name_5 WHERE area_served = "gosford" AND callsign = "2cfm" ### context: CREATE TABLE table_name_5 (frequency VARCHAR, area_served VARCHAR, callsign VARCHAR) |
### question: What is the On-air ID with the frequency of 105.9, and purpose of commercial? ### answer: SELECT on_air_id FROM table_name_24 WHERE frequency = "105.9" AND purpose = "commercial" ### context: CREATE TABLE table_name_24 (on_air_id VARCHAR, frequency VARCHAR, purpose VARCHAR) |
### question: What Time/Retired has a Points that's smaller than 11 and has a Laps of 74? ### answer: SELECT time_retired FROM table_name_48 WHERE points < 11 AND laps = 74 ### context: CREATE TABLE table_name_48 (time_retired VARCHAR, points VARCHAR, laps VARCHAR) |
### question: What Time/Retired has a Laps of 86 and the Team of HVM Racing? ### answer: SELECT time_retired FROM table_name_73 WHERE laps = 86 AND team = "hvm racing" ### context: CREATE TABLE table_name_73 (time_retired VARCHAR, laps VARCHAR, team VARCHAR) |
### question: What is the Catalog number in France? ### answer: SELECT catalog FROM table_name_19 WHERE region = "france" ### context: CREATE TABLE table_name_19 (catalog VARCHAR, region VARCHAR) |
### question: What is the Format o Catalog F4 87199? ### answer: SELECT format FROM table_name_99 WHERE catalog = "f4 87199" ### context: CREATE TABLE table_name_99 (format VARCHAR, catalog VARCHAR) |
### question: What is the Region of Catalog 885 973-4? ### answer: SELECT region FROM table_name_74 WHERE catalog = "885 973-4" ### context: CREATE TABLE table_name_74 (region VARCHAR, catalog VARCHAR) |
### question: What is the Catalog number in the Region of France? ### answer: SELECT catalog FROM table_name_42 WHERE region = "france" ### context: CREATE TABLE table_name_42 (catalog VARCHAR, region VARCHAR) |
### question: How many people in total attended the game on 1 november 1997? ### answer: SELECT COUNT(attendance) FROM table_name_37 WHERE date = "1 november 1997" ### context: CREATE TABLE table_name_37 (attendance VARCHAR, date VARCHAR) |
### question: Wins of 3, and a Pos. larger than 3 is what average loses? ### answer: SELECT AVG(loses) FROM table_name_75 WHERE wins = 3 AND pos > 3 ### context: CREATE TABLE table_name_75 (loses INTEGER, wins VARCHAR, pos VARCHAR) |
### question: Matches larger than 5 is the sum of what position? ### answer: SELECT SUM(pos) FROM table_name_67 WHERE matches > 5 ### context: CREATE TABLE table_name_67 (pos INTEGER, matches INTEGER) |
### question: What years did Dwane Morrison had a pct less than 0.389 and losses less than 12? ### answer: SELECT years FROM table_name_11 WHERE pct < 0.389 AND lost < 12 AND name = "dwane morrison" ### context: CREATE TABLE table_name_11 (years VARCHAR, name VARCHAR, pct VARCHAR, lost VARCHAR) |
### question: How many seasons did Charles C. Farrell coach? ### answer: SELECT COUNT(seasons) FROM table_name_56 WHERE name = "charles c. farrell" ### context: CREATE TABLE table_name_56 (seasons VARCHAR, name VARCHAR) |
### question: What's the average pct for George Felton when he had losses greater than 7? ### answer: SELECT AVG(pct) FROM table_name_4 WHERE lost > 7 AND name = "george felton" ### context: CREATE TABLE table_name_4 (pct INTEGER, lost VARCHAR, name VARCHAR) |
### question: Which Margin of victory has a Runner(s)-up of josé maria cañizares? ### answer: SELECT margin_of_victory FROM table_name_38 WHERE runner_s__up = "josé maria cañizares" ### context: CREATE TABLE table_name_38 (margin_of_victory VARCHAR, runner_s__up VARCHAR) |
### question: Which Tournament has a Runner(s)-up of bob charles? ### answer: SELECT tournament FROM table_name_49 WHERE runner_s__up = "bob charles" ### context: CREATE TABLE table_name_49 (tournament VARCHAR, runner_s__up VARCHAR) |
### question: What was the winning score on 7 jun 1976? ### answer: SELECT winning_score FROM table_name_4 WHERE date = "7 jun 1976" ### context: CREATE TABLE table_name_4 (winning_score VARCHAR, date VARCHAR) |
### question: Which Winning score has a Margin of victory of 1 stroke, and a Date of 21 jun 1981? ### answer: SELECT winning_score FROM table_name_19 WHERE margin_of_victory = "1 stroke" AND date = "21 jun 1981" ### context: CREATE TABLE table_name_19 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR) |
### question: On which date was the Winning score –5 (70-65-69-75=279)? ### answer: SELECT date FROM table_name_92 WHERE winning_score = –5(70 - 65 - 69 - 75 = 279) ### context: CREATE TABLE table_name_92 (date VARCHAR, winning_score VARCHAR) |
### question: Which Runner(s)-up has a Winning score of –9 (71-68-72-68=279)? ### answer: SELECT runner_s__up FROM table_name_71 WHERE winning_score = –9(71 - 68 - 72 - 68 = 279) ### context: CREATE TABLE table_name_71 (runner_s__up VARCHAR, winning_score VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.