answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT AVG(route) FROM table_name_12 WHERE elevation = "12,183 feet 3713 m"
CREATE TABLE table_name_12 (route INTEGER, elevation VARCHAR)
Elevation of 12,183 feet 3713 m is what average route?
SELECT opponent FROM table_name_28 WHERE results¹ = "1:3"
CREATE TABLE table_name_28 (opponent VARCHAR, results¹ VARCHAR)
What Opponent has a Results¹ of 1:3?
SELECT date FROM table_name_76 WHERE results¹ = "1:2"
CREATE TABLE table_name_76 (date VARCHAR, results¹ VARCHAR)
On what Date was the Results¹ 1:2?
SELECT city FROM table_name_39 WHERE results¹ = "1:2"
CREATE TABLE table_name_39 (city VARCHAR, results¹ VARCHAR)
What City had Results¹ of 1:2?
SELECT date FROM table_name_76 WHERE opponent = "wales"
CREATE TABLE table_name_76 (date VARCHAR, opponent VARCHAR)
On what Date was Wales the Opponent?
SELECT city FROM table_name_6 WHERE results¹ = "1:0" AND opponent = "bulgaria"
CREATE TABLE table_name_6 (city VARCHAR, results¹ VARCHAR, opponent VARCHAR)
In what City was Bulgaria the Opponent with Results¹ of 1:0?
SELECT MAX(game) FROM table_name_60 WHERE opponent = "vancouver canucks" AND november < 4
CREATE TABLE table_name_60 (game INTEGER, opponent VARCHAR, november VARCHAR)
What Vancouver canucks game was on a date closest to November 4?
SELECT year FROM table_name_26 WHERE color_commentator_s_ = "jerry sichting"
CREATE TABLE table_name_26 (year VARCHAR, color_commentator_s_ VARCHAR)
Name the year for jerry sichting
SELECT studio_host FROM table_name_91 WHERE play_by_play = "glenn ordway" AND color_commentator_s_ = "jerry sichting" AND year = "1993-94"
CREATE TABLE table_name_91 (studio_host VARCHAR, year VARCHAR, play_by_play VARCHAR, color_commentator_s_ VARCHAR)
Name the studio host for glenn ordway and jerry sichting with year of 1993-94
SELECT flagship_station FROM table_name_74 WHERE color_commentator_s_ = "cedric maxwell" AND year = "1995-96"
CREATE TABLE table_name_74 (flagship_station VARCHAR, color_commentator_s_ VARCHAR, year VARCHAR)
Name the flagship station for cedric maxwell and year of 1995-96
SELECT architect FROM table_name_68 WHERE height_[m] = 42 AND floors = 10
CREATE TABLE table_name_68 (architect VARCHAR, floors VARCHAR, height_ VARCHAR, m VARCHAR)
Who was the architect of the 10 floor building with a height of 42 M?
SELECT height_[m] FROM table_name_27 WHERE architect = "ross and macfarlane"
CREATE TABLE table_name_27 (height_ VARCHAR, m VARCHAR, architect VARCHAR)
What is the height of the building built by architects Ross and Macfarlane?
SELECT architect FROM table_name_43 WHERE built < 1915 AND building = "electric railway chambers"
CREATE TABLE table_name_43 (architect VARCHAR, built VARCHAR, building VARCHAR)
Who was the architect that built the Electric Railway Chambers before 1915?
SELECT time FROM table_name_34 WHERE date = "july 18" AND loss = "lilly (3-3)"
CREATE TABLE table_name_34 (time VARCHAR, date VARCHAR, loss VARCHAR)
What is the Time on july 18 that has a Loss of lilly (3-3)?
SELECT opponent FROM table_name_75 WHERE record = "43-56"
CREATE TABLE table_name_75 (opponent VARCHAR, record VARCHAR)
Which Opponent has a Record of 43-56?
SELECT score FROM table_name_71 WHERE date = "july 18" AND record = "41-51"
CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR, record VARCHAR)
What is the Score on July 18 that has Record of 41-51?
SELECT record FROM table_name_23 WHERE date = "july 31"
CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR)
Which Record is on july 31?
SELECT opponent FROM table_name_18 WHERE loss = "weaver (9-9)"
CREATE TABLE table_name_18 (opponent VARCHAR, loss VARCHAR)
Which Opponent has a Loss of weaver (9-9)?
SELECT season FROM table_name_27 WHERE poles > 14
CREATE TABLE table_name_27 (season VARCHAR, poles INTEGER)
Which Season was the Poles greater than 14?
SELECT MAX(season) FROM table_name_7 WHERE percentage = "67%" AND driver = "alberto ascari"
CREATE TABLE table_name_7 (season INTEGER, percentage VARCHAR, driver VARCHAR)
Which is the highest Season with a Percentage of 67% and Alberto Ascari as a Driver?
SELECT driver FROM table_name_16 WHERE races > 16
CREATE TABLE table_name_16 (driver VARCHAR, races INTEGER)
Name the Driver that has Races greater than 16?
SELECT AVG(long) FROM table_name_34 WHERE gp_gs < 14 AND avg_g < 0.8 AND gain < 3 AND loss > 8
CREATE TABLE table_name_34 (long INTEGER, loss VARCHAR, gain VARCHAR, gp_gs VARCHAR, avg_g VARCHAR)
What is the average Long that has a GP-GS less than 14, a AVg/G less than 0.8 and a Gain less than 3 and a Loss greater than 8?
SELECT MIN(avg_g) FROM table_name_99 WHERE long < 0
CREATE TABLE table_name_99 (avg_g INTEGER, long INTEGER)
What is the lowest Avg/G with a Long less than 0?
SELECT SUM(avg_g) FROM table_name_79 WHERE name = "blaine gabbert" AND long > 30
CREATE TABLE table_name_79 (avg_g INTEGER, name VARCHAR, long VARCHAR)
What is the amount of Avg/G with a Name of blaine gabbert and a Long greater than 30?
SELECT COUNT(long) FROM table_name_3 WHERE loss > 0 AND avg_g = 124.9
CREATE TABLE table_name_3 (long VARCHAR, loss VARCHAR, avg_g VARCHAR)
What is the total number of Long with a Av/g of 124.9 but Loss greater than 0?
SELECT date FROM table_name_17 WHERE label = "parlophone" AND format = "lp"
CREATE TABLE table_name_17 (date VARCHAR, label VARCHAR, format VARCHAR)
What date has parlophone as the label, and lp as a format?
SELECT school FROM table_name_37 WHERE state = "oregon" AND city = "ashland"
CREATE TABLE table_name_37 (school VARCHAR, state VARCHAR, city VARCHAR)
What school has oregon as the state, and ashland as the city?
SELECT conference FROM table_name_71 WHERE school = "mayville state"
CREATE TABLE table_name_71 (conference VARCHAR, school VARCHAR)
What conference has mayville state as the school?
SELECT school FROM table_name_37 WHERE city = "belleville"
CREATE TABLE table_name_37 (school VARCHAR, city VARCHAR)
What school has belleville as the city?
SELECT city FROM table_name_43 WHERE team = "trojans" AND school = "taylor"
CREATE TABLE table_name_43 (city VARCHAR, team VARCHAR, school VARCHAR)
What city has trojans as the team, and taylor as the school?
SELECT team FROM table_name_58 WHERE conference = "great plains" AND school = "concordia (ne)"
CREATE TABLE table_name_58 (team VARCHAR, conference VARCHAR, school VARCHAR)
What team has great plains as the conference, and concordia (ne) as the school?
SELECT school FROM table_name_53 WHERE city = "hillsboro"
CREATE TABLE table_name_53 (school VARCHAR, city VARCHAR)
What school is in hillsboro city?
SELECT COUNT(game) FROM table_name_92 WHERE february > 11 AND record = "23-7-8"
CREATE TABLE table_name_92 (game VARCHAR, february VARCHAR, record VARCHAR)
How many games have a February larger than 11, and a Record of 23-7-8?
SELECT COUNT(february) FROM table_name_95 WHERE game > 37 AND opponent = "chicago black hawks"
CREATE TABLE table_name_95 (february VARCHAR, game VARCHAR, opponent VARCHAR)
How much February has a Game larger than 37, and an Opponent of chicago black hawks?
SELECT february FROM table_name_91 WHERE game = 40
CREATE TABLE table_name_91 (february VARCHAR, game VARCHAR)
Which February has a Game of 40?
SELECT record FROM table_name_51 WHERE february < 8 AND opponent = "montreal canadiens"
CREATE TABLE table_name_51 (record VARCHAR, february VARCHAR, opponent VARCHAR)
Which Record has a February smaller than 8, and an Opponent of montreal canadiens?
SELECT score FROM table_name_81 WHERE game > 40 AND record = "25-10-8"
CREATE TABLE table_name_81 (score VARCHAR, game VARCHAR, record VARCHAR)
Which Score has a Game larger than 40, and a Record of 25-10-8?
SELECT team_performance FROM table_name_28 WHERE year = 1977
CREATE TABLE table_name_28 (team_performance VARCHAR, year VARCHAR)
What was the team performance in 1977?
SELECT position FROM table_name_47 WHERE team_defense_rank > 3 AND year < 1992 AND team_performance = "lost super bowl xxv"
CREATE TABLE table_name_47 (position VARCHAR, team_performance VARCHAR, team_defense_rank VARCHAR, year VARCHAR)
What was the position of the player whose team lost super bowl xxv before 1992, with a team defense rank larger than 3?
SELECT round FROM table_name_94 WHERE pick > 68 AND player = "joe patton"
CREATE TABLE table_name_94 (round VARCHAR, pick VARCHAR, player VARCHAR)
What round was Joe Patton selected with a pick over 68?
SELECT sail_number FROM table_name_47 WHERE position < 2
CREATE TABLE table_name_47 (sail_number VARCHAR, position INTEGER)
Which Sail number has a Position smaller than 2?
SELECT state_country FROM table_name_43 WHERE skipper = "ray roberts"
CREATE TABLE table_name_43 (state_country VARCHAR, skipper VARCHAR)
WHICH State/country that has ray roberts?
SELECT surface FROM table_name_30 WHERE tournament = "kuwait"
CREATE TABLE table_name_30 (surface VARCHAR, tournament VARCHAR)
What surface did Smeets play on during the Kuwait tournament?
SELECT tournament FROM table_name_11 WHERE opponent_in_the_final = "mark nielsen"
CREATE TABLE table_name_11 (tournament VARCHAR, opponent_in_the_final VARCHAR)
What tournament did Smeets play against Mark nielsen?
SELECT opponent_in_the_final FROM table_name_91 WHERE tournament = "kuwait"
CREATE TABLE table_name_91 (opponent_in_the_final VARCHAR, tournament VARCHAR)
Who was the opponent during the tournament in Kuwait?
SELECT weight FROM table_name_42 WHERE club = "vk primorac kotor"
CREATE TABLE table_name_42 (weight VARCHAR, club VARCHAR)
What is the weight of the player from the vk primorac kotor club?
SELECT weight FROM table_name_96 WHERE club = "pvk jadran"
CREATE TABLE table_name_96 (weight VARCHAR, club VARCHAR)
What is the weight of the player from pvk jadran club?
SELECT name_v_t_e FROM table_name_87 WHERE club = "pro recco"
CREATE TABLE table_name_87 (name_v_t_e VARCHAR, club VARCHAR)
What is the name of the player from club pro recco?
SELECT height FROM table_name_96 WHERE pos = "gk" AND club = "vk primorac kotor"
CREATE TABLE table_name_96 (height VARCHAR, pos VARCHAR, club VARCHAR)
What is the height of the player from club vk primorac kotor who plays gk?
SELECT team_1 FROM table_name_23 WHERE team_2 = "gombe united f.c."
CREATE TABLE table_name_23 (team_1 VARCHAR, team_2 VARCHAR)
What is Team 1 where Team 2 is gombe united f.c.?
SELECT team_1 FROM table_name_13 WHERE team_2 = "al tahrir"
CREATE TABLE table_name_13 (team_1 VARCHAR, team_2 VARCHAR)
What is Team 1 where Team 2 is al tahrir?
SELECT 2 AS nd_leg FROM table_name_9 WHERE team_2 = "fc 105 libreville"
CREATE TABLE table_name_9 (team_2 VARCHAR)
What is the 2nd leg where Team 2 is fc 105 libreville?
SELECT course FROM table_name_68 WHERE edition = "117th"
CREATE TABLE table_name_68 (course VARCHAR, edition VARCHAR)
What was the course called that had an Edition of 117th?
SELECT MIN(year) FROM table_name_78 WHERE location = "brookline, massachusetts"
CREATE TABLE table_name_78 (year INTEGER, location VARCHAR)
What was the earliest year that had a location of Brookline, Massachusetts?
SELECT AVG(year) FROM table_name_21 WHERE edition = "115th"
CREATE TABLE table_name_21 (year INTEGER, edition VARCHAR)
What year had an edition of 115th?
SELECT COUNT(points) FROM table_name_73 WHERE class = "350cc" AND rank = "5th"
CREATE TABLE table_name_73 (points VARCHAR, class VARCHAR, rank VARCHAR)
How many points did ginger have when she was ranked 5th on a 350cc class bike?
SELECT COUNT(year) FROM table_name_29 WHERE rank = "16th" AND points > 12
CREATE TABLE table_name_29 (year VARCHAR, rank VARCHAR, points VARCHAR)
What year was she ranked 16th with over 12 points?
SELECT SUM(year) FROM table_name_85 WHERE class = "350cc" AND rank = "16th" AND wins > 0
CREATE TABLE table_name_85 (year INTEGER, wins VARCHAR, class VARCHAR, rank VARCHAR)
What year was she on a 350cc class bike, ranked 16th, with over 0 wins?
SELECT SUM(points) FROM table_name_40 WHERE team = "bultaco" AND rank = "6th"
CREATE TABLE table_name_40 (points INTEGER, team VARCHAR, rank VARCHAR)
How many points did she have with team bultaco, ranked 6th?
SELECT kashmiri FROM table_name_90 WHERE indonesian = "senin"
CREATE TABLE table_name_90 (kashmiri VARCHAR, indonesian VARCHAR)
What is the Kashmiri word for the Indonesian word senin?
SELECT turkish FROM table_name_51 WHERE bangla = "shombar সোমবার"
CREATE TABLE table_name_51 (turkish VARCHAR, bangla VARCHAR)
What is the Turkish word for the Bangla word shombar সোমবার?
SELECT pashto FROM table_name_24 WHERE somali = "talaado"
CREATE TABLE table_name_24 (pashto VARCHAR, somali VARCHAR)
What is the Pashto word for the Somali word talaado?
SELECT punjabi__pakistan_ FROM table_name_58 WHERE kurdish = "یـــەک شـەمـمـە yak sham"
CREATE TABLE table_name_58 (punjabi__pakistan_ VARCHAR, kurdish VARCHAR)
What is the Punjabi (Pakistan) word for the Kurdish word یـــەک شـەمـمـە yak sham?
SELECT maltese FROM table_name_6 WHERE malay = "rabu"
CREATE TABLE table_name_6 (maltese VARCHAR, malay VARCHAR)
What is the Maltese word for the Malay word rabu?
SELECT pashto FROM table_name_76 WHERE malayalam = "വ്യാഴം vyazham"
CREATE TABLE table_name_76 (pashto VARCHAR, malayalam VARCHAR)
What is the Pashto word for the Malayalam word വ്യാഴം vyazham?
SELECT score FROM table_name_80 WHERE date = "june 22"
CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR)
Which Score has a Date of june 22?
SELECT SUM(attendance) FROM table_name_34 WHERE opponent = "rockies" AND record = "32-30"
CREATE TABLE table_name_34 (attendance INTEGER, opponent VARCHAR, record VARCHAR)
How much Attendance has an Opponent of rockies, and a Record of 32-30?
SELECT opponent FROM table_name_71 WHERE round = 2
CREATE TABLE table_name_71 (opponent VARCHAR, round VARCHAR)
Who was the opponent in which the bout ended in round 2?
SELECT method FROM table_name_82 WHERE time = "4:15"
CREATE TABLE table_name_82 (method VARCHAR, time VARCHAR)
What was the method of the bout lasting 4:15?
SELECT record FROM table_name_57 WHERE time = "4:15"
CREATE TABLE table_name_57 (record VARCHAR, time VARCHAR)
What was the record after the bout lasting 4:15?
SELECT COUNT(pick) FROM table_name_64 WHERE round < 13 AND position = "fullback"
CREATE TABLE table_name_64 (pick VARCHAR, round VARCHAR, position VARCHAR)
How many Pick has a Round smaller than 13, and a Position of fullback?
SELECT player FROM table_name_22 WHERE position = "end" AND school_club_team = "oregon state"
CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)
WHo has a Position of end and a School/Club Team of oregon state?
SELECT MIN(round) FROM table_name_38 WHERE player = "brunel christensen" AND pick < 293
CREATE TABLE table_name_38 (round INTEGER, player VARCHAR, pick VARCHAR)
Which Round has a Player of brunel christensen and a Pick smaller than 293?
SELECT score FROM table_name_26 WHERE date = "july 25"
CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR)
What score was on July 25?
SELECT rules FROM table_name_2 WHERE event = "n/a" AND result = "loss" AND location = "winsford england"
CREATE TABLE table_name_2 (rules VARCHAR, location VARCHAR, event VARCHAR, result VARCHAR)
Which rule has The Event of n/a, The Result of loss, and The Location of winsford england?
SELECT opponent FROM table_name_16 WHERE round = "4" AND rules = "thai boxing"
CREATE TABLE table_name_16 (opponent VARCHAR, round VARCHAR, rules VARCHAR)
Which Opponent has a Round of 4, and a Rules of thai boxing?
SELECT opponent FROM table_name_38 WHERE round = "3" AND time = "n/a" AND rules = "n/a"
CREATE TABLE table_name_38 (opponent VARCHAR, rules VARCHAR, round VARCHAR, time VARCHAR)
Which Opponent has a Round of 3, a Time of n/a, and a Rules of n/a?
SELECT location FROM table_name_99 WHERE rules = "thai boxing" AND round = "n/a" AND opponent = "everton crawford"
CREATE TABLE table_name_99 (location VARCHAR, opponent VARCHAR, rules VARCHAR, round VARCHAR)
Where has a Rules of thai boxing, and a Round of n/a, and an Opponent of everton crawford?
SELECT rules FROM table_name_26 WHERE method = "ko (punch)"
CREATE TABLE table_name_26 (rules VARCHAR, method VARCHAR)
WHich Rules has a Method of ko (punch)?
SELECT torque FROM table_name_63 WHERE capacity = "1905 cc"
CREATE TABLE table_name_63 (torque VARCHAR, capacity VARCHAR)
What torque does a 1905 cc capacity have?
SELECT torque FROM table_name_30 WHERE name = "1.9 diesel" AND capacity = "1905 cc"
CREATE TABLE table_name_30 (torque VARCHAR, name VARCHAR, capacity VARCHAR)
What torque does 1.9 diesel with 1905 cc have?
SELECT torque FROM table_name_18 WHERE type = "daewoo"
CREATE TABLE table_name_18 (torque VARCHAR, type VARCHAR)
What torque does daewoo have?
SELECT date FROM table_name_39 WHERE score = "3–4" AND attendance > 34 OFFSET 609
CREATE TABLE table_name_39 (date VARCHAR, score VARCHAR, attendance VARCHAR)
Score of 3–4, and a Attendance larger than 34,609 happened on what date?
SELECT date FROM table_name_85 WHERE record = "12–15"
CREATE TABLE table_name_85 (date VARCHAR, record VARCHAR)
Record of 12–15 happened on what date?
SELECT score FROM table_name_11 WHERE date = "april 9"
CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR)
Date of april 9 had what score?
SELECT AVG(attendance) FROM table_name_10 WHERE record = "11–12"
CREATE TABLE table_name_10 (attendance INTEGER, record VARCHAR)
Record of 11–12 involved what average attendance figures?
SELECT predecessor FROM table_name_54 WHERE district < 11 AND congress = "68th" AND date = "may 1, 1923"
CREATE TABLE table_name_54 (predecessor VARCHAR, date VARCHAR, district VARCHAR, congress VARCHAR)
What predecessor has a district less than 11, 68th as the Congress, and may 1, 1923 as the date?
SELECT hypertransport_version FROM table_name_51 WHERE max_aggregate_bandwidth__bi_directional_ = "22.4 gb/s"
CREATE TABLE table_name_51 (hypertransport_version VARCHAR, max_aggregate_bandwidth__bi_directional_ VARCHAR)
What Hyper Transport version has 22.4 gb/s of Max. Aggregate bandwidth?
SELECT max_aggregate_bandwidth__bi_directional_ FROM table_name_17 WHERE hypertransport_version = 2
CREATE TABLE table_name_17 (max_aggregate_bandwidth__bi_directional_ VARCHAR, hypertransport_version VARCHAR)
What is the Max Aggregate bandwidth with a HyperTransport of 2?
SELECT opponent FROM table_name_80 WHERE city = "zagreb"
CREATE TABLE table_name_80 (opponent VARCHAR, city VARCHAR)
Who was the opposing team during the game in Zagreb?
SELECT score FROM table_name_52 WHERE record = "35-31"
CREATE TABLE table_name_52 (score VARCHAR, record VARCHAR)
The record of 35-31 has what score?
SELECT manufacturer FROM table_name_69 WHERE laps = 1 AND time_retired = "accident"
CREATE TABLE table_name_69 (manufacturer VARCHAR, laps VARCHAR, time_retired VARCHAR)
Which Manufacturer has 1 lap and had an accident?
SELECT rider FROM table_name_23 WHERE manufacturer = "honda" AND time_retired = "+44.814"
CREATE TABLE table_name_23 (rider VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)
Which rider has a Manufacturer of honda with a time of +44.814?
SELECT COUNT(grid) FROM table_name_39 WHERE time_retired = "+1:21.239" AND laps > 25
CREATE TABLE table_name_39 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)
How many grids have a time of +1:21.239 and more than 25 laps?
SELECT AVG(episode) FROM table_name_29 WHERE performer_1 = "jim sweeney" AND date = "19 march 1993"
CREATE TABLE table_name_29 (episode INTEGER, performer_1 VARCHAR, date VARCHAR)
What is the average episode number on 19 March 1993 with Jim Sweeney as performer 1?
SELECT performer_2 FROM table_name_83 WHERE performer_4 = "josie lawrence" AND date = "9 april 1993"
CREATE TABLE table_name_83 (performer_2 VARCHAR, performer_4 VARCHAR, date VARCHAR)
Who is performer 2 of the episode on 9 April 1993 with Josie Lawrence as performer 4?
SELECT date FROM table_name_26 WHERE performer_2 = "ryan stiles" AND performer_3 = "colin mochrie" AND performer_4 = "tony slattery"
CREATE TABLE table_name_26 (date VARCHAR, performer_4 VARCHAR, performer_2 VARCHAR, performer_3 VARCHAR)
What is the date of the episode with Ryan Stiles as performer 2, Colin Mochrie as performer 3, and Tony Slattery as performer 4?
SELECT performer_4 FROM table_name_86 WHERE performer_1 = "jim sweeney" AND episode = 3
CREATE TABLE table_name_86 (performer_4 VARCHAR, performer_1 VARCHAR, episode VARCHAR)
Who is performer 4 on episode 3, where Jim Sweeney was performer 1?
SELECT SUM(episode) FROM table_name_25 WHERE performer_1 = "jim sweeney" AND performer_4 = "mike mcshane"
CREATE TABLE table_name_25 (episode INTEGER, performer_1 VARCHAR, performer_4 VARCHAR)
What is the episode number where Jim Sweeney was performer 1 and Mike Mcshane was performer 4?
SELECT wrestler FROM table_name_23 WHERE entered = 5 AND pinned = "mvp"
CREATE TABLE table_name_23 (wrestler VARCHAR, entered VARCHAR, pinned VARCHAR)
Which Wrestler has an Entered of 5, and a Pinned of mvp?