answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT artist FROM table_name_28 WHERE place = "withdrawn" | CREATE TABLE table_name_28 (artist VARCHAR, place VARCHAR) | What is the Artist of the Song with a Place of withdrawn? |
SELECT week FROM table_name_91 WHERE result = "l 38-21" | CREATE TABLE table_name_91 (week VARCHAR, result VARCHAR) | Which week had a result of L 38-21? |
SELECT opponent FROM table_name_96 WHERE week > 8 AND attendance = "72,190" | CREATE TABLE table_name_96 (opponent VARCHAR, week VARCHAR, attendance VARCHAR) | Who was the opponent after week 8 that had 72,190 people in attendance? |
SELECT gold FROM table_name_55 WHERE year > 1982 AND place = "moscow" | CREATE TABLE table_name_55 (gold VARCHAR, year VARCHAR, place VARCHAR) | Who won the Gold Medal in Moscow after the year 1982? |
SELECT MIN(total) FROM table_name_70 WHERE rank < 8 AND silver > 6 AND bronze = 20 | CREATE TABLE table_name_70 (total INTEGER, bronze VARCHAR, rank VARCHAR, silver VARCHAR) | What is the lowest total that has a rank less than 8, a silver greater than 6, and 20 as the bronze? |
SELECT AVG(silver) FROM table_name_8 WHERE gold > 3 AND nation = "soviet union (urs)" AND bronze > 26 | CREATE TABLE table_name_8 (silver INTEGER, bronze VARCHAR, gold VARCHAR, nation VARCHAR) | What is the average silver that has a gold greater than 3, with soviet union (urs) as the nation, and a bronze greater than 26? |
SELECT MAX(silver) FROM table_name_82 WHERE total = 57 AND bronze > 20 | CREATE TABLE table_name_82 (silver INTEGER, total VARCHAR, bronze VARCHAR) | What is the highest silver that has 57 as the total, with a bronze greater than 20? |
SELECT rank FROM table_name_20 WHERE gold > 0 AND bronze = 0 AND nation = "germany (ger)" | CREATE TABLE table_name_20 (rank VARCHAR, nation VARCHAR, gold VARCHAR, bronze VARCHAR) | What rank has a gold greater than 0, 0 as the bronze, with germany (ger) as the nation? |
SELECT COUNT(bronze) FROM table_name_31 WHERE total = 1 AND nation = "spain (esp)" AND gold > 0 | CREATE TABLE table_name_31 (bronze VARCHAR, gold VARCHAR, total VARCHAR, nation VARCHAR) | How many bronzes have 1 as the total, with spain (esp) as the nation, and a gold greater than 0? |
SELECT AVG(prominence__m_) FROM table_name_37 WHERE peak = "nakanai mountains high point" AND elevation__m_ < 2 OFFSET 316 | CREATE TABLE table_name_37 (prominence__m_ INTEGER, peak VARCHAR, elevation__m_ VARCHAR) | Which Prominence (m) has a Peak of nakanai mountains high point, and an Elevation (m) smaller than 2,316? |
SELECT position FROM table_name_89 WHERE player = "jason fitzgerald" | CREATE TABLE table_name_89 (position VARCHAR, player VARCHAR) | What position Jason Fitzgerald played? |
SELECT team FROM table_name_9 WHERE player = "jason romano" | CREATE TABLE table_name_9 (team VARCHAR, player VARCHAR) | Jason Romano played for what team? |
SELECT dimensions FROM table_name_96 WHERE output = "180w" | CREATE TABLE table_name_96 (dimensions VARCHAR, output VARCHAR) | What are the dimensions of the amp with a 180W output? |
SELECT AVG(average) FROM table_name_53 WHERE total = 22 AND county = "fermanagh" | CREATE TABLE table_name_53 (average INTEGER, total VARCHAR, county VARCHAR) | Which player was from Fermanagh and had an average score of 22? |
SELECT COUNT(total) FROM table_name_90 WHERE player = "oisin mcconville" AND matches < 5 | CREATE TABLE table_name_90 (total VARCHAR, player VARCHAR, matches VARCHAR) | How many total points did Oisin McConville have from his 5 matches? |
SELECT COUNT(attendance) FROM table_name_16 WHERE date = "october 30, 1977" AND week > 7 | CREATE TABLE table_name_16 (attendance VARCHAR, date VARCHAR, week VARCHAR) | How many attendances have October 30, 1977 as the date, with a week greater than 7? |
SELECT MIN(attendance) FROM table_name_82 WHERE result = "l 42-35" AND week < 13 | CREATE TABLE table_name_82 (attendance INTEGER, result VARCHAR, week VARCHAR) | What is the lowest attendance that has l 42-35 as the result, with a week less than 13? |
SELECT name FROM table_name_44 WHERE heat < 3 AND nationality = "south korea" | CREATE TABLE table_name_44 (name VARCHAR, heat VARCHAR, nationality VARCHAR) | Who is from south korea and has a heat less than 3? |
SELECT MAX(heat) FROM table_name_2 WHERE nationality = "spain" AND lane < 7 | CREATE TABLE table_name_2 (heat INTEGER, nationality VARCHAR, lane VARCHAR) | What is the highest heat of the athlete from spain with a lane less than 7? |
SELECT AVG(lane) FROM table_name_78 WHERE nationality = "japan" AND time = "4:37.35" AND heat < 3 | CREATE TABLE table_name_78 (lane INTEGER, heat VARCHAR, nationality VARCHAR, time VARCHAR) | What is the average lane of the athlete from japan with a time of 4:37.35 and a heat less than 3? |
SELECT MIN(gold) FROM table_name_45 WHERE bronze = 4 AND silver > 5 | CREATE TABLE table_name_45 (gold INTEGER, bronze VARCHAR, silver VARCHAR) | What is the lowest Gold count if the Bronze is 4 and Silver is greater than 5? |
SELECT AVG(silver) FROM table_name_50 WHERE gold > 17 | CREATE TABLE table_name_50 (silver INTEGER, gold INTEGER) | What is the Average for Silver medals that have more than 17 Golds? |
SELECT MAX(silver) FROM table_name_38 WHERE total > 14 AND bronze > 15 | CREATE TABLE table_name_38 (silver INTEGER, total VARCHAR, bronze VARCHAR) | What is the highest number of Silver medals with a Total greater than 14 and more than 15 Bronze medals? |
SELECT music___director FROM table_name_69 WHERE co___singer = "hemachandra" AND film = "khaleja" | CREATE TABLE table_name_69 (music___director VARCHAR, co___singer VARCHAR, film VARCHAR) | Who is the music-director for the song from the film khaleja who had a co-singer of hemachandra? |
SELECT score FROM table_name_25 WHERE att = 354 | CREATE TABLE table_name_25 (score VARCHAR, att VARCHAR) | What was the score for the matchup having attendance of 354? |
SELECT nation FROM table_name_79 WHERE total < 10 AND bronze < 1 AND rank = "11" | CREATE TABLE table_name_79 (nation VARCHAR, rank VARCHAR, total VARCHAR, bronze VARCHAR) | What nation had a medal total of less than 10, less than 1 bronze medal, in rank 11? |
SELECT gold FROM table_name_44 WHERE silver = 3 AND total = 10 | CREATE TABLE table_name_44 (gold VARCHAR, silver VARCHAR, total VARCHAR) | How many gold medals did the team that won a total of 10 medals and 3 silver medals win? |
SELECT COUNT(total) FROM table_name_41 WHERE bronze > 11 | CREATE TABLE table_name_41 (total VARCHAR, bronze INTEGER) | What is the total number of medals won by teams that won more than 11 bronze medals? |
SELECT MIN(react) FROM table_name_53 WHERE country = "united states" AND lane < 4 | CREATE TABLE table_name_53 (react INTEGER, country VARCHAR, lane VARCHAR) | What is the lowest react of the athlete from the United States who has a lane less than 4? |
SELECT MIN(react) FROM table_name_62 WHERE country = "sri lanka" AND lane > 8 | CREATE TABLE table_name_62 (react INTEGER, country VARCHAR, lane VARCHAR) | What is the lowest of the athlete from sri lanka who has a lane greater than 8? |
SELECT AVG(react) FROM table_name_4 WHERE athlete = "muna lee" AND rank > 3 | CREATE TABLE table_name_4 (react INTEGER, athlete VARCHAR, rank VARCHAR) | What is the average react of athlete muna lee, who is ranked greater than 3? |
SELECT AVG(lane) FROM table_name_8 WHERE time > 22.57 AND react < 0.245 AND country = "cuba" | CREATE TABLE table_name_8 (lane INTEGER, country VARCHAR, time VARCHAR, react VARCHAR) | What is the average lane of the athlete from cuba who has a time greater than 22.57 and react less than 0.245? |
SELECT AVG(react) FROM table_name_11 WHERE time < 22.29 AND rank > 1 | CREATE TABLE table_name_11 (react INTEGER, time VARCHAR, rank VARCHAR) | What is the average react of the athlete with a time less than 22.29 and a rank greater than 1? |
SELECT opponent FROM table_name_22 WHERE date = "december 7, 2003" | CREATE TABLE table_name_22 (opponent VARCHAR, date VARCHAR) | Who is the Opponent on December 7, 2003? |
SELECT tv_time FROM table_name_40 WHERE attendance = "73,578" | CREATE TABLE table_name_40 (tv_time VARCHAR, attendance VARCHAR) | What is the Tv Time of the game with an Attendance of 73,578? |
SELECT MAX(result) FROM table_name_7 WHERE name = "wallace spearmon" AND reaction_time > 0.167 | CREATE TABLE table_name_7 (result INTEGER, name VARCHAR, reaction_time VARCHAR) | What is the highest result for Wallace Spearmon when the reaction time is greater than 0.167? |
SELECT result FROM table_name_12 WHERE lane = 3 | CREATE TABLE table_name_12 (result VARCHAR, lane VARCHAR) | What was the result for Lane 3? |
SELECT MIN(result) FROM table_name_66 WHERE reaction_time > 0.185 AND name = "christian malcolm" AND lane > 3 | CREATE TABLE table_name_66 (result INTEGER, lane VARCHAR, reaction_time VARCHAR, name VARCHAR) | What is the lowest result for Christian Malcolm with a reaction time greater than 0.185 and a lane higher than 3? |
SELECT MIN(conceded) FROM table_name_71 WHERE draws = 1 AND scored > 14 | CREATE TABLE table_name_71 (conceded INTEGER, draws VARCHAR, scored VARCHAR) | What are the lowest conceded with 1 draw, and a score larger than 14? |
SELECT MIN(losses) FROM table_name_38 WHERE scored > 13 AND draws > 7 | CREATE TABLE table_name_38 (losses INTEGER, scored VARCHAR, draws VARCHAR) | What are the lowest losses with more than 13 scored, and more than 7 draws? |
SELECT AVG(played) FROM table_name_37 WHERE points < 8 | CREATE TABLE table_name_37 (played INTEGER, points INTEGER) | What is the average played for less than 8 points? |
SELECT competition FROM table_name_73 WHERE result = "1β2" | CREATE TABLE table_name_73 (competition VARCHAR, result VARCHAR) | What competition has a Result of 1β2? |
SELECT moving_from FROM table_name_33 WHERE country = "hun" | CREATE TABLE table_name_33 (moving_from VARCHAR, country VARCHAR) | What is moving from fee in Hun country? |
SELECT type FROM table_name_81 WHERE country = "aut" | CREATE TABLE table_name_81 (type VARCHAR, country VARCHAR) | What is thr type in Aut country? |
SELECT owner FROM table_name_8 WHERE format = "adult hits" | CREATE TABLE table_name_8 (owner VARCHAR, format VARCHAR) | Who is the owner of the radio station that plays adult hits? |
SELECT call_sign FROM table_name_7 WHERE owner = "astral media" | CREATE TABLE table_name_7 (call_sign VARCHAR, owner VARCHAR) | What is the call sign for the radio owned by astral media? |
SELECT frequency FROM table_name_6 WHERE owner = "bell media" AND call_sign = "chsu-fm" | CREATE TABLE table_name_6 (frequency VARCHAR, owner VARCHAR, call_sign VARCHAR) | What is the frequency for the radio owned by bell media with a call sign of chsu-fm? |
SELECT branding FROM table_name_44 WHERE frequency = "1150 am" | CREATE TABLE table_name_44 (branding VARCHAR, frequency VARCHAR) | What is the branding for the radio with a frequency of 1150 am? |
SELECT format FROM table_name_8 WHERE frequency = "00 96.3 fm" | CREATE TABLE table_name_8 (format VARCHAR, frequency VARCHAR) | What was the format for the radio with a frequency of 00 96.3 fm? |
SELECT owner FROM table_name_90 WHERE frequency = "0 101.5 fm" | CREATE TABLE table_name_90 (owner VARCHAR, frequency VARCHAR) | Who is the owner of the radio frequency of 0 101.5 fm? |
SELECT COUNT(time) FROM table_name_44 WHERE name = "matt targett" AND lane > 7 | CREATE TABLE table_name_44 (time VARCHAR, name VARCHAR, lane VARCHAR) | how many times is the name matt targett and the lane higher than 7? |
SELECT MAX(time) FROM table_name_30 WHERE rank < 5 AND name = "eamon sullivan" | CREATE TABLE table_name_30 (time INTEGER, rank VARCHAR, name VARCHAR) | what is the highest time when the rank is less than 5 and the name is eamon sullivan? |
SELECT AVG(rank) FROM table_name_97 WHERE lane > 4 AND name = "dominik meichtry" | CREATE TABLE table_name_97 (rank INTEGER, lane VARCHAR, name VARCHAR) | what is the average rank when the lane is more than 4 and the name is dominik meichtry? |
SELECT 2012 AS _employees__total_ FROM table_name_63 WHERE rank__2012_ = 7 | CREATE TABLE table_name_63 (rank__2012_ VARCHAR) | What is the 2012 Employees (Total) when the rank (2012) is 7? |
SELECT SUM(2010 AS _employees__total_) FROM table_name_1 WHERE employer = "university of alberta" | CREATE TABLE table_name_1 (employer VARCHAR) | What shows for 2010 Employees (Total) when the employer is University of Alberta? |
SELECT MAX(year) FROM table_name_9 WHERE name = "190 south lasalle street" | CREATE TABLE table_name_9 (year INTEGER, name VARCHAR) | What year was the 190 South Lasalle Street? |
SELECT rank FROM table_name_94 WHERE time = "4:00.191" | CREATE TABLE table_name_94 (rank VARCHAR, time VARCHAR) | What rank has a Time of 4:00.191? |
SELECT time FROM table_name_5 WHERE country = "brazil" | CREATE TABLE table_name_5 (time VARCHAR, country VARCHAR) | What is the time for Brazil? |
SELECT date FROM table_name_16 WHERE format = "cd (limited edition steel-box)" AND country = "united kingdom" | CREATE TABLE table_name_16 (date VARCHAR, format VARCHAR, country VARCHAR) | what is the date when the format is cd (limited edition steel-box) from united kingdom? |
SELECT country FROM table_name_61 WHERE format = "cd" AND label = "sony music" AND catalogue_no = "sicp-2055" | CREATE TABLE table_name_61 (country VARCHAR, catalogue_no VARCHAR, format VARCHAR, label VARCHAR) | What is the country that has the format of cd, the label of sony music and the catalogue no sicp-2055? |
SELECT format FROM table_name_28 WHERE country = "united kingdom" AND date = "20 october 2008" | CREATE TABLE table_name_28 (format VARCHAR, country VARCHAR, date VARCHAR) | what is the format for the country united kingdom on 20 october 2008? |
SELECT catalogue_no FROM table_name_12 WHERE format = "cd (limited edition steel-box)" AND country = "germany" | CREATE TABLE table_name_12 (catalogue_no VARCHAR, format VARCHAR, country VARCHAR) | what is the catalogue no when the format is cd (limited edition steel-box) and the country is germany? |
SELECT MIN(total) FROM table_name_11 WHERE rank = "4" AND silver > 2 | CREATE TABLE table_name_11 (total INTEGER, rank VARCHAR, silver VARCHAR) | Which Total has a Rank of 4, and a Silver larger than 2? |
SELECT SUM(total) FROM table_name_44 WHERE rank = "5" AND bronze > 3 | CREATE TABLE table_name_44 (total INTEGER, rank VARCHAR, bronze VARCHAR) | How much Total has a Rank of 5, and a Bronze larger than 3? |
SELECT MAX(silver) FROM table_name_1 WHERE nation = "total" AND bronze < 18 | CREATE TABLE table_name_1 (silver INTEGER, nation VARCHAR, bronze VARCHAR) | Which Silver has a Nation of total, and a Bronze smaller than 18? |
SELECT COUNT(silver) FROM table_name_58 WHERE nation = "total" AND "total" < 54 | CREATE TABLE table_name_58 (silver VARCHAR, nation VARCHAR) | How much Silver has a Nation of total, and a Total smaller than 54? |
SELECT result FROM table_name_68 WHERE award = "best current affairs presenter" | CREATE TABLE table_name_68 (result VARCHAR, award VARCHAR) | What was the result for the award for best current affairs presenter? |
SELECT award FROM table_name_84 WHERE organisation = "lianhe zaobao" | CREATE TABLE table_name_84 (award VARCHAR, organisation VARCHAR) | Which award was given to Lianhe Zaobao? |
SELECT release_date FROM table_name_4 WHERE series = "mm" AND title = "feather finger" | CREATE TABLE table_name_4 (release_date VARCHAR, series VARCHAR, title VARCHAR) | What's the release date of Feather Finger with an MM Series? |
SELECT opponent FROM table_name_12 WHERE venue = "h" AND result = "0β1" AND date = "29 august 1998" | CREATE TABLE table_name_12 (opponent VARCHAR, date VARCHAR, venue VARCHAR, result VARCHAR) | Which Opponent has a Venue of h, and a Result of 0β1, and a Date of 29 august 1998? |
SELECT opponent FROM table_name_30 WHERE result = "1β1" AND date = "28 november 1998" | CREATE TABLE table_name_30 (opponent VARCHAR, result VARCHAR, date VARCHAR) | Which Opponent has a Result of 1β1, and a Date of 28 november 1998? |
SELECT venue FROM table_name_82 WHERE date = "14 november 1998" | CREATE TABLE table_name_82 (venue VARCHAR, date VARCHAR) | What was the venue on 14 november 1998? |
SELECT MAX(place) FROM table_name_3 WHERE draw > 1 AND points = 49 | CREATE TABLE table_name_3 (place INTEGER, draw VARCHAR, points VARCHAR) | Which Place is the highest one that has a Draw larger than 1, and 49 Points? |
SELECT song FROM table_name_90 WHERE points < 54 AND draw < 4 AND place < 10 | CREATE TABLE table_name_90 (song VARCHAR, place VARCHAR, points VARCHAR, draw VARCHAR) | Which Song has Points smaller than 54, and a Draw smaller than 4, and a Place smaller than 10? |
SELECT AVG(bronze) FROM table_name_30 WHERE total = 54 | CREATE TABLE table_name_30 (bronze INTEGER, total VARCHAR) | What is the bronze number when the total is 54/ |
SELECT MIN(bronze) FROM table_name_34 WHERE silver < 0 | CREATE TABLE table_name_34 (bronze INTEGER, silver INTEGER) | What is the least bronze number when the silver is less than 0? |
SELECT MIN(silver) FROM table_name_4 WHERE total > 2 AND bronze = 3 AND gold > 0 AND rank = "1" | CREATE TABLE table_name_4 (silver INTEGER, rank VARCHAR, gold VARCHAR, total VARCHAR, bronze VARCHAR) | What is the least silver when the total is more than 2, bronze is 3, gold is more than 0, and rank is 1? |
SELECT COUNT(silver) FROM table_name_44 WHERE total > 2 AND bronze < 3 AND rank = "7" | CREATE TABLE table_name_44 (silver VARCHAR, rank VARCHAR, total VARCHAR, bronze VARCHAR) | What is the number of silver when the total is more than 2, and bronze is less than 3, with a rank of 7? |
SELECT AVG(time) FROM table_name_94 WHERE lane < 4 AND rank > 6 | CREATE TABLE table_name_94 (time INTEGER, lane VARCHAR, rank VARCHAR) | Which Time has a Lane smaller than 4, and a Rank larger than 6? |
SELECT AVG(rank) FROM table_name_18 WHERE nationality = "france" AND name = "alain bernard" AND lane < 6 | CREATE TABLE table_name_18 (rank INTEGER, lane VARCHAR, nationality VARCHAR, name VARCHAR) | Which Rank has a Nationality of france, and a Name of alain bernard, and a Lane smaller than 6? |
SELECT nationality FROM table_name_99 WHERE rank > 1 AND time < 22.12 AND lane < 4 AND name = "ashley callus" | CREATE TABLE table_name_99 (nationality VARCHAR, name VARCHAR, lane VARCHAR, rank VARCHAR, time VARCHAR) | Which Nationality has a Rank larger than 1, and a Time smaller than 22.12, and a Lane smaller than 4, and a Name of ashley callus? |
SELECT SUM(attendance) FROM table_name_62 WHERE date = "8 october 2008" | CREATE TABLE table_name_62 (attendance INTEGER, date VARCHAR) | When the date is 8 october 2008 what is the sum of attendance? |
SELECT date FROM table_name_2 WHERE against = "pohang steelers" | CREATE TABLE table_name_2 (date VARCHAR, against VARCHAR) | What date has an against of pohang steelers? |
SELECT weekday FROM table_name_68 WHERE against = "kashima antlers" | CREATE TABLE table_name_68 (weekday VARCHAR, against VARCHAR) | What weekday has an against of kashima antlers? |
SELECT score FROM table_name_14 WHERE game = 4 | CREATE TABLE table_name_14 (score VARCHAR, game VARCHAR) | What was the final score of Game #4? |
SELECT level FROM table_name_26 WHERE leading_scorer_1 = "tom greaves 8" | CREATE TABLE table_name_26 (level VARCHAR, leading_scorer_1 VARCHAR) | Which Level has a Leading scorer 1 of tom greaves 8? |
SELECT leading_scorer_1 FROM table_name_8 WHERE season = "2010β11" | CREATE TABLE table_name_8 (leading_scorer_1 VARCHAR, season VARCHAR) | Which Leading scorer 1 has a Season of 2010β11? |
SELECT leading_scorer_1 FROM table_name_2 WHERE leaguecontested = "northern premier league premier division" AND fa_cup = "2q" | CREATE TABLE table_name_2 (leading_scorer_1 VARCHAR, leaguecontested VARCHAR, fa_cup VARCHAR) | Which Leading scorer 1 has a League Contested of northern premier league premier division, and an FA Cup of 2q? |
SELECT AVG(level) FROM table_name_45 WHERE leaguecontested = "northern premier league premier division" AND season = "2011β12" | CREATE TABLE table_name_45 (level INTEGER, leaguecontested VARCHAR, season VARCHAR) | Which Level has a League Contested of northern premier league premier division, and a Season of 2011β12? |
SELECT MIN(top_5) FROM table_name_36 WHERE cuts_made = 1 | CREATE TABLE table_name_36 (top_5 INTEGER, cuts_made VARCHAR) | What is the least Top-5 when 1 is the cuts made? |
SELECT MIN(top_5) FROM table_name_12 WHERE events < 0 | CREATE TABLE table_name_12 (top_5 INTEGER, events INTEGER) | With events less than 0, what is the fewest Top-5? |
SELECT AVG(wins) FROM table_name_79 WHERE cuts_made < 0 | CREATE TABLE table_name_79 (wins INTEGER, cuts_made INTEGER) | How many wins of average has cuts made less than 0? |
SELECT COUNT(events) FROM table_name_58 WHERE top_5 = 2 AND cuts_made = 4 AND wins < 0 | CREATE TABLE table_name_58 (events VARCHAR, wins VARCHAR, top_5 VARCHAR, cuts_made VARCHAR) | How many events total is the Top-5 2, and 4 is the cuts made, and less than 0 wins? |
SELECT AVG(wins) FROM table_name_15 WHERE tournament = "the open championship" AND cuts_made > 3 | CREATE TABLE table_name_15 (wins INTEGER, tournament VARCHAR, cuts_made VARCHAR) | In the Open Championship with more than 3 cuts made, what is the average wins? |
SELECT lane FROM table_name_23 WHERE heat < 3 AND nationality = "barbados" | CREATE TABLE table_name_23 (lane VARCHAR, heat VARCHAR, nationality VARCHAR) | What lane did the barbados swimmer compete in before heat 3? |
SELECT time FROM table_name_24 WHERE heat > 3 AND lane < 5 AND rank = 5 | CREATE TABLE table_name_24 (time VARCHAR, rank VARCHAR, heat VARCHAR, lane VARCHAR) | What was the time of the 5th ranked swimmer who swam after heat 3 and was in a lane under 5? |
SELECT AVG(population) FROM table_name_17 WHERE area__km_2__ < 433.7 AND code = 23013 | CREATE TABLE table_name_17 (population INTEGER, area__km_2__ VARCHAR, code VARCHAR) | What is the average population for an area less than 433.7km and a 23013 code? |
SELECT COUNT(code) FROM table_name_54 WHERE place = "amadiba" | CREATE TABLE table_name_54 (code VARCHAR, place VARCHAR) | What is the total code number for Amadiba? |
SELECT COUNT(capacity) FROM table_name_61 WHERE club = "leicester tigers" | CREATE TABLE table_name_61 (capacity VARCHAR, club VARCHAR) | What is the total capacity for the Leicester Tigers? |
SELECT city_town FROM table_name_3 WHERE stadium = "welford road" | CREATE TABLE table_name_3 (city_town VARCHAR, stadium VARCHAR) | What town has the Welford Road Stadium? |
Subsets and Splits