question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What is the highest rank Mount Elbert has?
CREATE TABLE table_name_12 (rank INTEGER, mountain_peak VARCHAR)
{ "SQL_Query": "SELECT MAX(rank) FROM table_name_12 WHERE mountain_peak = \"mount elbert\"" }
What is the mountain range at 37.3934°n 104.9201°w?
CREATE TABLE table_name_3 (mountain_range VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT mountain_range FROM table_name_3 WHERE location = \"37.3934°n 104.9201°w\"" }
What is the location of Blanca Peak?
CREATE TABLE table_name_77 (location VARCHAR, mountain_peak VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_77 WHERE mountain_peak = \"blanca peak\"" }
Which state is West Spanish Peak in?
CREATE TABLE table_name_4 (state VARCHAR, mountain_peak VARCHAR)
{ "SQL_Query": "SELECT state FROM table_name_4 WHERE mountain_peak = \"west spanish peak\"" }
What is the ranked 5 mountain range?
CREATE TABLE table_name_59 (mountain_range VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT mountain_range FROM table_name_59 WHERE rank = 5" }
Name of choice b. Randell is the name of which District Residence?
CREATE TABLE table_name_4 (district_residence VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT district_residence FROM table_name_4 WHERE name = \"choice b. randell\"" }
Who has a Took Office of march 4, 1903?
CREATE TABLE table_name_32 (name VARCHAR, took_office VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_32 WHERE took_office = \"march 4, 1903\"" }
Which Took Office that has a Party of democrat, under the name of John Hancock
CREATE TABLE table_name_30 (took_office VARCHAR, party VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT took_office FROM table_name_30 WHERE party = \"democrat\" AND name = \"john hancock\"" }
Who has Took Office of march 4, 1875?
CREATE TABLE table_name_67 (name VARCHAR, took_office VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_67 WHERE took_office = \"march 4, 1875\"" }
Name the record on june 22
CREATE TABLE table_name_89 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_89 WHERE date = \"june 22\"" }
Name the total number in attendance for when the bulls visited
CREATE TABLE table_name_50 (attendance VARCHAR, visitor VARCHAR)
{ "SQL_Query": "SELECT COUNT(attendance) FROM table_name_50 WHERE visitor = \"bulls\"" }
Name the most swimsuit for interview less than 8.46
CREATE TABLE table_name_1 (swimsuit INTEGER, interview INTEGER)
{ "SQL_Query": "SELECT MAX(swimsuit) FROM table_name_1 WHERE interview < 8.46" }
Name the most evening gown for average less than 8.793 with interview of 8.51 and swimsuit less than 8.12
CREATE TABLE table_name_38 (evening_gown INTEGER, interview VARCHAR, average VARCHAR, swimsuit VARCHAR)
{ "SQL_Query": "SELECT MAX(evening_gown) FROM table_name_38 WHERE average < 8.793 AND swimsuit < 8.12 AND interview = 8.51" }
On average, how many Starts have Wins that are smaller than 0?
CREATE TABLE table_name_86 (starts INTEGER, wins INTEGER)
{ "SQL_Query": "SELECT AVG(starts) FROM table_name_86 WHERE wins < 0" }
Which of the top-10s has a starts value of 14?
CREATE TABLE table_name_53 (top_10s INTEGER, starts VARCHAR)
{ "SQL_Query": "SELECT MAX(top_10s) FROM table_name_53 WHERE starts = 14" }
In the tournament of HSBC Champions, what was the sum of the Starts with Wins lower than 0?
CREATE TABLE table_name_52 (starts INTEGER, tournament VARCHAR, wins VARCHAR)
{ "SQL_Query": "SELECT SUM(starts) FROM table_name_52 WHERE tournament = \"hsbc champions\" AND wins < 0" }
Who trained the horse on post 11 with over 36 odds?
CREATE TABLE table_name_93 (trainer VARCHAR, odds VARCHAR, post VARCHAR)
{ "SQL_Query": "SELECT trainer FROM table_name_93 WHERE odds > 36 AND post = 11" }
What is the lowest post number for calvin borel?
CREATE TABLE table_name_31 (post INTEGER, jockey VARCHAR)
{ "SQL_Query": "SELECT MIN(post) FROM table_name_31 WHERE jockey = \"calvin borel\"" }
What horse for jara?
CREATE TABLE table_name_43 (horse VARCHAR, jockey VARCHAR)
{ "SQL_Query": "SELECT horse FROM table_name_43 WHERE jockey = \"jara\"" }
What is the date when Lebron James (25) was the lead scorer?
CREATE TABLE table_name_90 (date VARCHAR, leading_scorer VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_90 WHERE leading_scorer = \"lebron james (25)\"" }
Which Total has a Gold smaller than 0?
CREATE TABLE table_name_29 (total INTEGER, gold INTEGER)
{ "SQL_Query": "SELECT SUM(total) FROM table_name_29 WHERE gold < 0" }
Which Bronze has a Gold smaller than 0?
CREATE TABLE table_name_82 (bronze INTEGER, gold INTEGER)
{ "SQL_Query": "SELECT AVG(bronze) FROM table_name_82 WHERE gold < 0" }
Which T.C. has a Win of 1, and a Race of 21?
CREATE TABLE table_name_40 (tc VARCHAR, wins VARCHAR, races VARCHAR)
{ "SQL_Query": "SELECT tc FROM table_name_40 WHERE wins = 1 AND races = 21" }
How many years have Drivers of ben hanley, and Flaps smaller than 0?
CREATE TABLE table_name_67 (year VARCHAR, drivers VARCHAR, flaps VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_67 WHERE drivers = \"ben hanley\" AND flaps < 0" }
How many Points have Drivers of adrián vallés, and a Year larger than 2006?
CREATE TABLE table_name_97 (points INTEGER, drivers VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT AVG(points) FROM table_name_97 WHERE drivers = \"adrián vallés\" AND year > 2006" }
How many Poles have Drivers of juan cruz álvarez, and FLaps larger than 0?
CREATE TABLE table_name_27 (poles INTEGER, drivers VARCHAR, flaps VARCHAR)
{ "SQL_Query": "SELECT SUM(poles) FROM table_name_27 WHERE drivers = \"juan cruz álvarez\" AND flaps > 0" }
Who was the away team at Victoria Park?
CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT away_team FROM table_name_52 WHERE venue = \"victoria park\"" }
What is the name of the train numbered less than 6 before 1993?
CREATE TABLE table_name_41 (name VARCHAR, number VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_41 WHERE number < 6 AND date < 1993" }
What is the name of the bo-bodh train with a number less than 5?
CREATE TABLE table_name_31 (name VARCHAR, number VARCHAR, type VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_31 WHERE number < 5 AND type = \"bo-bodh\"" }
Name the record when the visitor is st. louis
CREATE TABLE table_name_41 (record VARCHAR, visitor VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_41 WHERE visitor = \"st. louis\"" }
What was the scory when calgary was visiting?
CREATE TABLE table_name_10 (score VARCHAR, visitor VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_10 WHERE visitor = \"calgary\"" }
Name the home when the visitor was dallas on february 2
CREATE TABLE table_name_12 (home VARCHAR, visitor VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT home FROM table_name_12 WHERE visitor = \"dallas\" AND date = \"february 2\"" }
Name the date for turco decision and home of st. louis
CREATE TABLE table_name_5 (date VARCHAR, decision VARCHAR, home VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_5 WHERE decision = \"turco\" AND home = \"st. louis\"" }
Which rider had a speed of 104.630mph?
CREATE TABLE table_name_84 (rider VARCHAR, speed VARCHAR)
{ "SQL_Query": "SELECT rider FROM table_name_84 WHERE speed = \"104.630mph\"" }
What is the best rank with a time of 1:05.14.10?
CREATE TABLE table_name_59 (rank INTEGER, time VARCHAR)
{ "SQL_Query": "SELECT MAX(rank) FROM table_name_59 WHERE time = \"1:05.14.10\"" }
Where was the game played when the final score was 35-62?
CREATE TABLE table_name_71 (stadium VARCHAR, final_score VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_name_71 WHERE final_score = \"35-62\"" }
During the game at Candlestick Park, who was the visiting team?
CREATE TABLE table_name_99 (visiting_team VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT visiting_team FROM table_name_99 WHERE stadium = \"candlestick park\"" }
Which visiting team had a final score of 14-34?
CREATE TABLE table_name_12 (visiting_team VARCHAR, final_score VARCHAR)
{ "SQL_Query": "SELECT visiting_team FROM table_name_12 WHERE final_score = \"14-34\"" }
What was the final score in the game against the Cincinnati Bengals?
CREATE TABLE table_name_78 (final_score VARCHAR, visiting_team VARCHAR)
{ "SQL_Query": "SELECT final_score FROM table_name_78 WHERE visiting_team = \"cincinnati bengals\"" }
Who was the visiting team in the game against the Dallas Cowboys?
CREATE TABLE table_name_10 (visiting_team VARCHAR, host_team VARCHAR)
{ "SQL_Query": "SELECT visiting_team FROM table_name_10 WHERE host_team = \"dallas cowboys\"" }
Which tournament has an Outcome of runner-up, and an Opponent of maša zec peškirič?
CREATE TABLE table_name_93 (tournament VARCHAR, outcome VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_93 WHERE outcome = \"runner-up\" AND opponent = \"maša zec peškirič\"" }
Which surface has a Score of 6–4, 6–2?
CREATE TABLE table_name_45 (surface VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_name_45 WHERE score = \"6–4, 6–2\"" }
Which surface has a Date of 22 august 2006?
CREATE TABLE table_name_57 (surface VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_name_57 WHERE date = \"22 august 2006\"" }
Which tournament has an Outcome of runner-up, a Surface of hard, and a Score of 6–4, 6–2?
CREATE TABLE table_name_95 (tournament VARCHAR, score VARCHAR, outcome VARCHAR, surface VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_95 WHERE outcome = \"runner-up\" AND surface = \"hard\" AND score = \"6–4, 6–2\"" }
What is the outcome with marina erakovic as opponent?
CREATE TABLE table_name_37 (outcome VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT outcome FROM table_name_37 WHERE opponent = \"marina erakovic\"" }
Which tournament has an Outcome of winner, and a Opponent of dia evtimova?
CREATE TABLE table_name_53 (tournament VARCHAR, outcome VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_53 WHERE outcome = \"winner\" AND opponent = \"dia evtimova\"" }
What title runs for 3:22?
CREATE TABLE table_name_5 (title VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT title FROM table_name_5 WHERE time = \"3:22\"" }
Who wrote the song that runs for 2:22?
CREATE TABLE table_name_35 (author_s_ VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT author_s_ FROM table_name_35 WHERE time = \"2:22\"" }
What Constructor had 66 Laps?
CREATE TABLE table_name_74 (constructor VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT constructor FROM table_name_74 WHERE laps = 66" }
With Laps greater than 78, what is the lowest Grid?
CREATE TABLE table_name_30 (grid INTEGER, laps INTEGER)
{ "SQL_Query": "SELECT MIN(grid) FROM table_name_30 WHERE laps > 78" }
How many Laps with a Grid smaller than 11 did John Watson have?
CREATE TABLE table_name_71 (laps INTEGER, driver VARCHAR, grid VARCHAR)
{ "SQL_Query": "SELECT AVG(laps) FROM table_name_71 WHERE driver = \"john watson\" AND grid < 11" }
How many Laps with a Grid smaller than 3 did Driver NIki Lauda have?
CREATE TABLE table_name_42 (laps INTEGER, driver VARCHAR, grid VARCHAR)
{ "SQL_Query": "SELECT AVG(laps) FROM table_name_42 WHERE driver = \"niki lauda\" AND grid < 3" }
What is the low grid total for a retired due to steering in under 15 laps?
CREATE TABLE table_name_21 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT MIN(grid) FROM table_name_21 WHERE time_retired = \"steering\" AND laps < 15" }
What is the average laps that had a time/retired of +5 laps?
CREATE TABLE table_name_27 (laps INTEGER, time_retired VARCHAR)
{ "SQL_Query": "SELECT AVG(laps) FROM table_name_27 WHERE time_retired = \"+5 laps\"" }
Which Opponent has Location Wonju Chiak Indoor Gym, South Korea?
CREATE TABLE table_name_16 (opponent VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_16 WHERE location = \"wonju chiak indoor gym, south korea\"" }
Which is the lowest Round with the Opponent, Paul Cahoon and Location, Amsterdam, Netherlands?
CREATE TABLE table_name_60 (round INTEGER, opponent VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT MIN(round) FROM table_name_60 WHERE opponent = \"paul cahoon\" AND location = \"amsterdam, netherlands\"" }
Which Event has the Opponent, Bernard Ackah?
CREATE TABLE table_name_15 (event VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT event FROM table_name_15 WHERE opponent = \"bernard ackah\"" }
when was the destroyer launched when it was laid down on 14 august 1942?
CREATE TABLE table_name_91 (launched VARCHAR, laid_down VARCHAR)
{ "SQL_Query": "SELECT launched FROM table_name_91 WHERE laid_down = \"14 august 1942\"" }
what is the launched date when the builder is john brown, clydebank?
CREATE TABLE table_name_57 (launched VARCHAR, builder VARCHAR)
{ "SQL_Query": "SELECT launched FROM table_name_57 WHERE builder = \"john brown, clydebank\"" }
what is the pennant when the builder is yarrow, scotstoun?
CREATE TABLE table_name_23 (pennant VARCHAR, builder VARCHAR)
{ "SQL_Query": "SELECT pennant FROM table_name_23 WHERE builder = \"yarrow, scotstoun\"" }
what is the name when the laid down is 28 february 1943?
CREATE TABLE table_name_37 (name VARCHAR, laid_down VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_37 WHERE laid_down = \"28 february 1943\"" }
when was it commissioned when the destroyer was built by scotts, greenock?
CREATE TABLE table_name_88 (commissioned VARCHAR, builder VARCHAR)
{ "SQL_Query": "SELECT commissioned FROM table_name_88 WHERE builder = \"scotts, greenock\"" }
when was the launched date when the laid down date is 14 august 1942?
CREATE TABLE table_name_55 (launched VARCHAR, laid_down VARCHAR)
{ "SQL_Query": "SELECT launched FROM table_name_55 WHERE laid_down = \"14 august 1942\"" }
What was the record for a week below 13 on July 12?
CREATE TABLE table_name_82 (record VARCHAR, week VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_82 WHERE week < 13 AND date = \"july 12\"" }
What location had a final score of W 30 – 5?
CREATE TABLE table_name_92 (location VARCHAR, final_score VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_92 WHERE final_score = \"w 30 – 5\"" }
Which label had a catalog designation of ch-9196?
CREATE TABLE table_name_48 (label VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_48 WHERE catalog = \"ch-9196\"" }
Which format's catalog designation was 21-382a?
CREATE TABLE table_name_95 (format VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT format FROM table_name_95 WHERE catalog = \"21-382a\"" }
Which catalog had a date year of 1984?
CREATE TABLE table_name_66 (catalog VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT catalog FROM table_name_66 WHERE date = \"1984\"" }
Which format was under the London Records label?
CREATE TABLE table_name_32 (format VARCHAR, label VARCHAR)
{ "SQL_Query": "SELECT format FROM table_name_32 WHERE label = \"london records\"" }
Which label was in the United Kingdom region?
CREATE TABLE table_name_17 (label VARCHAR, region VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_17 WHERE region = \"united kingdom\"" }
Which date had the catalog designation of ha-m 2230?
CREATE TABLE table_name_37 (date VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_37 WHERE catalog = \"ha-m 2230\"" }
What is the maximum goals conceded for a team with 2 draws, more than 29 goals and a diff larger than 15?
CREATE TABLE table_name_84 (goals_conceded__gc_ INTEGER, ____dif_ VARCHAR, draw__pe_ VARCHAR, goals_scored__gf_ VARCHAR)
{ "SQL_Query": "SELECT MAX(goals_conceded__gc_) FROM table_name_84 WHERE draw__pe_ = 2 AND goals_scored__gf_ > 29 AND ____dif_ > 15" }
What is the points for a team with more than 9 wins and more than 40 goals?
CREATE TABLE table_name_84 (points__pts_ INTEGER, won__pg_ VARCHAR, goals_scored__gf_ VARCHAR)
{ "SQL_Query": "SELECT SUM(points__pts_) FROM table_name_84 WHERE won__pg_ > 9 AND goals_scored__gf_ > 40" }
What was the score of the game played in the 2012 Africa Cup of Nations?
CREATE TABLE table_name_90 (score VARCHAR, competition VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_90 WHERE competition = \"2012 africa cup of nations\"" }
What is the score of the friendly competition?
CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_72 WHERE competition = \"friendly\"" }
What venue was the game played on 9 February 2011 played at?
CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_28 WHERE date = \"9 february 2011\"" }
What date did NY Rangers play at home?
CREATE TABLE table_name_12 (date VARCHAR, home VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_12 WHERE home = \"ny rangers\"" }
What is the score of Colorado when they were a visitor and had a Smith decision?
CREATE TABLE table_name_32 (score VARCHAR, decision VARCHAR, visitor VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_32 WHERE decision = \"smith\" AND visitor = \"colorado\"" }
Who is the runner up when the score was 3–6, 6–3, [10–4]?
CREATE TABLE table_name_50 (runner_up VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT runner_up FROM table_name_50 WHERE score = \"3–6, 6–3, [10–4]\"" }
What is the name of the runner up in the Tournament of são paulo?
CREATE TABLE table_name_92 (runner_up VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT runner_up FROM table_name_92 WHERE tournament = \"são paulo\"" }
What person is in the third place when Thomas Enqvist won and a Runner-up was guy forget?
CREATE TABLE table_name_94 (third_place VARCHAR, winner VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT third_place FROM table_name_94 WHERE winner = \"thomas enqvist\" AND runner_up = \"guy forget\"" }
What tournament was Thomas Enqvist runner up?
CREATE TABLE table_name_15 (tournament VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_15 WHERE runner_up = \"thomas enqvist\"" }
What is the name of the runner up when yevgeny kafelnikov was third place and the score was 3–6, 6–4, [10–3]?
CREATE TABLE table_name_18 (runner_up VARCHAR, third_place VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT runner_up FROM table_name_18 WHERE third_place = \"yevgeny kafelnikov\" AND score = \"3–6, 6–4, [10–3]\"" }
What is the name of the winner when Goran Ivanišević was in third place?
CREATE TABLE table_name_65 (winner VARCHAR, third_place VARCHAR)
{ "SQL_Query": "SELECT winner FROM table_name_65 WHERE third_place = \"goran ivanišević\"" }
Which analog channel has a digital channel of 4.1?
CREATE TABLE table_name_31 (analog_channel VARCHAR, digital_channel VARCHAR)
{ "SQL_Query": "SELECT analog_channel FROM table_name_31 WHERE digital_channel = \"4.1\"" }
Which digital channel is named Storm Tracker?
CREATE TABLE table_name_65 (digital_channel VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT digital_channel FROM table_name_65 WHERE name = \"storm tracker\"" }
Which analog channel is Fox on?
CREATE TABLE table_name_16 (analog_channel VARCHAR, network VARCHAR)
{ "SQL_Query": "SELECT analog_channel FROM table_name_16 WHERE network = \"fox\"" }
Name the area president when the area name is south america south
CREATE TABLE table_name_44 (area_president__quorum_ VARCHAR, area_name VARCHAR)
{ "SQL_Query": "SELECT area_president__quorum_ FROM table_name_44 WHERE area_name = \"south america south\"" }
Tell me the total number of Grid for Time/Retired of +2 Laps and Laps less than 70
CREATE TABLE table_name_66 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT COUNT(grid) FROM table_name_66 WHERE time_retired = \"+2 laps\" AND laps < 70" }
What year did Shelley Winters win?
CREATE TABLE table_name_13 (year VARCHAR, actress VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_13 WHERE actress = \"shelley winters\"" }
Which award was won by Gloria Stuart after 1984?
CREATE TABLE table_name_92 (superlative VARCHAR, year VARCHAR, actress VARCHAR)
{ "SQL_Query": "SELECT superlative FROM table_name_92 WHERE year > 1984 AND actress = \"gloria stuart\"" }
Which award has Thelma Ritter won?
CREATE TABLE table_name_56 (superlative VARCHAR, actress VARCHAR)
{ "SQL_Query": "SELECT superlative FROM table_name_56 WHERE actress = \"thelma ritter\"" }
I want the lowest points diff for against being less than 578 and lost being 15 and points more than 26
CREATE TABLE table_name_37 (points_diff INTEGER, points VARCHAR, against VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT MIN(points_diff) FROM table_name_37 WHERE against < 578 AND lost = 15 AND points > 26" }
I want the total number of points for against of 753 and points diff more than -114
CREATE TABLE table_name_75 (points VARCHAR, against VARCHAR, points_diff VARCHAR)
{ "SQL_Query": "SELECT COUNT(points) FROM table_name_75 WHERE against = 753 AND points_diff > -114" }
In What Week was the Attendance 75,866?
CREATE TABLE table_name_59 (week VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT week FROM table_name_59 WHERE attendance = \"75,866\"" }
What Opponent has an Attendance of 74,246?
CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_49 WHERE attendance = \"74,246\"" }
What Date is Week 1?
CREATE TABLE table_name_54 (date VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_54 WHERE week = 1" }
Which team had 7 losses and 55 goals?
CREATE TABLE table_name_80 (team VARCHAR, losses VARCHAR, goals_for VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_80 WHERE losses = \"7\" AND goals_for = 55" }
What is the 1995 GDP when 1990 GDP is 441 and 1985 GDP is less than 359?
CREATE TABLE table_name_14 (Id VARCHAR)
{ "SQL_Query": "SELECT MIN(1995) FROM table_name_14 WHERE 1990 = 441 AND 1985 < 359" }
What is the maximum 1985 GDP for the region where 1990 GDP is less than 267, 2000 GDP is 333 and 2005 GDP is less than 658?
CREATE TABLE table_name_88 (Id VARCHAR)
{ "SQL_Query": "SELECT MAX(1985) FROM table_name_88 WHERE 1990 < 267 AND 2000 = 333 AND 2005 < 658" }