answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT college FROM table_name_88 WHERE player = "riley clayton"
which college has a player called Riley Clayton?
CREATE TABLE table_name_88 (college VARCHAR, player VARCHAR)
SELECT episode__number FROM table_20205538_4 WHERE series__number = 17
What is the episode number for series 17?
CREATE TABLE table_20205538_4 (episode__number VARCHAR, series__number VARCHAR)
SELECT opponent FROM table_name_45 WHERE round = "sf"
Which opponent had a round of SF?
CREATE TABLE table_name_45 (opponent VARCHAR, round VARCHAR)
SELECT location__all_in_nagano__ FROM table_name_18 WHERE name = "sakakita bs"
Which location includes Sakakita BS?
CREATE TABLE table_name_18 (location__all_in_nagano__ VARCHAR, name VARCHAR)
SELECT player FROM table_name_45 WHERE position = "d" AND team_from = "hotchkiss school"
Who is the player from Hotchkiss School with a position of d?
CREATE TABLE table_name_45 (player VARCHAR, position VARCHAR, team_from VARCHAR)
SELECT 1 AS st_leg FROM table_name_26 WHERE team_1 = "remo (pa)"
What is the 1st leg in the match where Remo (PA) is team 1?
CREATE TABLE table_name_26 (team_1 VARCHAR)
SELECT company FROM table_1682026_2 WHERE market_value__billion_$_ = "147.4"
Which company has a market value of 147.4?
CREATE TABLE table_1682026_2 (company VARCHAR, market_value__billion_$_ VARCHAR)
SELECT high_assists FROM table_name_7 WHERE game = 3
What was the highest assists for game 3?
CREATE TABLE table_name_7 (high_assists VARCHAR, game VARCHAR)
SELECT 2012 FROM table_name_13 WHERE 2008 = "a" AND 2011 = "1r"
What is the categorization in 2012 when it was A in 2008 and 1R in 2011?
CREATE TABLE table_name_13 (Id VARCHAR)
SELECT SUM(date) FROM table_name_8 WHERE venue = "away" AND opponent = "wightlink raiders" AND attendance > 375
What is the date of the away venue with an opponent of wightlink raiders with an attendance larger than 375?
CREATE TABLE table_name_8 (date INTEGER, attendance VARCHAR, venue VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_4 WHERE date = "13 december 1975" AND away_team = "halifax town"
For the game on 13 December 1975 with Halifax Town as the away team what was the score?
CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR, away_team VARCHAR)
SELECT sspec_number FROM table_name_52 WHERE frequency = "1ghz"
What is the sSpec Number of the model with a 1ghz frequency?
CREATE TABLE table_name_52 (sspec_number VARCHAR, frequency VARCHAR)
SELECT winner FROM table_name_49 WHERE circuit = "barbagallo raceway"
Who won at the Barbagallo Raceway circuit?
CREATE TABLE table_name_49 (winner VARCHAR, circuit VARCHAR)
SELECT note FROM table_name_28 WHERE year > 2003
What was the note with a year after 2003?
CREATE TABLE table_name_28 (note VARCHAR, year INTEGER)
SELECT incident_type_description FROM Ref_Incident_Type WHERE incident_type_code = "VIOLENCE"
What is the incident type description for the incident type with code "VIOLENCE"?
CREATE TABLE Ref_Incident_Type (incident_type_description VARCHAR, incident_type_code VARCHAR)
SELECT ccm_chart FROM table_name_94 WHERE total_wks = 18
What CCM Chart had 18 total weeks?
CREATE TABLE table_name_94 (ccm_chart VARCHAR, total_wks VARCHAR)
SELECT leftfielder FROM table_name_90 WHERE second_baseman = "davey lopes" AND first_baseman = "steve garvey" AND shortstop = "bill russell" AND year > 1977
What is the name of the Leftfielder when Davey Lopes was the Second Baseman and first baseman was steve garvey, Shortstop of bill russell eariler than 1977?
CREATE TABLE table_name_90 (leftfielder VARCHAR, year VARCHAR, shortstop VARCHAR, second_baseman VARCHAR, first_baseman VARCHAR)
SELECT DISTINCT T1.file_size, T1.formats FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T2.resolution < 800
List the file size and format for all songs that have resolution lower than 800.
CREATE TABLE song (f_id VARCHAR, resolution INTEGER); CREATE TABLE files (file_size VARCHAR, formats VARCHAR, f_id VARCHAR)
SELECT bulgarian_commander FROM table_name_41 WHERE battle = "battle of thessalonica" AND date = "autumn 1040"
What is the Bulgarian Commander in Autumn 1040 at the Battle of Thessalonica?
CREATE TABLE table_name_41 (bulgarian_commander VARCHAR, battle VARCHAR, date VARCHAR)
SELECT score FROM table_name_46 WHERE record = "3-7"
What score has 3-7 as the record?
CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR)
SELECT master_recording FROM table_22457674_1 WHERE artist = "Europe"
Name the master recording for europe
CREATE TABLE table_22457674_1 (master_recording VARCHAR, artist VARCHAR)
SELECT MAX(shot_pct) FROM table_name_36 WHERE ends_lost > 44 AND skip = "cathy king" AND blank_ends < 13
What is the shot % with a 44+ Ends Lost, skip Cathy King, and smaller than 13 Black Ends?
CREATE TABLE table_name_36 (shot_pct INTEGER, blank_ends VARCHAR, ends_lost VARCHAR, skip VARCHAR)
SELECT SUM(seats_2001) FROM table_name_91 WHERE parties_and_voter_communities = "cdu" AND seats_2006 > 10
what is the total number of seats 2001 with seats 2006 more than 10 and voter communities of cdu?
CREATE TABLE table_name_91 (seats_2001 INTEGER, parties_and_voter_communities VARCHAR, seats_2006 VARCHAR)
SELECT rushing_yards_per_game FROM table_27487336_1 WHERE season = "1984"
What is every value for rushing yards per game if the season is 1984?
CREATE TABLE table_27487336_1 (rushing_yards_per_game VARCHAR, season VARCHAR)
SELECT para FROM table_16886076_1 WHERE commewijne = "1.5%"
Name the para for 1.5% commewijne
CREATE TABLE table_16886076_1 (para VARCHAR, commewijne VARCHAR)
SELECT COUNT(year) FROM table_name_7 WHERE composer = "mejo joseph"
What year was the composition by Mejo Joseph?
CREATE TABLE table_name_7 (year VARCHAR, composer VARCHAR)
SELECT text FROM tweets WHERE text LIKE '%intern%'
Return the text of tweets about the topic 'intern'.
CREATE TABLE tweets (text VARCHAR)
SELECT winning_team FROM table_10548224_1 WHERE date_contested = "February 1, 2009"
Who was the winning team of the game that was contested on February 1, 2009?
CREATE TABLE table_10548224_1 (winning_team VARCHAR, date_contested VARCHAR)
SELECT label FROM table_name_2 WHERE catalog = "alca-9013"
Which Label was cataloged as alca-9013?
CREATE TABLE table_name_2 (label VARCHAR, catalog VARCHAR)
SELECT final_score FROM table_name_96 WHERE date = "january 9" AND host_team = "cincinnati bengals"
Tell me the final score for january 9 for cincinnati bengals
CREATE TABLE table_name_96 (final_score VARCHAR, date VARCHAR, host_team VARCHAR)
SELECT score FROM table_name_32 WHERE outcome = "loser" AND edition = 2011
What is Score, when Outcome is Loser, and when Edition is 2011?
CREATE TABLE table_name_32 (score VARCHAR, outcome VARCHAR, edition VARCHAR)
SELECT score FROM table_27756014_1 WHERE date = "October 16"
What is the score of the game played on october 16?
CREATE TABLE table_27756014_1 (score VARCHAR, date VARCHAR)
SELECT T2.name FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID WHERE T1.stars > 3
Find the names of reviewers who had given higher than 3 star ratings.
CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Rating (rID VARCHAR, stars INTEGER)
SELECT international_use FROM table_29997112_3 WHERE flag_name = "1 единица"
What is the international use of the 1 единица flag?
CREATE TABLE table_29997112_3 (international_use VARCHAR, flag_name VARCHAR)
SELECT tournament FROM table_name_99 WHERE surface = "clay" AND outcome = "winner" AND score = "6–3, 6–2"
Name the tournament for clay surface and outcome is winner with score is 6–3, 6–2
CREATE TABLE table_name_99 (tournament VARCHAR, score VARCHAR, surface VARCHAR, outcome VARCHAR)
SELECT score FROM table_name_89 WHERE team = "memphis"
Can you tell me the Score that has the Team of memphis?
CREATE TABLE table_name_89 (score VARCHAR, team VARCHAR)
SELECT product_id FROM product_suppliers ORDER BY total_amount_purchased DESC LIMIT 3
What are the ids of the top three products that were purchased in the largest amount?
CREATE TABLE product_suppliers (product_id VARCHAR, total_amount_purchased VARCHAR)
SELECT pim FROM table_name_42 WHERE gf = "55"
What's the P.I.M. for the G.F. of 55?
CREATE TABLE table_name_42 (pim VARCHAR, gf VARCHAR)
SELECT AVG(round) FROM table_name_8 WHERE player = "corey cowick"
What round was Corey Cowick picked?
CREATE TABLE table_name_8 (round INTEGER, player VARCHAR)
SELECT AVG(land_area__km²_) FROM table_name_98 WHERE country = "switzerland" AND population_density__pop_per_km²_ < 188
What is the land area of Switzerland with a population density fewer than 188 km²?
CREATE TABLE table_name_98 (land_area__km²_ INTEGER, country VARCHAR, population_density__pop_per_km²_ VARCHAR)
SELECT COUNT(wins) FROM table_name_52 WHERE top_10 = 2 AND events > 8 AND cuts_made > 6
What is the number of wins that has a top-10 of 2, and more events than 8, more cuts than 6?
CREATE TABLE table_name_52 (wins VARCHAR, cuts_made VARCHAR, top_10 VARCHAR, events VARCHAR)
SELECT away_team AS score FROM table_name_42 WHERE venue = "corio oval"
What was the away team score at Corio Oval?
CREATE TABLE table_name_42 (away_team VARCHAR, venue VARCHAR)
SELECT constructor FROM table_name_42 WHERE laps > 0 AND grid = 5
What company constructed the car with more than 0 laps and shows 5 for grid?
CREATE TABLE table_name_42 (constructor VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT candidates FROM table_1342451_16 WHERE incumbent = "Henry Garland Dupré"
Who were the candidates when Henry Garland Dupré was incumbent?
CREATE TABLE table_1342451_16 (candidates VARCHAR, incumbent VARCHAR)
SELECT SUM(bodyweight) FROM table_name_98 WHERE snatch = "153.0"
What is the total bodyweight of everyone that has a Snatch of 153.0?
CREATE TABLE table_name_98 (bodyweight INTEGER, snatch VARCHAR)
SELECT COUNT(original_air_date) FROM table_27988559_1 WHERE production_code = 804
How many dates did the episode with a production code of 804 originally air on?
CREATE TABLE table_27988559_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT party FROM table_name_37 WHERE first_elected = 1996 AND district = "illinois 19"
What is the Party of District of Illinois 19 with an Incumbent First elected in 1996?
CREATE TABLE table_name_37 (party VARCHAR, first_elected VARCHAR, district VARCHAR)
SELECT tier FROM table_name_59 WHERE opponent_in_the_final = "annalisa bona"
What was the tier versus Annalisa bona?
CREATE TABLE table_name_59 (tier VARCHAR, opponent_in_the_final VARCHAR)
SELECT attendance FROM table_name_13 WHERE opponent = "new england patriots"
Opponent of new england patriots had what attendance?
CREATE TABLE table_name_13 (attendance VARCHAR, opponent VARCHAR)
SELECT type FROM table_name_65 WHERE source = "leeds united" AND transfer_window = "winter" AND moving_from = "northampton town"
What is the type of the Leeds United source, winter transfer window and moving from Northampton town?
CREATE TABLE table_name_65 (type VARCHAR, moving_from VARCHAR, source VARCHAR, transfer_window VARCHAR)
SELECT MIN(crowd) FROM table_name_83 WHERE venue = "glenferrie oval"
What was the lowest attendance at Glenferrie Oval?
CREATE TABLE table_name_83 (crowd INTEGER, venue VARCHAR)
SELECT location_attendance FROM table_name_43 WHERE opponent = "san francisco warriors" AND game = 25
What was the attendance of game 25 when the played the San Francisco Warriors?
CREATE TABLE table_name_43 (location_attendance VARCHAR, opponent VARCHAR, game VARCHAR)
SELECT COUNT(tries_against) FROM table_14070062_3 WHERE points_against = "396"
What's the tries against count of the team with 396 points against?
CREATE TABLE table_14070062_3 (tries_against VARCHAR, points_against VARCHAR)
SELECT original_air_date FROM table_10610087_3 WHERE no_in_season = 9
what is the original air date of the episode no in season 9?
CREATE TABLE table_10610087_3 (original_air_date VARCHAR, no_in_season VARCHAR)
SELECT crew FROM table_245800_2 WHERE flight_up = "Soyuz T-3"
Who were the crews on the flight up of Soyuz T-3?
CREATE TABLE table_245800_2 (crew VARCHAR, flight_up VARCHAR)
SELECT engine FROM table_name_42 WHERE year > 1955 AND points > 0 AND entrant = "hoover motor express"
What was the engine of the Hoover Motor Express after 1955 with greater than 0 points?
CREATE TABLE table_name_42 (engine VARCHAR, entrant VARCHAR, year VARCHAR, points VARCHAR)
SELECT SUM(attendance) FROM table_name_10 WHERE result = "2–4" AND visitor = "brynäs if"
How much Attendance has a Result of 2–4, and a Visitor of brynäs if?
CREATE TABLE table_name_10 (attendance INTEGER, result VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_7 WHERE tv_time = "cbs 1:00pm" AND game_site = "rca dome" AND opponent = "cincinnati bengals"
Which Date has a TV Time of cbs 1:00pm, and a Game Site of rca dome, and an Opponent of cincinnati bengals?
CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR, tv_time VARCHAR, game_site VARCHAR)
SELECT COUNT(mccain_percentage) FROM table_20799905_1 WHERE county = "DAVIDSON"
How many figures are given for McCain's % in Davidson county?
CREATE TABLE table_20799905_1 (mccain_percentage VARCHAR, county VARCHAR)
SELECT date_first_lit FROM table_25597136_1 WHERE focal_plane_in_ft__m_ = "43ft (13.1m)"
Focal plane in ft (m) is 43ft (13.1m) is the first date lit.
CREATE TABLE table_25597136_1 (date_first_lit VARCHAR, focal_plane_in_ft__m_ VARCHAR)
SELECT colors FROM table_261927_1 WHERE nickname = "Engineers"
What is the colors for the nickname engineers?
CREATE TABLE table_261927_1 (colors VARCHAR, nickname VARCHAR)
SELECT SUM(year) FROM table_name_39 WHERE role = "himself" AND notes = "celebrity guest alongside yg family"
What is the sum of Year, when Role is "himself", and when Notes is "celebrity guest alongside yg family"?
CREATE TABLE table_name_39 (year INTEGER, role VARCHAR, notes VARCHAR)
SELECT MAX(per_capita_withdrawal__m_3__p_yr_) FROM table_name_22 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "1363(92%)" AND total_freshwater_withdrawal__km_3__yr_ < 42.7
What is the highest Per Capita Withdrawal (m 3 /p/yr), when Agricultural Use (m 3 /p/yr)(in %) is 1363(92%), and when Total Freshwater Withdrawal (km 3 /yr) is less than 42.7?
CREATE TABLE table_name_22 (per_capita_withdrawal__m_3__p_yr_ INTEGER, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR, total_freshwater_withdrawal__km_3__yr_ VARCHAR)
SELECT MIN(matches) FROM table_17900317_5 WHERE runs = 276
Name the least matches for runs being 276
CREATE TABLE table_17900317_5 (matches INTEGER, runs VARCHAR)
SELECT date FROM table_name_39 WHERE pilot = "g.v. alfyorov" AND record_description = "altitude with kg (lb) payload" AND type = "mi-10"
Pilot of g.v. alfyorov, and a Record description of altitude with kg (lb) payload, and a Type of mi-10 involved what date?
CREATE TABLE table_name_39 (date VARCHAR, type VARCHAR, pilot VARCHAR, record_description VARCHAR)
SELECT tries_for FROM table_12792876_2 WHERE "club" = "club"
What is the 8th entry in the row with a first entry of "club"?
CREATE TABLE table_12792876_2 (tries_for VARCHAR)
SELECT SUM(total_passengers) FROM table_name_9 WHERE annual_change = "9.7%" AND rank < 6
What is the sum of Total Passengers when the annual change is 9.7% and the rank is less than 6?
CREATE TABLE table_name_9 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR)
SELECT rider FROM table_name_84 WHERE speed = "104.630mph"
Which rider had a speed of 104.630mph?
CREATE TABLE table_name_84 (rider VARCHAR, speed VARCHAR)
SELECT manhunt_international FROM table_30018460_1 WHERE country_territory = "France"
How many manhunt beauty contets have been held in france?
CREATE TABLE table_30018460_1 (manhunt_international VARCHAR, country_territory VARCHAR)
SELECT oberliga_südwest FROM table_name_60 WHERE oberliga_baden_württemberg = "sv sandhausen" AND season = "1984-85"
which Oberliga Südwes has an Oberliga Baden-Württemberg of sv sandhausen in 1984-85?
CREATE TABLE table_name_60 (oberliga_südwest VARCHAR, oberliga_baden_württemberg VARCHAR, season VARCHAR)
SELECT headphone_model FROM table_name_28 WHERE construction = "plastic" AND headphone_class = "prestige"
What is the headphone model with a plastic construction and a prestige headphone class?
CREATE TABLE table_name_28 (headphone_model VARCHAR, construction VARCHAR, headphone_class VARCHAR)
SELECT COUNT(lost) FROM table_name_48 WHERE position > 2 AND name = "sg münchen (n)" AND drawn > 0
Which Lost has a Position larger than 2, a Name of sg münchen (n), and a Drawn larger than 0?
CREATE TABLE table_name_48 (lost VARCHAR, drawn VARCHAR, position VARCHAR, name VARCHAR)
SELECT home_team FROM table_name_68 WHERE score = "1–1" AND away_team = "tottenham hotspur"
Which Home team has a Score of 1–1, and an Away team of tottenham hotspur?
CREATE TABLE table_name_68 (home_team VARCHAR, score VARCHAR, away_team VARCHAR)
SELECT COUNT(*) FROM papers
How many papers are published in total?
CREATE TABLE papers (Id VARCHAR)
SELECT MAX(run_ratio) FROM table_name_36 WHERE runs_allowed < 58 AND wins = 5 AND team = "japan"
What is the highest run ratio Japan, which has less than 58 runs and 5 wins, have?
CREATE TABLE table_name_36 (run_ratio INTEGER, team VARCHAR, runs_allowed VARCHAR, wins VARCHAR)
SELECT position FROM table_name_35 WHERE speed = "123.220"
Which position has a speed of 123.220?
CREATE TABLE table_name_35 (position VARCHAR, speed VARCHAR)
SELECT AVG(enrollment) FROM table_name_41 WHERE institution = "dickinson college"
What is the average Enrollment of Dickinson College?
CREATE TABLE table_name_41 (enrollment INTEGER, institution VARCHAR)
SELECT Team, COUNT(*) FROM elimination GROUP BY Team
Show different teams in eliminations and the number of eliminations from each team.
CREATE TABLE elimination (Team VARCHAR)
SELECT event FROM table_name_41 WHERE opponent = "donald ouimet"
What event was Donald Ouimet involved?
CREATE TABLE table_name_41 (event VARCHAR, opponent VARCHAR)
SELECT artist FROM table_name_43 WHERE issue_date_s_ = "23 february"
What is the name of the artist that issued the single on 23 February?
CREATE TABLE table_name_43 (artist VARCHAR, issue_date_s_ VARCHAR)
SELECT COUNT(attendance) FROM table_name_76 WHERE opponent = "pittsburgh steelers" AND week < 4
What was the total attendance at a game against the Pittsburgh Steelers before week 4?
CREATE TABLE table_name_76 (attendance VARCHAR, opponent VARCHAR, week VARCHAR)
SELECT AVG(total) FROM table_name_71 WHERE nation = "belarus" AND e_score < 8.2
What is the average total score of Belarus, which had an E score less than 8.2?
CREATE TABLE table_name_71 (total INTEGER, nation VARCHAR, e_score VARCHAR)
SELECT races FROM table_name_43 WHERE series = "gp2 series" AND fl = "0" AND position = "17th"
What races have gp2 series, 0 F.L. and a 17th position?
CREATE TABLE table_name_43 (races VARCHAR, position VARCHAR, series VARCHAR, fl VARCHAR)
SELECT cubic_inches__exact_ FROM table_name_86 WHERE unit = "kruzhka"
What are the exact Cubic inches of the Unit of kruzhka?
CREATE TABLE table_name_86 (cubic_inches__exact_ VARCHAR, unit VARCHAR)
SELECT MIN(pick) FROM table_name_97 WHERE position = "center" AND name = "les studdard" AND round < 10
In what round smaller than 10, was the center les studdard picked in?
CREATE TABLE table_name_97 (pick INTEGER, round VARCHAR, position VARCHAR, name VARCHAR)
SELECT player FROM table_name_58 WHERE score = 67 - 72 = 139
What player has the score of 67-72=139?
CREATE TABLE table_name_58 (player VARCHAR, score VARCHAR)
SELECT MIN(bits_14_12) FROM table_14249278_1 WHERE description = "Output from accumulator to character bus"
Name the most bits 14-12 for output from accumulator to character bus
CREATE TABLE table_14249278_1 (bits_14_12 INTEGER, description VARCHAR)
SELECT rank__week_ FROM table_28026156_1 WHERE written_by = "Thomas L. Moran"
Where did the episode rank that was written by thomas l. moran?
CREATE TABLE table_28026156_1 (rank__week_ VARCHAR, written_by VARCHAR)
SELECT MAX(total) FROM table_28606933_7 WHERE period = "9/21/1975 – 12/16/1984"
How many consecutive starts for the linebacker who played from 9/21/1975 – 12/16/1984?
CREATE TABLE table_28606933_7 (total INTEGER, period VARCHAR)
SELECT elector FROM table_name_56 WHERE faction = "roman" AND elevated = "1244, may 28"
What is the Elector with a Faction of roman, and an Elevated with 1244, may 28?
CREATE TABLE table_name_56 (elector VARCHAR, faction VARCHAR, elevated VARCHAR)
SELECT field FROM table_name_15 WHERE discovery = "na" AND operator_s_ = "woc" AND geological_trend = "western"
Which Field has a Discovery of na, and an Operator(s) of woc, and a Geological Trend of western
CREATE TABLE table_name_15 (field VARCHAR, geological_trend VARCHAR, discovery VARCHAR, operator_s_ VARCHAR)
SELECT T1.name FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID WHERE T2.Position = "Right Wing"
Show the names of clubs that have players with position "Right Wing".
CREATE TABLE club (name VARCHAR, Club_ID VARCHAR); CREATE TABLE player (Club_ID VARCHAR, Position VARCHAR)
SELECT MIN(population_served) FROM table_18268930_1
What's the minimal number of population served?
CREATE TABLE table_18268930_1 (population_served INTEGER)
SELECT city_of_license FROM table_name_51 WHERE frequency = "88.7 fm"
What is the City of license with a 88.7 fm frequency
CREATE TABLE table_name_51 (city_of_license VARCHAR, frequency VARCHAR)
SELECT writer FROM table_14778650_1 WHERE length = "4:29"
Who was the writer for the song 4:29 in length?
CREATE TABLE table_14778650_1 (writer VARCHAR, length VARCHAR)
SELECT SUM(draws) FROM table_name_23 WHERE wins > 14
Which Draws have Wins larger than 14?
CREATE TABLE table_name_23 (draws INTEGER, wins INTEGER)
SELECT MAX(top_5) FROM table_2216245_2 WHERE team_s_ = "#28/#49 Jay Robinson Racing"
How many top 5s when he was on team #28/#49 jay robinson racing?
CREATE TABLE table_2216245_2 (top_5 INTEGER, team_s_ VARCHAR)
SELECT AVG(attendance) FROM table_name_81 WHERE week > 5 AND opponent = "washington redskins"
what is the average attendance when the week is higher than 5 and the opponent is washington redskins?
CREATE TABLE table_name_81 (attendance INTEGER, week VARCHAR, opponent VARCHAR)
SELECT population__2010_11_01_ FROM table_name_30 WHERE hanzi = "延寿县"
What is the population for the area that has a Hanzi of 延寿县?
CREATE TABLE table_name_30 (population__2010_11_01_ VARCHAR, hanzi VARCHAR)
SELECT AVG(points) FROM table_name_85 WHERE points_against = 594 AND losses > 3
What is the average Points when the Points Against is 594, and Losses is more than 3?
CREATE TABLE table_name_85 (points INTEGER, points_against VARCHAR, losses VARCHAR)