text stringlengths 114 1.06k |
|---|
### question: What is the class for the position of lg? ### answer: SELECT class FROM table_name_4 WHERE position = "lg" ### context: CREATE TABLE table_name_4 (class VARCHAR, position VARCHAR) |
### question: What is the highest weight for the Farnley Stakes race? ### answer: SELECT MAX(weight__kg_) FROM table_name_67 WHERE race = "farnley stakes" ### context: CREATE TABLE table_name_67 (weight__kg_ INTEGER, race VARCHAR) |
### question: What time is associated with the event that happened in Tokyo, Japan, ending in a draw, with 3 rounds? ### answer: SELECT time FROM table_name_44 WHERE location = "tokyo, japan" AND round = 3 AND res = "draw" ### context: CREATE TABLE table_name_44 (time VARCHAR, res VARCHAR, location VARCHAR, round VARCH... |
### question: Which 2012 has a 2007 of 0 / 4? ### answer: SELECT 2012 FROM table_name_8 WHERE 2007 = "0 / 4" ### context: CREATE TABLE table_name_8 (Id VARCHAR) |
### question: Which 2011 has a Career Win-Loss of 7–10? ### answer: SELECT 2011 FROM table_name_65 WHERE career_win_loss = "7–10" ### context: CREATE TABLE table_name_65 (career_win_loss VARCHAR) |
### question: Which 1998 has a 2002 of 2–4? ### answer: SELECT 1998 FROM table_name_65 WHERE 2002 = "2–4" ### context: CREATE TABLE table_name_65 (Id VARCHAR) |
### question: Which 2002 has a 2008 of 3–3? ### answer: SELECT 2002 FROM table_name_79 WHERE 2008 = "3–3" ### context: CREATE TABLE table_name_79 (Id VARCHAR) |
### question: Which 2003 has a 2012 of 1r, and a 2008 of 1r? ### answer: SELECT 2003 FROM table_name_42 WHERE 2012 = "1r" AND 2008 = "1r" ### context: CREATE TABLE table_name_42 (Id VARCHAR) |
### question: What club is robert gallery a part of ### answer: SELECT nfl_club FROM table_name_51 WHERE player = "robert gallery" ### context: CREATE TABLE table_name_51 (nfl_club VARCHAR, player VARCHAR) |
### question: How many attendance numbers had more than 15 games, and sellouts of more than 8 in the 2011-12 season? ### answer: SELECT COUNT(attendance) FROM table_name_34 WHERE games > 15 AND sellouts > 8 AND season = "2011-12" ### context: CREATE TABLE table_name_34 (attendance VARCHAR, season VARCHAR, games VARCHAR... |
### question: What's the mean attendance number when the record is 12-4 and the average is less than 10,027? ### answer: SELECT AVG(attendance) FROM table_name_24 WHERE record = "12-4" AND average < 10 OFFSET 027 ### context: CREATE TABLE table_name_24 (attendance INTEGER, record VARCHAR, average VARCHAR) |
### question: What is the full amount of averages when the sellouts are less than 14, the season is 2011-12, and attendance is less than 162,474? ### answer: SELECT COUNT(average) FROM table_name_73 WHERE sellouts < 14 AND season = "2011-12" AND attendance < 162 OFFSET 474 ### context: CREATE TABLE table_name_73 (avera... |
### question: What medal was awarded in the men's freestyle 52 kg? ### answer: SELECT medal FROM table_name_69 WHERE event = "men's freestyle 52 kg" ### context: CREATE TABLE table_name_69 (medal VARCHAR, event VARCHAR) |
### question: Events smaller than 1 had what highest cuts made? ### answer: SELECT MAX(cuts_made) FROM table_name_65 WHERE events < 1 ### context: CREATE TABLE table_name_65 (cuts_made INTEGER, events INTEGER) |
### question: What position was played with a Difference of - 5, and a Played larger than 14? ### answer: SELECT AVG(position) FROM table_name_48 WHERE difference = "- 5" AND played > 14 ### context: CREATE TABLE table_name_48 (position INTEGER, difference VARCHAR, played VARCHAR) |
### question: How many games lost associated with under 14 played? ### answer: SELECT COUNT(lost) FROM table_name_66 WHERE played < 14 ### context: CREATE TABLE table_name_66 (lost VARCHAR, played INTEGER) |
### question: How many games against for team guarani with under 3 draws? ### answer: SELECT SUM(against) FROM table_name_84 WHERE team = "guarani" AND drawn < 3 ### context: CREATE TABLE table_name_84 (against INTEGER, team VARCHAR, drawn VARCHAR) |
### question: What Congress had less than 23 cosponsors and had June 30, 2005 as the date of introduction of the bill? ### answer: SELECT congress FROM table_name_92 WHERE _number_of_cosponsors < 23 AND date_introduced = "june 30, 2005" ### context: CREATE TABLE table_name_92 (congress VARCHAR, _number_of_cosponsors VA... |
### question: Who sponsored the bill introduced on June 9, 2011? ### answer: SELECT sponsor_s_ FROM table_name_77 WHERE date_introduced = "june 9, 2011" ### context: CREATE TABLE table_name_77 (sponsor_s_ VARCHAR, date_introduced VARCHAR) |
### question: Who sponsored the bill that was introduced on June 2, 2009? ### answer: SELECT sponsor_s_ FROM table_name_55 WHERE date_introduced = "june 2, 2009" ### context: CREATE TABLE table_name_55 (sponsor_s_ VARCHAR, date_introduced VARCHAR) |
### question: What is the Outcome of the Melbourne Tournament? ### answer: SELECT outcome FROM table_name_48 WHERE tournament = "melbourne" ### context: CREATE TABLE table_name_48 (outcome VARCHAR, tournament VARCHAR) |
### question: In what Tournament was Janet Young a Partner? ### answer: SELECT tournament FROM table_name_18 WHERE partner = "janet young" ### context: CREATE TABLE table_name_18 (tournament VARCHAR, partner VARCHAR) |
### question: What was the Outcome of the match with a Score of w/o? ### answer: SELECT outcome FROM table_name_57 WHERE score = "w/o" ### context: CREATE TABLE table_name_57 (outcome VARCHAR, score VARCHAR) |
### question: Which school or club team has a pick of 139? ### answer: SELECT school_club_team FROM table_name_60 WHERE pick = 139 ### context: CREATE TABLE table_name_60 (school_club_team VARCHAR, pick VARCHAR) |
### question: What is the pick number for the player playing tackle position, and a round less than 15? ### answer: SELECT SUM(pick) FROM table_name_97 WHERE position = "tackle" AND round < 15 ### context: CREATE TABLE table_name_97 (pick INTEGER, position VARCHAR, round VARCHAR) |
### question: Which school of club team has a pick of 46? ### answer: SELECT school_club_team FROM table_name_83 WHERE pick = 46 ### context: CREATE TABLE table_name_83 (school_club_team VARCHAR, pick VARCHAR) |
### question: Who got 59.486 for Qual 2? ### answer: SELECT name FROM table_name_15 WHERE qual_2 = "59.486" ### context: CREATE TABLE table_name_15 (name VARCHAR, qual_2 VARCHAR) |
### question: Who got 59.578 for Qual 1? ### answer: SELECT name FROM table_name_79 WHERE qual_1 = "59.578" ### context: CREATE TABLE table_name_79 (name VARCHAR, qual_1 VARCHAR) |
### question: What team was Andrew Ranger in? ### answer: SELECT team FROM table_name_78 WHERE name = "andrew ranger" ### context: CREATE TABLE table_name_78 (team VARCHAR, name VARCHAR) |
### question: What team has 59.372 for qual 1? ### answer: SELECT team FROM table_name_37 WHERE qual_1 = "59.372" ### context: CREATE TABLE table_name_37 (team VARCHAR, qual_1 VARCHAR) |
### question: What did Alex Tagliani get for Qual 1? ### answer: SELECT qual_1 FROM table_name_93 WHERE name = "alex tagliani" ### context: CREATE TABLE table_name_93 (qual_1 VARCHAR, name VARCHAR) |
### question: What was the result of the game on November 7, 1999? ### answer: SELECT result FROM table_name_9 WHERE date = "november 7, 1999" ### context: CREATE TABLE table_name_9 (result VARCHAR, date VARCHAR) |
### question: When was the game before week 15 with the result of bye? ### answer: SELECT date FROM table_name_26 WHERE week < 15 AND result = "bye" ### context: CREATE TABLE table_name_26 (date VARCHAR, week VARCHAR, result VARCHAR) |
### question: Who is the writer of Wallace & Gromit: A Close Shave, a short film from before 2008? ### answer: SELECT writer FROM table_name_15 WHERE year < 2008 AND notes = "short film" AND title = "wallace & gromit: a close shave" ### context: CREATE TABLE table_name_15 (writer VARCHAR, title VARCHAR, year VARCHAR, n... |
### question: What notes did the creature comforts film have? ### answer: SELECT notes FROM table_name_31 WHERE title = "creature comforts" ### context: CREATE TABLE table_name_31 (notes VARCHAR, title VARCHAR) |
### question: Who is the director of Wallace & Gromit: The Curse of the Were-Rabbit? ### answer: SELECT director FROM table_name_99 WHERE title = "wallace & gromit: the curse of the were-rabbit" ### context: CREATE TABLE table_name_99 (director VARCHAR, title VARCHAR) |
### question: What is the earliest year of Wallace & Gromit: The Curse of the Were-Rabbit? ### answer: SELECT MIN(year) FROM table_name_13 WHERE title = "wallace & gromit: the curse of the were-rabbit" ### context: CREATE TABLE table_name_13 (year INTEGER, title VARCHAR) |
### question: what was the length of the game on may 19 ### answer: SELECT length FROM table_name_10 WHERE date = "may 19" ### context: CREATE TABLE table_name_10 (length VARCHAR, date VARCHAR) |
### question: March of 26 has what lowest game? ### answer: SELECT MIN(game) FROM table_name_24 WHERE march = 26 ### context: CREATE TABLE table_name_24 (game INTEGER, march VARCHAR) |
### question: March of 29 involves what highest scoring game? ### answer: SELECT MAX(game) FROM table_name_40 WHERE march = 29 ### context: CREATE TABLE table_name_40 (game INTEGER, march VARCHAR) |
### question: Game larger than 76, and a March larger than 26 involves what score? ### answer: SELECT score FROM table_name_60 WHERE game > 76 AND march > 26 ### context: CREATE TABLE table_name_60 (score VARCHAR, game VARCHAR, march VARCHAR) |
### question: What was the time when the laps were smaller than 66 and the grid was 15? ### answer: SELECT time_retired FROM table_name_62 WHERE laps < 66 AND grid = 15 ### context: CREATE TABLE table_name_62 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR) |
### question: What was the grid for anthony davidson when the laps were less than 8? ### answer: SELECT COUNT(grid) FROM table_name_86 WHERE driver = "anthony davidson" AND laps < 8 ### context: CREATE TABLE table_name_86 (grid VARCHAR, driver VARCHAR, laps VARCHAR) |
### question: What team did carlos cardus drive for in 1983 when he got less than 21 points? ### answer: SELECT team FROM table_name_69 WHERE points < 21 AND year = 1983 ### context: CREATE TABLE table_name_69 (team VARCHAR, points VARCHAR, year VARCHAR) |
### question: What is the sum of the points when Carlos drove for repsol honda in 8th place? ### answer: SELECT SUM(points) FROM table_name_93 WHERE team = "repsol honda" AND rank = "8th" ### context: CREATE TABLE table_name_93 (points INTEGER, team VARCHAR, rank VARCHAR) |
### question: What is the average points won when Carlos had 0 wins? ### answer: SELECT AVG(points) FROM table_name_5 WHERE wins < 0 ### context: CREATE TABLE table_name_5 (points INTEGER, wins INTEGER) |
### question: What is the highest year that Carlos drove for repsol honda and had less than 4 wins and less than 162 points? ### answer: SELECT MAX(year) FROM table_name_56 WHERE team = "repsol honda" AND wins < 4 AND points < 162 ### context: CREATE TABLE table_name_56 (year INTEGER, points VARCHAR, team VARCHAR, wins... |
### question: What is the total number of goals from 24 tries and 96 or greater points? ### answer: SELECT SUM(goals) FROM table_name_46 WHERE tries = 24 AND points > 96 ### context: CREATE TABLE table_name_46 (goals INTEGER, tries VARCHAR, points VARCHAR) |
### question: What year has tries less than 24 and 0 points? ### answer: SELECT year FROM table_name_38 WHERE tries < 24 AND points = 0 ### context: CREATE TABLE table_name_38 (year VARCHAR, tries VARCHAR, points VARCHAR) |
### question: What Game has a Location of Philadelphia Spectrum and an Opponent of New York Knicks? ### answer: SELECT game FROM table_name_91 WHERE location = "philadelphia spectrum" AND opponent = "new york knicks" ### context: CREATE TABLE table_name_91 (game VARCHAR, location VARCHAR, opponent VARCHAR) |
### question: What Game has a Location of Philadelphia Spectrum and a Date of April 1? ### answer: SELECT game FROM table_name_80 WHERE location = "philadelphia spectrum" AND date = "april 1" ### context: CREATE TABLE table_name_80 (game VARCHAR, location VARCHAR, date VARCHAR) |
### question: What is the segment for Netflix episode S08E04? ### answer: SELECT segment_a FROM table_name_94 WHERE netflix = "s08e04" ### context: CREATE TABLE table_name_94 (segment_a VARCHAR, netflix VARCHAR) |
### question: What is the Netflix episode for series episode 15-01? ### answer: SELECT netflix FROM table_name_64 WHERE series_ep = "15-01" ### context: CREATE TABLE table_name_64 (netflix VARCHAR, series_ep VARCHAR) |
### question: What is the segment A for the episode with Children's Ride-on Cars for segment D? ### answer: SELECT segment_a FROM table_name_10 WHERE segment_d = "children's ride-on cars" ### context: CREATE TABLE table_name_10 (segment_a VARCHAR, segment_d VARCHAR) |
### question: What is the earliest year with fewer than 5 wins and 89 points? ### answer: SELECT MIN(year) FROM table_name_12 WHERE wins < 5 AND points = 89 ### context: CREATE TABLE table_name_12 (year INTEGER, wins VARCHAR, points VARCHAR) |
### question: When is the most recent year with more than 27 points and more than 5 wins? ### answer: SELECT MAX(year) FROM table_name_69 WHERE points > 27 AND wins > 5 ### context: CREATE TABLE table_name_69 (year INTEGER, points VARCHAR, wins VARCHAR) |
### question: What are the sum of points in 1989 with 0 wins? ### answer: SELECT SUM(points) FROM table_name_85 WHERE wins = 0 AND year = 1989 ### context: CREATE TABLE table_name_85 (points INTEGER, wins VARCHAR, year VARCHAR) |
### question: Which class has fewer than 89 points and the Honda team later than 1987? ### answer: SELECT class FROM table_name_48 WHERE points < 89 AND team = "honda" AND year > 1987 ### context: CREATE TABLE table_name_48 (class VARCHAR, year VARCHAR, points VARCHAR, team VARCHAR) |
### question: How many points are there later than 1992? ### answer: SELECT COUNT(points) FROM table_name_12 WHERE year > 1992 ### context: CREATE TABLE table_name_12 (points VARCHAR, year INTEGER) |
### question: Where was the event on June 10? ### answer: SELECT location FROM table_name_12 WHERE date = "june 10" ### context: CREATE TABLE table_name_12 (location VARCHAR, date VARCHAR) |
### question: What event was in New Orleans, Louisiana, USA? ### answer: SELECT event FROM table_name_55 WHERE location = "new orleans, louisiana, usa" ### context: CREATE TABLE table_name_55 (event VARCHAR, location VARCHAR) |
### question: On September 10 during Strikeforce: Heavyweight Grand Prix Semifinals, what was the PPV buyrate? ### answer: SELECT ppv_buyrate FROM table_name_77 WHERE date = "september 10" AND event = "strikeforce: heavyweight grand prix semifinals" ### context: CREATE TABLE table_name_77 (ppv_buyrate VARCHAR, date VAR... |
### question: How many points are there on november 7? ### answer: SELECT MAX(points) FROM table_name_94 WHERE november = 7 ### context: CREATE TABLE table_name_94 (points INTEGER, november VARCHAR) |
### question: What was the score in the game where the Blazers were the home team? ### answer: SELECT score FROM table_name_95 WHERE home = "blazers" ### context: CREATE TABLE table_name_95 (score VARCHAR, home VARCHAR) |
### question: How many people attended the game that had the Clippers as visiting team? ### answer: SELECT attendance FROM table_name_47 WHERE visitor = "clippers" ### context: CREATE TABLE table_name_47 (attendance VARCHAR, visitor VARCHAR) |
### question: Which team has a car # before 99, a Toyota, and is driven by Mike Skinner? ### answer: SELECT team FROM table_name_1 WHERE car__number < 99 AND make = "toyota" AND driver = "mike skinner" ### context: CREATE TABLE table_name_1 (team VARCHAR, driver VARCHAR, car__number VARCHAR, make VARCHAR) |
### question: What is the lowest position for driver Kyle Busch? ### answer: SELECT MIN(pos) FROM table_name_94 WHERE driver = "kyle busch" ### context: CREATE TABLE table_name_94 (pos INTEGER, driver VARCHAR) |
### question: Who is the team of the Chevrolet, and has a position less than 7, for car # 88? ### answer: SELECT team FROM table_name_90 WHERE make = "chevrolet" AND pos < 7 AND car__number = 88 ### context: CREATE TABLE table_name_90 (team VARCHAR, car__number VARCHAR, make VARCHAR, pos VARCHAR) |
### question: Which Film has a Result of nominated, and a Year of 2001? ### answer: SELECT film FROM table_name_67 WHERE result = "nominated" AND year = 2001 ### context: CREATE TABLE table_name_67 (film VARCHAR, result VARCHAR, year VARCHAR) |
### question: Which Award has a Group of césar awards, and a Result of nominated, and a Year larger than 2001, and a Film of 8 women (8 femmes)? ### answer: SELECT award FROM table_name_39 WHERE group = "césar awards" AND result = "nominated" AND year > 2001 AND film = "8 women (8 femmes)" ### context: CREATE TABLE tab... |
### question: Which Year has a Group of césar awards, and a Result of nominated, and an Award of the best actress, and a Film of 8 women (8 femmes)? ### answer: SELECT AVG(year) FROM table_name_41 WHERE group = "césar awards" AND result = "nominated" AND award = "best actress" AND film = "8 women (8 femmes)" ### contex... |
### question: Which Award has a Result of nominated, and a Year of 2003? ### answer: SELECT award FROM table_name_85 WHERE result = "nominated" AND year = 2003 ### context: CREATE TABLE table_name_85 (award VARCHAR, result VARCHAR, year VARCHAR) |
### question: Which Result has a Year larger than 2003, and an Award of best supporting actress? ### answer: SELECT result FROM table_name_32 WHERE year > 2003 AND award = "best supporting actress" ### context: CREATE TABLE table_name_32 (result VARCHAR, year VARCHAR, award VARCHAR) |
### question: Name the total number of valid poll with seats more than 4 and candidates more than 9 ### answer: SELECT COUNT(valid_poll) FROM table_name_67 WHERE seats > 4 AND candidates > 9 ### context: CREATE TABLE table_name_67 (valid_poll VARCHAR, seats VARCHAR, candidates VARCHAR) |
### question: Name the least valid poll for munster ### answer: SELECT MIN(valid_poll) FROM table_name_50 WHERE constituency = "munster" ### context: CREATE TABLE table_name_50 (valid_poll INTEGER, constituency VARCHAR) |
### question: Name the average valid poll for seats less than 3 ### answer: SELECT AVG(valid_poll) FROM table_name_45 WHERE seats < 3 ### context: CREATE TABLE table_name_45 (valid_poll INTEGER, seats INTEGER) |
### question: Which Label has a Region of canada? ### answer: SELECT label FROM table_name_12 WHERE region = "canada" ### context: CREATE TABLE table_name_12 (label VARCHAR, region VARCHAR) |
### question: Which Date has a Catalog of 887 195-2, and a Format of cd maxi? ### answer: SELECT date FROM table_name_63 WHERE catalog = "887 195-2" AND format = "cd maxi" ### context: CREATE TABLE table_name_63 (date VARCHAR, catalog VARCHAR, format VARCHAR) |
### question: Which Date has a Region of france? ### answer: SELECT date FROM table_name_90 WHERE region = "france" ### context: CREATE TABLE table_name_90 (date VARCHAR, region VARCHAR) |
### question: Which Time has an Opponent of shamil abdurahimov? ### answer: SELECT time FROM table_name_39 WHERE opponent = "shamil abdurahimov" ### context: CREATE TABLE table_name_39 (time VARCHAR, opponent VARCHAR) |
### question: Which Record has an Event of cage rage 23? ### answer: SELECT record FROM table_name_35 WHERE event = "cage rage 23" ### context: CREATE TABLE table_name_35 (record VARCHAR, event VARCHAR) |
### question: What was the average date with a record of 30-31-9 in a game over 70? ### answer: SELECT AVG(date) FROM table_name_29 WHERE record = "30-31-9" AND game > 70 ### context: CREATE TABLE table_name_29 (date INTEGER, record VARCHAR, game VARCHAR) |
### question: What is the latest date at Los Angeles with a game less than 62? ### answer: SELECT MAX(date) FROM table_name_88 WHERE location_attendance = "los angeles" AND game < 62 ### context: CREATE TABLE table_name_88 (date INTEGER, location_attendance VARCHAR, game VARCHAR) |
### question: What is the latest date for a game over 69 with a St. Louis Blues opponent? ### answer: SELECT MAX(date) FROM table_name_49 WHERE game > 69 AND opponent = "st. louis blues" ### context: CREATE TABLE table_name_49 (date INTEGER, game VARCHAR, opponent VARCHAR) |
### question: What is the highest game with Oakland Seals opponent and a record of 27-30-6 on a date more than 7? ### answer: SELECT MAX(game) FROM table_name_26 WHERE opponent = "oakland seals" AND record = "27-30-6" AND date > 7 ### context: CREATE TABLE table_name_26 (game INTEGER, date VARCHAR, opponent VARCHAR, re... |
### question: What is the total attendance for the date of october 5? ### answer: SELECT SUM(attendance) FROM table_name_3 WHERE date = "october 5" ### context: CREATE TABLE table_name_3 (attendance INTEGER, date VARCHAR) |
### question: What record has September 21 as the date? ### answer: SELECT record FROM table_name_59 WHERE date = "september 21" ### context: CREATE TABLE table_name_59 (record VARCHAR, date VARCHAR) |
### question: What was the score of the match on December 19, 2009? ### answer: SELECT score FROM table_name_63 WHERE date = "december 19, 2009" ### context: CREATE TABLE table_name_63 (score VARCHAR, date VARCHAR) |
### question: What's the highest game against the New York Rangers with more than 55 points? ### answer: SELECT MAX(game) FROM table_name_16 WHERE opponent = "new york rangers" AND points > 55 ### context: CREATE TABLE table_name_16 (game INTEGER, opponent VARCHAR, points VARCHAR) |
### question: What's the record for a game past 44 against the Dallas Stars with more than 54 points? ### answer: SELECT record FROM table_name_25 WHERE points > 54 AND game > 44 AND opponent = "dallas stars" ### context: CREATE TABLE table_name_25 (record VARCHAR, opponent VARCHAR, points VARCHAR, game VARCHAR) |
### question: What is the latest Fiscal Year with Revenues of $4.3 billion, and more than 85,335 employees? ### answer: SELECT MAX(fiscal_year) FROM table_name_95 WHERE revenues = "$4.3 billion" AND employees > 85 OFFSET 335 ### context: CREATE TABLE table_name_95 (fiscal_year INTEGER, revenues VARCHAR, employees VARCH... |
### question: What is the average Fiscal Year of the firm Headquartered in noida, with less than 85,335 employees? ### answer: SELECT AVG(fiscal_year) FROM table_name_55 WHERE headquarters = "noida" AND employees < 85 OFFSET 335 ### context: CREATE TABLE table_name_55 (fiscal_year INTEGER, headquarters VARCHAR, employe... |
### question: What are the Points after 1991? ### answer: SELECT COUNT(points) FROM table_name_49 WHERE year > 1991 ### context: CREATE TABLE table_name_49 (points VARCHAR, year INTEGER) |
### question: What Class has 36 Points? ### answer: SELECT class FROM table_name_68 WHERE points = 36 ### context: CREATE TABLE table_name_68 (class VARCHAR, points VARCHAR) |
### question: What is the Class after 1986? ### answer: SELECT class FROM table_name_13 WHERE year > 1986 ### context: CREATE TABLE table_name_13 (class VARCHAR, year INTEGER) |
### question: How many attendances had the Detroit Lions as opponents? ### answer: SELECT SUM(attendance) FROM table_name_11 WHERE opponent = "detroit lions" ### context: CREATE TABLE table_name_11 (attendance INTEGER, opponent VARCHAR) |
### question: Which nationality's distance was 500m before 2012, when the record was 1:37.071s? ### answer: SELECT nationality FROM table_name_26 WHERE distance = "500m" AND year < 2012 AND record = "1:37.071s" ### context: CREATE TABLE table_name_26 (nationality VARCHAR, record VARCHAR, distance VARCHAR, year VARCHAR) |
### question: Which location's year was 2001 when the record was 3:52.983s? ### answer: SELECT location FROM table_name_33 WHERE year = 2001 AND record = "3:52.983s" ### context: CREATE TABLE table_name_33 (location VARCHAR, year VARCHAR, record VARCHAR) |
### question: Which nationality's distance was 200m and had a year more recent than 1994 when the record was 33.778s? ### answer: SELECT nationality FROM table_name_10 WHERE distance = "200m" AND year > 1994 AND record = "33.778s" ### context: CREATE TABLE table_name_10 (nationality VARCHAR, record VARCHAR, distance VA... |
### question: How many Total medals for the team with a Rank of 8, 1 Bronze and more than 1 Silver? ### answer: SELECT MIN(total) FROM table_name_71 WHERE bronze = 1 AND rank = "8" AND silver > 1 ### context: CREATE TABLE table_name_71 (total INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.