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