answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT high_points FROM table_15780049_5 WHERE team = "Washington"
Who scored the most points against Washington?
CREATE TABLE table_15780049_5 (high_points VARCHAR, team VARCHAR)
SELECT score FROM table_11964263_13 WHERE date = "April 29"
What is the score for april 29?
CREATE TABLE table_11964263_13 (score VARCHAR, date VARCHAR)
SELECT MAX(attendance) FROM table_name_99 WHERE week = 12
What is the Attendance of the game in Week 12?
CREATE TABLE table_name_99 (attendance INTEGER, week VARCHAR)
SELECT prize FROM table_name_56 WHERE season = "2"
What is Prize, when Season is "2"?
CREATE TABLE table_name_56 (prize VARCHAR, season VARCHAR)
SELECT label FROM table_name_2 WHERE catalog = "chem036cd"
What label has a catalog of chem036cd?
CREATE TABLE table_name_2 (label VARCHAR, catalog VARCHAR)
SELECT cdt___5_utc_ FROM table_name_71 WHERE edt___4_utc_ = "4:55 a.m."
What time is CDT when EDT is 4:55 a.m.?
CREATE TABLE table_name_71 (cdt___5_utc_ VARCHAR, edt___4_utc_ VARCHAR)
SELECT f_laps FROM table_24587026_1 WHERE series = "GP2 series"
Name the f/laps for gp2 series
CREATE TABLE table_24587026_1 (f_laps VARCHAR, series VARCHAR)
SELECT title FROM table_name_96 WHERE imprint = "dengeki bunko" AND artist = "kiyotaka haimura"
what is the title when the imprint is dengeki bunko and the artist is kiyotaka haimura?
CREATE TABLE table_name_96 (title VARCHAR, imprint VARCHAR, artist VARCHAR)
SELECT chassis FROM table_name_76 WHERE team = "bms scuderia italia" AND tyres = "g" AND engine = "ferrari 037 3.5 v12"
What Chassis did Team BMS Scuderia Italia use with G Tyres and a Ferrari 037 3.5 v12 engine?
CREATE TABLE table_name_76 (chassis VARCHAR, engine VARCHAR, team VARCHAR, tyres VARCHAR)
SELECT date FROM table_23286158_7 WHERE team = "Cleveland"
When did the Portland Trail Blazers play against Cleveland?
CREATE TABLE table_23286158_7 (date VARCHAR, team VARCHAR)
SELECT date FROM table_name_10 WHERE circuit = "milwaukee mile" AND sanctioning = "cart"
What is the date for the race that has a circuit of Milwaukee Mile and the sanctioning of cart?
CREATE TABLE table_name_10 (date VARCHAR, circuit VARCHAR, sanctioning VARCHAR)
SELECT career_games FROM table_name_58 WHERE date_and_opponent = "12/15/92 vs. uw–milwaukee"
Which Career Games has a Date and Opponent of 12/15/92 vs. uw–milwaukee?
CREATE TABLE table_name_58 (career_games VARCHAR, date_and_opponent VARCHAR)
SELECT MAX(max_characters__per_page_row_) FROM table_1926240_1 WHERE bit_rate_[_mbit_s_] = "6.203"
What was the max character (per page row) of the encoding with a bit rate of 6.203?
CREATE TABLE table_1926240_1 (max_characters__per_page_row_ INTEGER, bit_rate_ VARCHAR, _mbit_s_ VARCHAR)
SELECT 2013 FROM table_name_87 WHERE 2001 = "wta premier 5 tournaments"
I want to know the 2013 when 2001 was wta premier 5 tournaments
CREATE TABLE table_name_87 (Id VARCHAR)
SELECT COUNT(location_attendance) FROM table_23284271_9 WHERE record = "45-22"
List the stadium and number of people in attendance when the team record was 45-22.
CREATE TABLE table_23284271_9 (location_attendance VARCHAR, record VARCHAR)
SELECT MIN(wins) FROM table_name_78 WHERE position = 7 AND scored > 14
What was the lowest number of wins for the team that scored more than 14 points and had a position of 7?
CREATE TABLE table_name_78 (wins INTEGER, position VARCHAR, scored VARCHAR)
SELECT home_team FROM table_name_54 WHERE away_team = "footscray"
Who was Footscray's opponent on June 15th of 1968?
CREATE TABLE table_name_54 (home_team VARCHAR, away_team VARCHAR)
SELECT former_school FROM table_29418619_1 WHERE hometown = "North Port, FL"
What is the former school of the player from North Port, FL?
CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown VARCHAR)
SELECT safari FROM table_name_58 WHERE period = "2012 q4"
What safari has 2012 q4 as the period?
CREATE TABLE table_name_58 (safari VARCHAR, period VARCHAR)
SELECT league FROM table_11044765_1 WHERE mascot = "Raiders"
Which leagues have Raiders as their mascot?
CREATE TABLE table_11044765_1 (league VARCHAR, mascot VARCHAR)
SELECT COUNT(overall) FROM table_name_29 WHERE position = "e" AND name = "buddy payne" AND pick < 5
How many overalls have E as the position, buddy payne as the name, and a pick less than 5?
CREATE TABLE table_name_29 (overall VARCHAR, pick VARCHAR, position VARCHAR, name VARCHAR)
SELECT SUM(withdrawn) FROM table_name_43 WHERE type = "4-6-4t"
With a Type of 4-6-4t, what is the sum Withdrawn?
CREATE TABLE table_name_43 (withdrawn INTEGER, type VARCHAR)
SELECT regional_county_municipality__rcm_ FROM table_214920_1 WHERE density__pop_per_km2_ = "9.7"
What is the RCM that has a density of 9.7?
CREATE TABLE table_214920_1 (regional_county_municipality__rcm_ VARCHAR, density__pop_per_km2_ VARCHAR)
SELECT COUNT(*), T3.product_id FROM orders AS T1 JOIN order_items AS T2 JOIN products AS T3 ON T1.order_id = T2.order_id AND T2.product_id = T3.product_id GROUP BY T3.product_id
List the count and id of each product in all the orders.
CREATE TABLE orders (order_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE products (product_id VARCHAR)
SELECT position_in_1999 FROM table_name_71 WHERE venue = "central, gomel"
What is the position of the team that played at the venue, Central, Gomel?
CREATE TABLE table_name_71 (position_in_1999 VARCHAR, venue VARCHAR)
SELECT Issue_Date FROM volume ORDER BY Weeks_on_Top LIMIT 1
What is the issue date of the volume with the minimum weeks on top?
CREATE TABLE volume (Issue_Date VARCHAR, Weeks_on_Top VARCHAR)
SELECT MIN(height__m_) FROM table_name_37 WHERE class = "hewitt" AND prom__m_ < 148
Tell me the lowest height for class of hewitt and prom less than 148
CREATE TABLE table_name_37 (height__m_ INTEGER, class VARCHAR, prom__m_ VARCHAR)
SELECT record FROM table_name_55 WHERE opponent = "vs. hamilton tiger cats"
Can you tell me the Record that has the Opponent of vs. hamilton tiger cats?
CREATE TABLE table_name_55 (record VARCHAR, opponent VARCHAR)
SELECT MIN(lost) FROM table_name_85 WHERE team = "paulistano" AND points > 39
What is the fewest games lost by Paulistano with more than 39 points?
CREATE TABLE table_name_85 (lost INTEGER, team VARCHAR, points VARCHAR)
SELECT admits_boys_girls FROM table_104858_1 WHERE country = "Venezuela"
Does Venezuela admit only boys, only girls, or both?
CREATE TABLE table_104858_1 (admits_boys_girls VARCHAR, country VARCHAR)
SELECT margin FROM table_name_33 WHERE dist__f_ > 10 AND race = "king george vi & queen elizabeth stakes"
Which Margin has a Dist (f) larger than 10, and a Race of king george vi & queen elizabeth stakes?
CREATE TABLE table_name_33 (margin VARCHAR, dist__f_ VARCHAR, race VARCHAR)
SELECT location_attendance FROM table_name_38 WHERE series = "4-3"
what is the location attendance when the series is 4-3?
CREATE TABLE table_name_38 (location_attendance VARCHAR, series VARCHAR)
SELECT title FROM table_name_57 WHERE japan = "august 23, 2012"
Tell me the title for japan august 23, 2012
CREATE TABLE table_name_57 (title VARCHAR, japan VARCHAR)
SELECT venue FROM table_name_29 WHERE home_team = "collingwood"
Where was the game played where the home team was Collingwood?
CREATE TABLE table_name_29 (venue VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_38 WHERE opponent = "daniel gimeno-traver"
What is Score, when Opponent is "Daniel Gimeno-Traver"?
CREATE TABLE table_name_38 (score VARCHAR, opponent VARCHAR)
SELECT city FROM table_name_79 WHERE rank > 6 AND airport = "st. petersburg/clearwater (pie)"
What city is ranked greater than 6, and the airport is St. Petersburg/Clearwater (PIE)
CREATE TABLE table_name_79 (city VARCHAR, rank VARCHAR, airport VARCHAR)
SELECT fcc_info FROM table_name_17 WHERE call_sign = "w279at"
Name the FCC info for call sign of w279at
CREATE TABLE table_name_17 (fcc_info VARCHAR, call_sign VARCHAR)
SELECT played FROM table_name_4 WHERE lost > 2 AND team = "américa"
Which Played has a Lost larger than 2, and a Team of américa?
CREATE TABLE table_name_4 (played VARCHAR, lost VARCHAR, team VARCHAR)
SELECT MIN(population) FROM table_name_19 WHERE code > 90902 AND area__km_2__ < 1 OFFSET 335.47
What's the population with a code more than 90902 and an area less than 1,335.47?
CREATE TABLE table_name_19 (population INTEGER, code VARCHAR, area__km_2__ VARCHAR)
SELECT home FROM table_name_5 WHERE aggregate = "2-3"
Tell me the home of 2-3
CREATE TABLE table_name_5 (home VARCHAR, aggregate VARCHAR)
SELECT position_in_table FROM table_18788823_5 WHERE date_of_vacancy = "16 February 2009"
Which vacancy occurred on 16 February 2009?
CREATE TABLE table_18788823_5 (position_in_table VARCHAR, date_of_vacancy VARCHAR)
SELECT MAX(laps) FROM table_name_67 WHERE rider = "marco melandri"
What are the highest laps for Marco Melandri?
CREATE TABLE table_name_67 (laps INTEGER, rider VARCHAR)
SELECT MAX(_number) FROM table_2345558_1 WHERE us_viewers__millions_ = "1.370"
What is the number of the episode seen by 1.370 million people in the US?
CREATE TABLE table_2345558_1 (_number INTEGER, us_viewers__millions_ VARCHAR)
SELECT player FROM table_name_7 WHERE to_par = "+5" AND country = "australia"
Who is the player from Australia with a to par of +5?
CREATE TABLE table_name_7 (player VARCHAR, to_par VARCHAR, country VARCHAR)
SELECT womens_singles FROM table_28138035_35 WHERE mens_singles = "Jean-Michel Saive"
Who won the Womens Singles in the year the Jean-Michel Saive won the Mens Singles?
CREATE TABLE table_28138035_35 (womens_singles VARCHAR, mens_singles VARCHAR)
SELECT SUM(goals) FROM table_name_63 WHERE position = "14th of 24" AND league = "football conference"
Goals that has a Position of 14th of 24, and a League of football conference has what sum?
CREATE TABLE table_name_63 (goals INTEGER, position VARCHAR, league VARCHAR)
SELECT others_percentage FROM table_1304443_2 WHERE bush_percentage = "51.6%"
What's the percentage of votes for other candidates in the county where Bush got 51.6% of the votes?
CREATE TABLE table_1304443_2 (others_percentage VARCHAR, bush_percentage VARCHAR)
SELECT AVG(2006) FROM table_name_47 WHERE 1970 < 9
What was the percentage in 2006 that had less than 9% in 1970?
CREATE TABLE table_name_47 (Id VARCHAR)
SELECT COUNT(rank) FROM table_name_25 WHERE swing_to_gain < 6.92 AND constituency = "caerphilly"
What rank was caerphilly with a Swing smaller than 6.92?
CREATE TABLE table_name_25 (rank VARCHAR, swing_to_gain VARCHAR, constituency VARCHAR)
SELECT city___state FROM table_name_80 WHERE circuit = "calder park raceway"
Which city or state contains Calder Park Raceway?
CREATE TABLE table_name_80 (city___state VARCHAR, circuit VARCHAR)
SELECT losses FROM table_name_73 WHERE year = "2012"
What is the losses for the year 2012?
CREATE TABLE table_name_73 (losses VARCHAR, year VARCHAR)
SELECT date FROM table_name_41 WHERE result = "5-1"
When was there a result of 5-1?
CREATE TABLE table_name_41 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_42 WHERE home_team = "middlesbrough"
What is the Date of the Middlesbrough Home game?
CREATE TABLE table_name_42 (date VARCHAR, home_team VARCHAR)
SELECT driver FROM table_2267465_1 WHERE race_time = "3:50:12"
What driver achieved a 3:50:12 race time?
CREATE TABLE table_2267465_1 (driver VARCHAR, race_time VARCHAR)
SELECT COUNT(*) FROM camera_lens WHERE NOT id IN (SELECT camera_lens_id FROM photos)
How many camera lenses are not used in taking any photos?
CREATE TABLE photos (id VARCHAR, camera_lens_id VARCHAR); CREATE TABLE camera_lens (id VARCHAR, camera_lens_id VARCHAR)
SELECT genre FROM table_name_88 WHERE directed_by = "sándor simó"
What Genre did Sándor Simó direct?
CREATE TABLE table_name_88 (genre VARCHAR, directed_by VARCHAR)
SELECT position FROM table_name_89 WHERE years_for_grizzlies = "2007-2009"
What position did the player who was with the grizzlies from 2007-2009 play?
CREATE TABLE table_name_89 (position VARCHAR, years_for_grizzlies VARCHAR)
SELECT novelty FROM table_name_46 WHERE authors = "zhiming" AND notes = "carcharodontosaurid"
What is the Novelty of the dinosaur that was named by the Author, Zhiming, and whose Notes are, "carcharodontosaurid"?
CREATE TABLE table_name_46 (novelty VARCHAR, authors VARCHAR, notes VARCHAR)
SELECT call_sign FROM table_14623167_1 WHERE physical = 17
Name the call sign for the 17 physical
CREATE TABLE table_14623167_1 (call_sign VARCHAR, physical VARCHAR)
SELECT COUNT(area__km²_) FROM table_15555661_2 WHERE ecozone = "Boreal Shield"
How large is the Boreal Shield in km2?
CREATE TABLE table_15555661_2 (area__km²_ VARCHAR, ecozone VARCHAR)
SELECT MAX(col__m_) FROM table_name_91 WHERE rank < 7 AND peak = "puncak jaya (carstensz pyramid)" AND prominence__m_ < 4 OFFSET 884
What is the highest col in m of the puncak jaya (carstensz pyramid) peak, which is ranked lower than 7 and has a prominence less than 4,884 m?
CREATE TABLE table_name_91 (col__m_ INTEGER, prominence__m_ VARCHAR, rank VARCHAR, peak VARCHAR)
SELECT AVG(T2.UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Rock"
What is the average unit price of rock tracks?
CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR); CREATE TABLE TRACK (UnitPrice INTEGER, GenreId VARCHAR)
SELECT AVG(points) FROM table_name_20 WHERE position < 8 AND played = 16 AND lost > 9
How many points on average had a position smaller than 8, 16 plays, and a lost larger than 9?
CREATE TABLE table_name_20 (points INTEGER, lost VARCHAR, position VARCHAR, played VARCHAR)
SELECT COUNT(year) FROM table_name_30 WHERE venue = "old trafford" AND opposition = "yorkshire"
Which number of Years has a Venue of old trafford, and an Opposition of yorkshire?
CREATE TABLE table_name_30 (year VARCHAR, venue VARCHAR, opposition VARCHAR)
SELECT COUNT(seasons) FROM table_name_98 WHERE name = "joe grugin" AND lost > 8
Which Seasons has a Name of joe grugin, and a Lost larger than 8?
CREATE TABLE table_name_98 (seasons VARCHAR, name VARCHAR, lost VARCHAR)
SELECT DISTINCT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id JOIN order_items AS T3 ON T2.order_id = T3.order_id JOIN products AS T4 ON T3.product_id = T4.product_id WHERE T4.product_name = "keyboard"
List the names of all the distinct customers who bought a keyboard.
CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)
SELECT track FROM table_name_18 WHERE year = 1982
What's the track for 1982?
CREATE TABLE table_name_18 (track VARCHAR, year VARCHAR)
SELECT theme_song_s_ FROM table_name_87 WHERE tv_station = "fuji tv" AND average_ratings = "16.65%"
What is the Theme Song of the show on Fuji TV Station with Average Ratings of 16.65%?
CREATE TABLE table_name_87 (theme_song_s_ VARCHAR, tv_station VARCHAR, average_ratings VARCHAR)
SELECT rank FROM table_name_83 WHERE year_opened = "1959" AND state = "pennsylvania"
What is the rank for the year opened in 1959 in Pennsylvania?
CREATE TABLE table_name_83 (rank VARCHAR, year_opened VARCHAR, state VARCHAR)
SELECT november_3 FROM table_25284864_3 WHERE january_15_16 = "141"
What is the November 3 result when the result for January 15-16 is 141?
CREATE TABLE table_25284864_3 (november_3 VARCHAR, january_15_16 VARCHAR)
SELECT team FROM table_name_90 WHERE points = 16 AND rank = "14th"
Which team has 16 points and ranks 14th?
CREATE TABLE table_name_90 (team VARCHAR, points VARCHAR, rank VARCHAR)
SELECT label FROM table_name_19 WHERE format = "limited edition cd/dvd"
Which label is in a limited edition cd/dvd format?
CREATE TABLE table_name_19 (label VARCHAR, format VARCHAR)
SELECT MAX(long) FROM table_name_72 WHERE player = "kevin clemens" AND yards < 31
What was the longest carry for kevin clemens with under 31 yards total?
CREATE TABLE table_name_72 (long INTEGER, player VARCHAR, yards VARCHAR)
SELECT COUNT(original_air_date) FROM table_29196086_4 WHERE written_by = "Harold Hayes Jr. & Craig S. Phillips"
on how many days did the episode written by harold hayes jr. & craig s. phillips originally air
CREATE TABLE table_29196086_4 (original_air_date VARCHAR, written_by VARCHAR)
SELECT COUNT(*), T1.company_id FROM Third_Party_Companies AS T1 JOIN Assets AS T2 ON T1.company_id = T2.supplier_company_id GROUP BY T1.company_id
How many assets does each third party company supply? List the count and the company id.
CREATE TABLE Assets (supplier_company_id VARCHAR); CREATE TABLE Third_Party_Companies (company_id VARCHAR)
SELECT swimsuit FROM table_17516967_1 WHERE state = "Oregon"
Name the swuinsuit for oregon
CREATE TABLE table_17516967_1 (swimsuit VARCHAR, state VARCHAR)
SELECT MAX(_number) FROM table_19908313_2 WHERE crew_chief = "Billy Wilburn"
What is the number of the truck that has the crew chief Billy Wilburn?
CREATE TABLE table_19908313_2 (_number INTEGER, crew_chief VARCHAR)
SELECT DISTINCT POSITION FROM match_season WHERE College = "UCLA" OR College = "Duke"
Show the distinct position of players from college UCLA or Duke.
CREATE TABLE match_season (POSITION VARCHAR, College VARCHAR)
SELECT COUNT(capacity) FROM table_name_8 WHERE venue = "nop aquatic centre" AND established > 1929
What is the capacity at the nop aquatic centre, established after 1929?
CREATE TABLE table_name_8 (capacity VARCHAR, venue VARCHAR, established VARCHAR)
SELECT score FROM table_name_38 WHERE away_team = "perth wildcats"
What was the score for the Perth Wildcats as away team?
CREATE TABLE table_name_38 (score VARCHAR, away_team VARCHAR)
SELECT rr_nos FROM table_name_15 WHERE builder = "hudswell clarke" AND year < 1914
Name the RR numbers of hudswell clarke and years before 1914
CREATE TABLE table_name_15 (rr_nos VARCHAR, builder VARCHAR, year VARCHAR)
SELECT result FROM table_name_3 WHERE latin_commander = "boniface of montferrat"
What is the Result of the battle with Latin Commander Boniface of Montferrat?
CREATE TABLE table_name_3 (result VARCHAR, latin_commander VARCHAR)
SELECT date FROM table_13258972_2 WHERE game_site = "Kingdome" AND opponent = "Kansas City Chiefs"
What date did the Seahawks play the Kansas City Chiefs at the Kingdome?
CREATE TABLE table_13258972_2 (date VARCHAR, game_site VARCHAR, opponent VARCHAR)
SELECT navigator FROM table_name_37 WHERE total_time = "08:29"
Which Navigator has a Total Time of 08:29?
CREATE TABLE table_name_37 (navigator VARCHAR, total_time VARCHAR)
SELECT new_classification FROM table_14976504_2 WHERE institution = "University of Arizona"
What is the new classification for the University of Arizona Western in the Collegiate Lacrosse League?
CREATE TABLE table_14976504_2 (new_classification VARCHAR, institution VARCHAR)
SELECT lane FROM table_name_30 WHERE time = "8:34.25"
What is the Lane of the swimmer with a Time of 8:34.25?
CREATE TABLE table_name_30 (lane VARCHAR, time VARCHAR)
SELECT category FROM table_name_62 WHERE recipient = "the suite life on deck" AND year > 2010
What category was The Suite Life on Deck nominated for later than 2010?
CREATE TABLE table_name_62 (category VARCHAR, recipient VARCHAR, year VARCHAR)
SELECT MAX(first_elected) FROM table_name_24 WHERE results = "re-elected" AND incumbent = "lincoln davis"
What is the highest First Elected, when Results is "Re-elected", and when Incumbent is "Lincoln Davis"?
CREATE TABLE table_name_24 (first_elected INTEGER, results VARCHAR, incumbent VARCHAR)
SELECT MIN(week) FROM table_name_25 WHERE record = "0–8"
Record of 0–8 had what lowest week?
CREATE TABLE table_name_25 (week INTEGER, record VARCHAR)
SELECT email FROM user_profiles WHERE name = 'Mary'
Find the emails of the user named "Mary".
CREATE TABLE user_profiles (email VARCHAR, name VARCHAR)
SELECT COUNT(touchdowns__5_points_) FROM table_name_50 WHERE extra_points_1_point = 0 AND field_goals__5_points_ > 0
How many Touchdowns (5 points) have an Extra points 1 point of 0, and a Field goals (5 points) larger than 0?
CREATE TABLE table_name_50 (touchdowns__5_points_ VARCHAR, extra_points_1_point VARCHAR, field_goals__5_points_ VARCHAR)
SELECT start___utc__ FROM table_22385461_6 WHERE end__utc_ = "March 28, 2005, 11:31"
What is the start date and time of the walk that ends March 28, 2005, 11:31?
CREATE TABLE table_22385461_6 (start___utc__ VARCHAR, end__utc_ VARCHAR)
SELECT 2004 FROM table_name_40 WHERE 2011 = "90.917"
What is the 2004 Lukoil oil prodroduction when in 2011 oil production 90.917 million tonnes?
CREATE TABLE table_name_40 (Id VARCHAR)
SELECT MAX(points) FROM table_14342480_15 WHERE player = "Duncan Thompson"
How many points did Duncan Thompson score?
CREATE TABLE table_14342480_15 (points INTEGER, player VARCHAR)
SELECT income_poverty_f FROM table_13618358_1 WHERE district = "San Juan"
How low was the San Juan income?
CREATE TABLE table_13618358_1 (income_poverty_f VARCHAR, district VARCHAR)
SELECT date FROM table_name_55 WHERE matches < 32 AND round = "fifth round proper"
What is Date, when Matches is less than 32, and when Round is Fifth Round Proper?
CREATE TABLE table_name_55 (date VARCHAR, matches VARCHAR, round VARCHAR)
SELECT AVG(position) FROM table_name_20 WHERE goals_against < 63 AND lost < 6
What position was the team who had less then 63 goals against and less than 6 losses?
CREATE TABLE table_name_20 (position INTEGER, goals_against VARCHAR, lost VARCHAR)
SELECT captain FROM table_name_15 WHERE club = "middlesbrough"
Who is the captain of Middlesbrough?
CREATE TABLE table_name_15 (captain VARCHAR, club VARCHAR)
SELECT location FROM table_name_77 WHERE wrestler = "chris jones"
What is chris jones' location?
CREATE TABLE table_name_77 (location VARCHAR, wrestler VARCHAR)
SELECT AVG(year) FROM table_name_85 WHERE points = 0 AND engine = "ferrari v8"
what is the average year for 0 points and ferrari v8?
CREATE TABLE table_name_85 (year INTEGER, points VARCHAR, engine VARCHAR)