answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT MAX(game) FROM table_name_6 WHERE date = "july 31" | CREATE TABLE table_name_6 (game INTEGER, date VARCHAR) | What is the highest game that has July 31 as the date? |
SELECT SUM(river_mile) FROM table_name_34 WHERE location_[l_] = "greenup, kentucky" | CREATE TABLE table_name_34 (river_mile INTEGER, location_ VARCHAR, l_ VARCHAR) | What is the total of the River Mile in Greenup, Kentucky? |
SELECT river_mile FROM table_name_32 WHERE lock_side = "rdb" AND pool_length__miles_ = "55.4" | CREATE TABLE table_name_32 (river_mile VARCHAR, lock_side VARCHAR, pool_length__miles_ VARCHAR) | What is the River Mile with a RDB lock side and a pool length of 55.4? |
SELECT MAX(river_mile) FROM table_name_71 WHERE pool_length__miles_ = "42.2" AND lock_lift_drop__in_feet_ = "21" | CREATE TABLE table_name_71 (river_mile INTEGER, pool_length__miles_ VARCHAR, lock_lift_drop__in_feet_ VARCHAR) | What is the highest River Mile that has a pool length of 42.2 miles or a lock/lift drop of 21 feet? |
SELECT location_[l_] FROM table_name_8 WHERE river_mile > 938.9 AND locks_ & _dam = "olmsted locks and dam" | CREATE TABLE table_name_8 (location_ VARCHAR, l_ VARCHAR, river_mile VARCHAR, locks_ VARCHAR, _dam VARCHAR) | What is the location of the river mile that is larger than 938.9, and Olmsted Locks and Dam? |
SELECT MIN(rank) FROM table_name_4 WHERE time = "8:13.67" | CREATE TABLE table_name_4 (rank INTEGER, time VARCHAR) | What is the lowest ranking for 8:13.67? |
SELECT time FROM table_name_57 WHERE country = "kazakhstan" | CREATE TABLE table_name_57 (time VARCHAR, country VARCHAR) | What is the time for Kazakhstan? |
SELECT notes FROM table_name_8 WHERE country = "south africa" | CREATE TABLE table_name_8 (notes VARCHAR, country VARCHAR) | What are the notes for South Africa? |
SELECT country FROM table_name_29 WHERE rank > 5 | CREATE TABLE table_name_29 (country VARCHAR, rank INTEGER) | What country is ranked higher than 5? |
SELECT COUNT(rank) FROM table_name_24 WHERE notes = "fc" AND country = "south africa" | CREATE TABLE table_name_24 (rank VARCHAR, notes VARCHAR, country VARCHAR) | What is the total rank and fc notes from South Africa? |
SELECT series FROM table_name_15 WHERE director = "friz freleng" AND production_number = 1614 | CREATE TABLE table_name_15 (series VARCHAR, director VARCHAR, production_number VARCHAR) | From what series was the title with a production number of 1614 that was directed by Friz Freleng? |
SELECT result FROM table_name_39 WHERE record = "1-3" | CREATE TABLE table_name_39 (result VARCHAR, record VARCHAR) | What is the Result of the event with a Record of 1-3? |
SELECT round FROM table_name_61 WHERE record = "5-4" | CREATE TABLE table_name_61 (round VARCHAR, record VARCHAR) | What is the Round of the event with a Record of 5-4? |
SELECT COUNT(latitude) FROM table_name_51 WHERE land___sqmi__ > 35.747 AND water__sqmi_ = 0 AND geo_id < 3809981860 AND township = "van meter" | CREATE TABLE table_name_51 (latitude VARCHAR, township VARCHAR, geo_id VARCHAR, land___sqmi__ VARCHAR, water__sqmi_ VARCHAR) | What was the latitude for van meter who had a land(sqmi) larger than 35.747, Water(sqmi) of 0 and a GEO ID smaller than 3809981860? |
SELECT MAX(pop__2010_) FROM table_name_85 WHERE latitude = 48.853051 AND water__sqmi_ < 0.9590000000000001 | CREATE TABLE table_name_85 (pop__2010_ INTEGER, latitude VARCHAR, water__sqmi_ VARCHAR) | What was the population fo the township with a Latitude of 48.853051, and a Water (sqmi) smaller than 0.9590000000000001? |
SELECT MAX(ansi_code) FROM table_name_63 WHERE water__sqmi_ = 0 AND township = "van meter" AND longitude > -98.444062 | CREATE TABLE table_name_63 (ansi_code INTEGER, longitude VARCHAR, water__sqmi_ VARCHAR, township VARCHAR) | Van Meter has a water(sqmi) of 0 and a longitude larger than -98.444062, what was their highest ANSI code? |
SELECT MIN(water__sqmi_) FROM table_name_47 WHERE county = "dickey" AND longitude < -98.444062 | CREATE TABLE table_name_47 (water__sqmi_ INTEGER, county VARCHAR, longitude VARCHAR) | What was the lowest water(sqmi) in the county of dickey where the longitude was smaller than -98.444062? |
SELECT coach FROM table_name_36 WHERE team = "northamptonshire steelbacks" | CREATE TABLE table_name_36 (coach VARCHAR, team VARCHAR) | Who is the coach for the Northamptonshire Steelbacks? |
SELECT team FROM table_name_36 WHERE location = "leicester" | CREATE TABLE table_name_36 (team VARCHAR, location VARCHAR) | Which team is located in Leicester? |
SELECT team FROM table_name_5 WHERE county = "sussex" | CREATE TABLE table_name_5 (team VARCHAR, county VARCHAR) | Which team is in Sussex county? |
SELECT home_ground FROM table_name_96 WHERE location = "canterbury" | CREATE TABLE table_name_96 (home_ground VARCHAR, location VARCHAR) | What is the home ground for the team located in Canterbury? |
SELECT captain FROM table_name_28 WHERE coach = "giles white" | CREATE TABLE table_name_28 (captain VARCHAR, coach VARCHAR) | Who is the captain of the team coached by Giles White? |
SELECT division FROM table_name_68 WHERE team = "derbyshire falcons" | CREATE TABLE table_name_68 (division VARCHAR, team VARCHAR) | Which division is the Derbyshire Falcons in? |
SELECT tie_no FROM table_name_52 WHERE home_team = "derby county" | CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR) | Which tie number had a home team of Derby County? |
SELECT score FROM table_name_50 WHERE away_team = "stoke city" | CREATE TABLE table_name_50 (score VARCHAR, away_team VARCHAR) | What was the score of the tie with an away team of Stoke City? |
SELECT artist FROM table_name_70 WHERE draw < 14 AND points < 73 AND language = "turkish" | CREATE TABLE table_name_70 (artist VARCHAR, language VARCHAR, draw VARCHAR, points VARCHAR) | Which Artist has a Draw smaller than 14, and Points less than 73, and a Language of turkish? |
SELECT COUNT(points) FROM table_name_1 WHERE artist = "mia martini" | CREATE TABLE table_name_1 (points VARCHAR, artist VARCHAR) | How many points does mia martini have? |
SELECT artist FROM table_name_92 WHERE english_translation = "all this is music" | CREATE TABLE table_name_92 (artist VARCHAR, english_translation VARCHAR) | Which Artist has an English translation of all this is music? |
SELECT athlete FROM table_name_96 WHERE place = "grenoble" | CREATE TABLE table_name_96 (athlete VARCHAR, place VARCHAR) | What athlete has a Grenoble place? |
SELECT pick FROM table_name_76 WHERE college = "syracuse" | CREATE TABLE table_name_76 (pick VARCHAR, college VARCHAR) | What is the Pick number of the Player from Syracuse? |
SELECT player FROM table_name_68 WHERE pick > 44 AND position = "offensive guard" AND college = "mississippi state" | CREATE TABLE table_name_68 (player VARCHAR, college VARCHAR, pick VARCHAR, position VARCHAR) | What is the Offensive Guard Player from Mississippi State College with a Pick number larter than 44? |
SELECT college FROM table_name_47 WHERE team = "denver broncos" | CREATE TABLE table_name_47 (college VARCHAR, team VARCHAR) | What is the College of the Pick from Denver Broncos? |
SELECT 2008 AS _status FROM table_name_15 WHERE democratic = "rosa delauro" | CREATE TABLE table_name_15 (democratic VARCHAR) | What's the 2008 Status of Rosa Delauro? |
SELECT incumbent FROM table_name_63 WHERE republican = "bo itshaky" | CREATE TABLE table_name_63 (incumbent VARCHAR, republican VARCHAR) | Who was the incumbent when Bo Itshaky was the Republican? |
SELECT republican FROM table_name_49 WHERE district > 4 | CREATE TABLE table_name_49 (republican VARCHAR, district INTEGER) | Who was the Republican in the district more than 4? |
SELECT republican FROM table_name_27 WHERE green = "harold burbank" | CREATE TABLE table_name_27 (republican VARCHAR, green VARCHAR) | Who was the Republican when the green was Harold Burbank? |
SELECT democratic FROM table_name_40 WHERE incumbent = "christopher shays" | CREATE TABLE table_name_40 (democratic VARCHAR, incumbent VARCHAR) | Who was the Democratic when then Incumbent was Christopher Shays? |
SELECT director FROM table_name_35 WHERE title = "antz" | CREATE TABLE table_name_35 (director VARCHAR, title VARCHAR) | Who is the director of Antz? |
SELECT studio_s_ FROM table_name_71 WHERE director = "philip frank messina" | CREATE TABLE table_name_71 (studio_s_ VARCHAR, director VARCHAR) | What studio has the director Philip Frank Messina? |
SELECT clubs FROM table_name_43 WHERE round = "first round" | CREATE TABLE table_name_43 (clubs VARCHAR, round VARCHAR) | What are the club number for the first round? |
SELECT new_entries_this_round FROM table_name_82 WHERE clubs = "48 → 32" | CREATE TABLE table_name_82 (new_entries_this_round VARCHAR, clubs VARCHAR) | when there were 48 → 32 clubs? |
SELECT location FROM table_name_94 WHERE time = "1:37" | CREATE TABLE table_name_94 (location VARCHAR, time VARCHAR) | Where was the fight that took a time of 1:37? |
SELECT res FROM table_name_79 WHERE time = "15:00" AND opponent = "kiuma kunioku" | CREATE TABLE table_name_79 (res VARCHAR, time VARCHAR, opponent VARCHAR) | What was the resolution of the fight against kiuma kunioku with a time of 15:00? |
SELECT AVG(bronze) FROM table_name_67 WHERE nation = "poland" | CREATE TABLE table_name_67 (bronze INTEGER, nation VARCHAR) | What is the average number of bronze medals won by Poland? |
SELECT AVG(gold) FROM table_name_90 WHERE total > 1 AND bronze < 10 AND nation = "switzerland" AND silver > 1 | CREATE TABLE table_name_90 (gold INTEGER, silver VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR) | What is the average number of gold medals Switzerland received when they ranked larger than 1st and received fewer than 10 bronze medals and more than 1 silver medal? |
SELECT COUNT(rank) FROM table_name_7 WHERE col__m_ > 0 | CREATE TABLE table_name_7 (rank VARCHAR, col__m_ INTEGER) | What is the rank when the col is larger than 0? |
SELECT AVG(elevation__m_) FROM table_name_22 WHERE country = "vanuatu" AND rank < 3 | CREATE TABLE table_name_22 (elevation__m_ INTEGER, country VARCHAR, rank VARCHAR) | What is the elevation of Vanuatu, when the rank is smaller than 3? |
SELECT platform FROM table_name_89 WHERE title = "super mario all-stars" | CREATE TABLE table_name_89 (platform VARCHAR, title VARCHAR) | What's the platform of Super Mario All-Stars? |
SELECT AVG(losses) FROM table_name_44 WHERE wins < 4 AND against > 1728 | CREATE TABLE table_name_44 (losses INTEGER, wins VARCHAR, against VARCHAR) | What is the average number of losses when there are more than 4 wins, and the against matches is more than 1728? |
SELECT COUNT(draws) FROM table_name_41 WHERE wins = 1 AND against < 1728 | CREATE TABLE table_name_41 (draws VARCHAR, wins VARCHAR, against VARCHAR) | What is the total number of draws when there is 1 Win, and less than 1728 against matches? |
SELECT MAX(wins) FROM table_name_80 WHERE losses < 2 | CREATE TABLE table_name_80 (wins INTEGER, losses INTEGER) | What is the highest number of wins when there are less than 2 losses? |
SELECT MAX(losses) FROM table_name_92 WHERE club = "cobden" AND wins < 1 | CREATE TABLE table_name_92 (losses INTEGER, club VARCHAR, wins VARCHAR) | What is the highest number of losses for the Cobden club when there is less than 1 win? |
SELECT AVG(wins) FROM table_name_43 WHERE club = "terang" AND draws < 0 | CREATE TABLE table_name_43 (wins INTEGER, club VARCHAR, draws VARCHAR) | What is the average number of wins for the Terang Club, when there are less than 0 draws? |
SELECT 2 AS nd_place_team FROM table_name_93 WHERE host_location = "tulsa, ok" AND year < 1956 | CREATE TABLE table_name_93 (host_location VARCHAR, year VARCHAR) | Who was the 2nd place team when the location was Tulsa, OK before 1956? |
SELECT SUM(year) FROM table_name_9 WHERE location = "koror, palau" | CREATE TABLE table_name_9 (year INTEGER, location VARCHAR) | In what Year is the Location of the Festival Koror, Palau? |
SELECT location FROM table_name_40 WHERE iteration = "10th" | CREATE TABLE table_name_40 (location VARCHAR, iteration VARCHAR) | What is the Location of the 10th Iteration? |
SELECT SUM(county) FROM table_name_16 WHERE party = "people before profit" AND borough > 0 | CREATE TABLE table_name_16 (county INTEGER, party VARCHAR, borough VARCHAR) | How many counties have people before profit as the party, and a borough greater than 0? |
SELECT SUM(county) FROM table_name_54 WHERE total = 2 AND city = 0 AND town < 1 | CREATE TABLE table_name_54 (county INTEGER, town VARCHAR, total VARCHAR, city VARCHAR) | How many counties have 2 as the total, 0 as the city with a town less than 1? |
SELECT AVG(city) FROM table_name_70 WHERE total < 2 AND borough > 0 | CREATE TABLE table_name_70 (city INTEGER, total VARCHAR, borough VARCHAR) | What average city has a total less than 2, with a borough greater than 0? |
SELECT COUNT(rank) FROM table_name_21 WHERE lane = 5 | CREATE TABLE table_name_21 (rank VARCHAR, lane VARCHAR) | What is the rank # of the swimmer in Lane 5? |
SELECT total_fat FROM table_name_33 WHERE smoke_point = "°c ()" AND polyunsaturated_fat = "37g" | CREATE TABLE table_name_33 (total_fat VARCHAR, smoke_point VARCHAR, polyunsaturated_fat VARCHAR) | What is the total fat with a smoke point of °c () and 37g of polyunsaturated fat? |
SELECT saturated_fat FROM table_name_6 WHERE polyunsaturated_fat = "28g" | CREATE TABLE table_name_6 (saturated_fat VARCHAR, polyunsaturated_fat VARCHAR) | What is the saturated fat with 28g of polyunsaturated fat? |
SELECT monounsaturated_fat FROM table_name_22 WHERE saturated_fat = "15g" | CREATE TABLE table_name_22 (monounsaturated_fat VARCHAR, saturated_fat VARCHAR) | What is the monounsaturated fat with 15g of saturated fat? |
SELECT saturated_fat FROM table_name_94 WHERE total_fat = "100g" AND polyunsaturated_fat = "11g" | CREATE TABLE table_name_94 (saturated_fat VARCHAR, total_fat VARCHAR, polyunsaturated_fat VARCHAR) | What is the saturated fat with a total fat of 100g and 11g of polyunsaturated fat? |
SELECT monounsaturated_fat FROM table_name_85 WHERE smoke_point = "°c ()" AND total_fat = "100g" AND polyunsaturated_fat = "11g" AND saturated_fat = "14g" | CREATE TABLE table_name_85 (monounsaturated_fat VARCHAR, saturated_fat VARCHAR, polyunsaturated_fat VARCHAR, smoke_point VARCHAR, total_fat VARCHAR) | What is the monounsaturated fat with a smoke point of °c (), a total fat of 100g, 11g of polyunsaturated fat, and 14g of saturated fat? |
SELECT polyunsaturated_fat FROM table_name_28 WHERE smoke_point = "°c ()" AND total_fat = "100g" AND monounsaturated_fat = "63g" | CREATE TABLE table_name_28 (polyunsaturated_fat VARCHAR, monounsaturated_fat VARCHAR, smoke_point VARCHAR, total_fat VARCHAR) | What is the polyunsaturated fat with a smoke point of °c (), a total fat of 100g and 63g of monounsaturated fat? |
SELECT win__percentage FROM table_name_14 WHERE 2003 = "atp world tour finals" | CREATE TABLE table_name_14 (win__percentage VARCHAR) | What is the win % of the 2003 atp world tour finals? |
SELECT 2006 FROM table_name_64 WHERE 2011 = "grand slam tournaments" | CREATE TABLE table_name_64 (Id VARCHAR) | What is the 2006 value of the 2011 grand slam tournaments? |
SELECT 2007 FROM table_name_38 WHERE 2009 = "1r" | CREATE TABLE table_name_38 (Id VARCHAR) | What is the 2007 value with a 1r in 2009? |
SELECT 2007 FROM table_name_48 WHERE 2006 = "4r" AND 2004 = "1r" AND 2009 = "4r" | CREATE TABLE table_name_48 (Id VARCHAR) | What is the 2007 value with a 4r in 2006, a 1r in 2004, and a 4r in 2009? |
SELECT home_team FROM table_name_91 WHERE away_team = "rivercity rage" | CREATE TABLE table_name_91 (home_team VARCHAR, away_team VARCHAR) | who is the home team when the away team is rivercity rage? |
SELECT winner FROM table_name_64 WHERE score = "71-62" | CREATE TABLE table_name_64 (winner VARCHAR, score VARCHAR) | who is the winner when the score is 71-62? |
SELECT winner FROM table_name_48 WHERE home_team = "sioux falls storm" AND year < 2012 | CREATE TABLE table_name_48 (winner VARCHAR, home_team VARCHAR, year VARCHAR) | who is the winner when the home team is sioux falls storm and the year is earlier than 2012? |
SELECT score FROM table_name_99 WHERE away_team = "rivercity rage" | CREATE TABLE table_name_99 (score VARCHAR, away_team VARCHAR) | what is the score when the away team is rivercity rage? |
SELECT SUM(year) FROM table_name_37 WHERE score = "59-32" | CREATE TABLE table_name_37 (year INTEGER, score VARCHAR) | what is the year when the score is 59-32? |
SELECT venue FROM table_name_77 WHERE established > 1948 | CREATE TABLE table_name_77 (venue VARCHAR, established INTEGER) | What is the venue established after 1948? |
SELECT league FROM table_name_26 WHERE established < 1930 AND club = "rayo vallecano" | CREATE TABLE table_name_26 (league VARCHAR, established VARCHAR, club VARCHAR) | What is the league established before 1930 with the rayo vallecano club? |
SELECT sport FROM table_name_64 WHERE club = "rayo vallecano" | CREATE TABLE table_name_64 (sport VARCHAR, club VARCHAR) | What sport is the rayo vallecano club in? |
SELECT sport FROM table_name_46 WHERE club = "cb estudiantes" | CREATE TABLE table_name_46 (sport VARCHAR, club VARCHAR) | What sport is the cb estudiantes club in? |
SELECT label FROM table_name_57 WHERE catalogue__number = "cad 2014 cd" | CREATE TABLE table_name_57 (label VARCHAR, catalogue__number VARCHAR) | What is the label for CAD 2014 CD? |
SELECT format FROM table_name_40 WHERE catalogue__number = "gad 2014 cd" AND date = "july 6, 1998" | CREATE TABLE table_name_40 (format VARCHAR, catalogue__number VARCHAR, date VARCHAR) | What is the format for the catalogue number GAD 2014 CD on July 6, 1998? |
SELECT SUM(wins) FROM table_name_52 WHERE draws < 0 | CREATE TABLE table_name_52 (wins INTEGER, draws INTEGER) | How many wins are there when the draws are less than 0? |
SELECT MAX(losses) FROM table_name_7 WHERE wins = 5 AND draws < 0 | CREATE TABLE table_name_7 (losses INTEGER, wins VARCHAR, draws VARCHAR) | What are the most losses when there are 5 wins and draws less than 0? |
SELECT MAX(wins) FROM table_name_84 WHERE club = "terang" AND draws < 0 | CREATE TABLE table_name_84 (wins INTEGER, club VARCHAR, draws VARCHAR) | What are the most wins of Terang with the draws less than 0? |
SELECT MIN(against) FROM table_name_74 WHERE losses < 3 AND draws > 0 | CREATE TABLE table_name_74 (against INTEGER, losses VARCHAR, draws VARCHAR) | What is the lowest against when the draws are more than 0 and the losses are less than 3? |
SELECT MIN(losses) FROM table_name_18 WHERE against < 630 AND club = "warrnambool" AND wins > 6 | CREATE TABLE table_name_18 (losses INTEGER, wins VARCHAR, against VARCHAR, club VARCHAR) | What are the least losses of Warrnambool with more than 6 wins and less than 630 against? |
SELECT AVG(draws) FROM table_name_23 WHERE losses > 3 AND club = "cobden" | CREATE TABLE table_name_23 (draws INTEGER, losses VARCHAR, club VARCHAR) | What are the draws of Cobden when there are more than 3 losses? |
SELECT AVG(bronze) FROM table_name_80 WHERE silver = 0 AND rank = "17" AND gold < 1 | CREATE TABLE table_name_80 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR) | What average bronze has 0 as the silver, 17 as the rank, and a gold less than 1? |
SELECT MIN(silver) FROM table_name_33 WHERE bronze = 2 AND total > 4 | CREATE TABLE table_name_33 (silver INTEGER, bronze VARCHAR, total VARCHAR) | What is the lowest silver that has 2 as the bronze, with a total greater than 4? |
SELECT COUNT(bronze) FROM table_name_81 WHERE total < "11" AND rank = "11" AND gold < 1 | CREATE TABLE table_name_81 (bronze VARCHAR, gold VARCHAR, total VARCHAR, rank VARCHAR) | How many bronzes have a total less than 11, with 11 as the rank, and a gold less than 1? |
SELECT memory FROM table_name_93 WHERE socket = "socket g1" AND turbo = "1/1/6/9" | CREATE TABLE table_name_93 (memory VARCHAR, socket VARCHAR, turbo VARCHAR) | What is the memory with a socket g1 and a 1/1/6/9 turbo? |
SELECT release_date FROM table_name_92 WHERE l3_cache = "6 mb" AND part_number_s_ = "by80607005259aabx80607i7740qm" | CREATE TABLE table_name_92 (release_date VARCHAR, l3_cache VARCHAR, part_number_s_ VARCHAR) | What is the release date of the 6 mb L3 cache with the part number by80607005259aabx80607i7740qm? |
SELECT MIN(draw) FROM table_name_55 WHERE artist = "beathoven" AND place < 16 | CREATE TABLE table_name_55 (draw INTEGER, artist VARCHAR, place VARCHAR) | What was the lowest draw for Beathoven when the place was smaller than 16? |
SELECT song FROM table_name_17 WHERE draw < 20 AND artist = "luca barbarossa" | CREATE TABLE table_name_17 (song VARCHAR, draw VARCHAR, artist VARCHAR) | What Luca Barbarossa song had a draw smaller than 20? |
SELECT opponent FROM table_name_17 WHERE location = "sec tournament" | CREATE TABLE table_name_17 (opponent VARCHAR, location VARCHAR) | Who did they play at sec tournament? |
SELECT location FROM table_name_10 WHERE record = "9-1-0" | CREATE TABLE table_name_10 (location VARCHAR, record VARCHAR) | Where was the game played when their record was 9-1-0? |
SELECT director FROM table_name_67 WHERE writer = "russell t davies and james moran" | CREATE TABLE table_name_67 (director VARCHAR, writer VARCHAR) | Who was the director of the episode written by Russell T Davies and James Moran? |
SELECT MAX(points) FROM table_name_95 WHERE drawn = 1 AND played > 14 | CREATE TABLE table_name_95 (points INTEGER, drawn VARCHAR, played VARCHAR) | Which Points have Drawn of 1, and a Played larger than 14? |
SELECT MAX(position) FROM table_name_34 WHERE drawn > 1 AND played < 14 | CREATE TABLE table_name_34 (position INTEGER, drawn VARCHAR, played VARCHAR) | Which Position has Drawn larger than 1, and a Played smaller than 14? |
SELECT MIN(lost) FROM table_name_30 WHERE drawn > 1 AND played > 14 | CREATE TABLE table_name_30 (lost INTEGER, drawn VARCHAR, played VARCHAR) | Which Lost has Drawn larger than 1, and a Played larger than 14? |
Subsets and Splits