text
stringlengths
114
1.06k
### question: what is the city of license for the station with the frequency mhz less than 102.3 abd erp w of 25? ### answer: SELECT city_of_license FROM table_name_64 WHERE frequency_mhz < 102.3 AND erp_w = 25 ### context: CREATE TABLE table_name_64 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)
### question: \What is the class of the station with the call sign w254ah? ### answer: SELECT class FROM table_name_35 WHERE call_sign = "w254ah" ### context: CREATE TABLE table_name_35 (class VARCHAR, call_sign VARCHAR)
### question: what is the class of the station with erp w more than 30? ### answer: SELECT class FROM table_name_54 WHERE erp_w > 30 ### context: CREATE TABLE table_name_54 (class VARCHAR, erp_w INTEGER)
### question: what is the highest frequency mhz with the call sign w292cu? ### answer: SELECT MAX(frequency_mhz) FROM table_name_77 WHERE call_sign = "w292cu" ### context: CREATE TABLE table_name_77 (frequency_mhz INTEGER, call_sign VARCHAR)
### question: Which constructor makes the ej15 ej15b chassis? ### answer: SELECT constructor FROM table_name_98 WHERE chassis = "ej15 ej15b" ### context: CREATE TABLE table_name_98 (constructor VARCHAR, chassis VARCHAR)
### question: Which tyre is on the car driven by Pedro de la Rosa? ### answer: SELECT tyre FROM table_name_35 WHERE driver = "pedro de la rosa" ### context: CREATE TABLE table_name_35 (tyre VARCHAR, driver VARCHAR)
### question: Which constructor made the car with a rb1 chassis and which is driven by David Coulthard? ### answer: SELECT constructor FROM table_name_34 WHERE chassis = "rb1" AND driver = "david coulthard" ### context: CREATE TABLE table_name_34 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR)
### question: Which constructor manufactured the car with a c24 chassis and which is driven by Jacques Villeneuve? ### answer: SELECT engine_† FROM table_name_85 WHERE chassis = "c24" AND driver = "jacques villeneuve" ### context: CREATE TABLE table_name_85 (engine_† VARCHAR, chassis VARCHAR, driver VARCHAR)
### question: What Region is the MHCL-20004 Catalog? ### answer: SELECT region FROM table_name_39 WHERE catalog = "mhcl-20004" ### context: CREATE TABLE table_name_39 (region VARCHAR, catalog VARCHAR)
### question: What region is the ALCA-272 Catalog? ### answer: SELECT region FROM table_name_88 WHERE catalog = "alca-272" ### context: CREATE TABLE table_name_88 (region VARCHAR, catalog VARCHAR)
### question: What label is the ALCA-9197 Catalog? ### answer: SELECT label FROM table_name_77 WHERE catalog = "alca-9197" ### context: CREATE TABLE table_name_77 (label VARCHAR, catalog VARCHAR)
### question: What date is the MHCL-20004 Catalog? ### answer: SELECT date FROM table_name_82 WHERE catalog = "mhcl-20004" ### context: CREATE TABLE table_name_82 (date VARCHAR, catalog VARCHAR)
### question: On what date was the Ed Remaster CD and TOCT-24365 Catalog released? ### answer: SELECT date FROM table_name_88 WHERE format = "ed remaster cd" AND catalog = "toct-24365" ### context: CREATE TABLE table_name_88 (date VARCHAR, format VARCHAR, catalog VARCHAR)
### question: What identities have more than 5 DVD volumes? ### answer: SELECT identity_ies_ FROM table_name_93 WHERE dvd_volume > 5 ### context: CREATE TABLE table_name_93 (identity_ies_ VARCHAR, dvd_volume INTEGER)
### question: How many DVD volumes was identified by Skippy Johnson? ### answer: SELECT dvd_volume FROM table_name_36 WHERE identity_ies_ = "skippy johnson" ### context: CREATE TABLE table_name_36 (dvd_volume VARCHAR, identity_ies_ VARCHAR)
### question: What was the score when St. Louis was the visiting team? ### answer: SELECT score FROM table_name_92 WHERE visitor = "st. louis" ### context: CREATE TABLE table_name_92 (score VARCHAR, visitor VARCHAR)
### question: What was the decision when Chicago was the visiting team? ### answer: SELECT decision FROM table_name_85 WHERE visitor = "chicago" ### context: CREATE TABLE table_name_85 (decision VARCHAR, visitor VARCHAR)
### question: What was the score on December 3 when Detroit was the home team and Legace took the decision? ### answer: SELECT score FROM table_name_52 WHERE home = "detroit" AND decision = "legace" AND date = "december 3" ### context: CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR, home VARCHAR, decision VARCHAR)
### question: What was the record when Minnesota was the visiting team? ### answer: SELECT record FROM table_name_68 WHERE visitor = "minnesota" ### context: CREATE TABLE table_name_68 (record VARCHAR, visitor VARCHAR)
### question: On what date was the record with catalog ALCA-275 released? ### answer: SELECT date FROM table_name_3 WHERE catalog = "alca-275" ### context: CREATE TABLE table_name_3 (date VARCHAR, catalog VARCHAR)
### question: What label released a record on March 25, 1984? ### answer: SELECT label FROM table_name_9 WHERE date = "march 25, 1984" ### context: CREATE TABLE table_name_9 (label VARCHAR, date VARCHAR)
### question: What label released a record on December 19, 2001? ### answer: SELECT label FROM table_name_83 WHERE date = "december 19, 2001" ### context: CREATE TABLE table_name_83 (label VARCHAR, date VARCHAR)
### question: What is the catalog of the record released on May 27, 2009? ### answer: SELECT catalog FROM table_name_94 WHERE date = "may 27, 2009" ### context: CREATE TABLE table_name_94 (catalog VARCHAR, date VARCHAR)
### question: On what date was a record from Village Records with catalog VRCL-2205 released? ### answer: SELECT date FROM table_name_5 WHERE label = "village records" AND catalog = "vrcl-2205" ### context: CREATE TABLE table_name_5 (date VARCHAR, label VARCHAR, catalog VARCHAR)
### question: On what date was the record with catalog ALCA-275 released? ### answer: SELECT date FROM table_name_32 WHERE catalog = "alca-275" ### context: CREATE TABLE table_name_32 (date VARCHAR, catalog VARCHAR)
### question: What was the earliest year that Yvette Alexander took office and was up for reelection after 2016? ### answer: SELECT MIN(took_office) FROM table_name_70 WHERE name = "yvette alexander" AND up_for_reelection > 2016 ### context: CREATE TABLE table_name_70 (took_office INTEGER, name VARCHAR, up_for_reelection VARCHAR)
### question: What is the earliest year a Chairman who took office after 2011 is up for reelection? ### answer: SELECT MIN(up_for_reelection) FROM table_name_80 WHERE took_office > 2011 AND position = "chairman" ### context: CREATE TABLE table_name_80 (up_for_reelection INTEGER, took_office VARCHAR, position VARCHAR)
### question: What year had less than 36 laps? ### answer: SELECT year FROM table_name_17 WHERE laps < 36 ### context: CREATE TABLE table_name_17 (year VARCHAR, laps INTEGER)
### question: What was the most laps with a finish of 10 and qualification of 106.185? ### answer: SELECT MAX(laps) FROM table_name_84 WHERE finish = "10" AND qual = "106.185" ### context: CREATE TABLE table_name_84 (laps INTEGER, finish VARCHAR, qual VARCHAR)
### question: What is the most laps with a qualification of 106.185? ### answer: SELECT MAX(laps) FROM table_name_38 WHERE qual = "106.185" ### context: CREATE TABLE table_name_38 (laps INTEGER, qual VARCHAR)
### question: In what year were laps less than 64 and the finish at 25? ### answer: SELECT year FROM table_name_59 WHERE laps < 64 AND finish = "25" ### context: CREATE TABLE table_name_59 (year VARCHAR, laps VARCHAR, finish VARCHAR)
### question: What was the qualification in 1932? ### answer: SELECT qual FROM table_name_51 WHERE year = "1932" ### context: CREATE TABLE table_name_51 (qual VARCHAR, year VARCHAR)
### question: What was the start with a rank of 3 in 1936? ### answer: SELECT start FROM table_name_12 WHERE rank = "3" AND year = "1936" ### context: CREATE TABLE table_name_12 (start VARCHAR, rank VARCHAR, year VARCHAR)
### question: For a Team 1 of Al-Merrikh, what was the aggregate? ### answer: SELECT agg FROM table_name_47 WHERE team_1 = "al-merrikh" ### context: CREATE TABLE table_name_47 (agg VARCHAR, team_1 VARCHAR)
### question: For an aggregate of 1-3, what was the 2nd leg? ### answer: SELECT 2 AS nd_leg FROM table_name_74 WHERE agg = "1-3" ### context: CREATE TABLE table_name_74 (agg VARCHAR)
### question: For a team 2 of Al-Faisaly, what was the 2nd leg? ### answer: SELECT 2 AS nd_leg FROM table_name_96 WHERE team_2 = "al-faisaly" ### context: CREATE TABLE table_name_96 (team_2 VARCHAR)
### question: What years is the private school in upper hutt? ### answer: SELECT years FROM table_name_90 WHERE area = "upper hutt" AND authority = "private" ### context: CREATE TABLE table_name_90 (years VARCHAR, area VARCHAR, authority VARCHAR)
### question: What school with a decile of 7 is in upper hutt? ### answer: SELECT name FROM table_name_39 WHERE decile = "7" AND area = "upper hutt" ### context: CREATE TABLE table_name_39 (name VARCHAR, decile VARCHAR, area VARCHAR)
### question: What authority is the coed school in pinehaven? ### answer: SELECT authority FROM table_name_58 WHERE gender = "coed" AND area = "pinehaven" ### context: CREATE TABLE table_name_58 (authority VARCHAR, gender VARCHAR, area VARCHAR)
### question: What years does plateau school serve? ### answer: SELECT years FROM table_name_96 WHERE name = "plateau school" ### context: CREATE TABLE table_name_96 (years VARCHAR, name VARCHAR)
### question: Is Upper valley middle school public or private? ### answer: SELECT authority FROM table_name_2 WHERE name = "upper valley middle school" ### context: CREATE TABLE table_name_2 (authority VARCHAR, name VARCHAR)
### question: What is the record on June 13? ### answer: SELECT record FROM table_name_57 WHERE date = "june 13" ### context: CREATE TABLE table_name_57 (record VARCHAR, date VARCHAR)
### question: Name the most lot number with notes of b4 bogies and diagram of 185 ### answer: SELECT MAX(lot_no) FROM table_name_46 WHERE notes = "b4 bogies" AND diagram = 185 ### context: CREATE TABLE table_name_46 (lot_no INTEGER, notes VARCHAR, diagram VARCHAR)
### question: Name the fleet numbers for diagram of 186 and lot number of 30798 ### answer: SELECT fleet_numbers FROM table_name_10 WHERE diagram = 186 AND lot_no = 30798 ### context: CREATE TABLE table_name_10 (fleet_numbers VARCHAR, diagram VARCHAR, lot_no VARCHAR)
### question: What line is 24.7 km and head towards Toyohashi East? ### answer: SELECT name FROM table_name_36 WHERE direction = "toyohashi east" AND length__km_ = 24.7 ### context: CREATE TABLE table_name_36 (name VARCHAR, direction VARCHAR, length__km_ VARCHAR)
### question: What is the record on November 18? ### answer: SELECT record FROM table_name_26 WHERE date = "november 18" ### context: CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR)
### question: What was the average attendance when Chicago Bears were the home team? ### answer: SELECT AVG(attendance) FROM table_name_22 WHERE home = "chicago bears" ### context: CREATE TABLE table_name_22 (attendance INTEGER, home VARCHAR)
### question: What is the score when the record is 5-4-1? ### answer: SELECT score FROM table_name_52 WHERE record = "5-4-1" ### context: CREATE TABLE table_name_52 (score VARCHAR, record VARCHAR)
### question: What is the largest number in attendance when the record is 1-1-0? ### answer: SELECT MAX(attendance) FROM table_name_63 WHERE record = "1-1-0" ### context: CREATE TABLE table_name_63 (attendance INTEGER, record VARCHAR)
### question: What is the GDP of the nation with 56,210,000 people? ### answer: SELECT gdp_per_capita__us$_ FROM table_name_77 WHERE population = "56,210,000" ### context: CREATE TABLE table_name_77 (gdp_per_capita__us$_ VARCHAR, population VARCHAR)
### question: What is the area of the nation with GDP per capita (US$) of 11,929? ### answer: SELECT area__km²_ FROM table_name_11 WHERE gdp_per_capita__us$_ = "11,929" ### context: CREATE TABLE table_name_11 (area__km²_ VARCHAR, gdp_per_capita__us$_ VARCHAR)
### question: What is the population of the nation that has a GDP per capita (US$) of 11,929? ### answer: SELECT population FROM table_name_99 WHERE gdp_per_capita__us$_ = "11,929" ### context: CREATE TABLE table_name_99 (population VARCHAR, gdp_per_capita__us$_ VARCHAR)
### question: What is the Population of the nation that has an Area (km²) of 70,273? ### answer: SELECT population FROM table_name_31 WHERE area__km²_ = "70,273" ### context: CREATE TABLE table_name_31 (population VARCHAR, area__km²_ VARCHAR)
### question: What is the Population of the nation that has a Member countries consisting of existing members (1973)? ### answer: SELECT population FROM table_name_68 WHERE member_countries = "existing members (1973)" ### context: CREATE TABLE table_name_68 (population VARCHAR, member_countries VARCHAR)
### question: What television network, founded in 2002, has a community type of network? ### answer: SELECT television_network FROM table_name_67 WHERE type_of_network = "community" AND founded = "2002" ### context: CREATE TABLE table_name_67 (television_network VARCHAR, type_of_network VARCHAR, founded VARCHAR)
### question: At what stadium did the Green Bay Packers play an away game? ### answer: SELECT stadium FROM table_name_67 WHERE visiting_team = "green bay packers" ### context: CREATE TABLE table_name_67 (stadium VARCHAR, visiting_team VARCHAR)
### question: At what stadium was the final score 31-28? ### answer: SELECT stadium FROM table_name_60 WHERE final_score = "31-28" ### context: CREATE TABLE table_name_60 (stadium VARCHAR, final_score VARCHAR)
### question: Which team hosted the Kansas City Chiefs? ### answer: SELECT host_team FROM table_name_53 WHERE visiting_team = "kansas city chiefs" ### context: CREATE TABLE table_name_53 (host_team VARCHAR, visiting_team VARCHAR)
### question: What team hosted at Tampa Stadium? ### answer: SELECT host_team FROM table_name_75 WHERE stadium = "tampa stadium" ### context: CREATE TABLE table_name_75 (host_team VARCHAR, stadium VARCHAR)
### question: With a record of 43-26, what was the score that game? ### answer: SELECT score FROM table_name_89 WHERE record = "43-26" ### context: CREATE TABLE table_name_89 (score VARCHAR, record VARCHAR)
### question: On June 8, what's the loss when the Blue Jays played the Tigers? ### answer: SELECT loss FROM table_name_58 WHERE opponent = "tigers" AND date = "june 8" ### context: CREATE TABLE table_name_58 (loss VARCHAR, opponent VARCHAR, date VARCHAR)
### question: What date was the record 38-22? ### answer: SELECT date FROM table_name_71 WHERE record = "38-22" ### context: CREATE TABLE table_name_71 (date VARCHAR, record VARCHAR)
### question: The game that had a record of 39-25, what was the score? ### answer: SELECT score FROM table_name_77 WHERE record = "39-25" ### context: CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)
### question: Which runner-up has a 10 strokes margin of victory? ### answer: SELECT runner_up FROM table_name_12 WHERE margin_of_victory = "10 strokes" ### context: CREATE TABLE table_name_12 (runner_up VARCHAR, margin_of_victory VARCHAR)
### question: Which of the events only lasted no more than 0:55? ### answer: SELECT event FROM table_name_66 WHERE time = "0:55" ### context: CREATE TABLE table_name_66 (event VARCHAR, time VARCHAR)
### question: Which event only lasted for 3 rounds against Fernando Terere? ### answer: SELECT event FROM table_name_50 WHERE round = 3 AND opponent = "fernando terere" ### context: CREATE TABLE table_name_50 (event VARCHAR, round VARCHAR, opponent VARCHAR)
### question: What is the Primary Sponsor for the team owned by Randy Humphrey? ### answer: SELECT primary_sponsor_s_ FROM table_name_4 WHERE owner_s_ = "randy humphrey" ### context: CREATE TABLE table_name_4 (primary_sponsor_s_ VARCHAR, owner_s_ VARCHAR)
### question: Who is the Driver on Bob Keselowski's team? ### answer: SELECT driver_s_ FROM table_name_57 WHERE owner_s_ = "bob keselowski" ### context: CREATE TABLE table_name_57 (driver_s_ VARCHAR, owner_s_ VARCHAR)
### question: Walter Giles is Crew Chief of what team? ### answer: SELECT team FROM table_name_50 WHERE crew_chief = "walter giles" ### context: CREATE TABLE table_name_50 (team VARCHAR, crew_chief VARCHAR)
### question: What club does the stadium stc krymteplitsia belong to? ### answer: SELECT club FROM table_name_34 WHERE stadium = "stc krymteplitsia" ### context: CREATE TABLE table_name_34 (club VARCHAR, stadium VARCHAR)
### question: What was Tony Bettenhausen's qualifying time in 1947? ### answer: SELECT qual FROM table_name_61 WHERE year = "1947" ### context: CREATE TABLE table_name_61 (qual VARCHAR, year VARCHAR)
### question: Which year did Tony Bettenhausen complete more than 200 laps? ### answer: SELECT year FROM table_name_43 WHERE laps > 200 ### context: CREATE TABLE table_name_43 (year VARCHAR, laps INTEGER)
### question: What was the value in 2006 when 2003 was not held and 2012 was A? ### answer: SELECT 2006 FROM table_name_40 WHERE 2003 = "not held" AND 2012 = "a" ### context: CREATE TABLE table_name_40 (Id VARCHAR)
### question: What was the 2008 value when 2012 was Grand Slam Tournaments? ### answer: SELECT 2008 FROM table_name_35 WHERE 2012 = "grand slam tournaments" ### context: CREATE TABLE table_name_35 (Id VARCHAR)
### question: What was the value in 2008 when 2012 was 1R, 2010 was A, and 2005 was A? ### answer: SELECT 2008 FROM table_name_1 WHERE 2012 = "1r" AND 2010 = "a" AND 2005 = "a" ### context: CREATE TABLE table_name_1 (Id VARCHAR)
### question: What was the value in 2003 when 2006 was WTA Premier Mandatory Tournaments? ### answer: SELECT 2003 FROM table_name_86 WHERE 2006 = "wta premier mandatory tournaments" ### context: CREATE TABLE table_name_86 (Id VARCHAR)
### question: What was the value in 2009 when 2005 was A for the Australian Open? ### answer: SELECT 2009 FROM table_name_5 WHERE 2005 = "a" AND tournament = "australian open" ### context: CREATE TABLE table_name_5 (tournament VARCHAR)
### question: What was the value in 2012 when 2002 was Q1 and 2010 was 1R? ### answer: SELECT 2012 FROM table_name_83 WHERE 2002 = "q1" AND 2010 = "1r" ### context: CREATE TABLE table_name_83 (Id VARCHAR)
### question: What type has a GNIS ID of 1139805 ### answer: SELECT type FROM table_name_15 WHERE gnis_id = 1139805 ### context: CREATE TABLE table_name_15 (type VARCHAR, gnis_id VARCHAR)
### question: Which name has a USGS Map of clear lake? ### answer: SELECT name FROM table_name_85 WHERE usgs_map = "clear lake" ### context: CREATE TABLE table_name_85 (name VARCHAR, usgs_map VARCHAR)
### question: What is the status of Norris? ### answer: SELECT status FROM table_name_31 WHERE name = "norris" ### context: CREATE TABLE table_name_31 (status VARCHAR, name VARCHAR)
### question: What is the source for Laird? ### answer: SELECT source FROM table_name_18 WHERE name = "laird" ### context: CREATE TABLE table_name_18 (source VARCHAR, name VARCHAR)
### question: What 1958 CIE is class s? ### answer: SELECT 1958 AS _cié FROM table_name_69 WHERE class = "s" ### context: CREATE TABLE table_name_69 (class VARCHAR)
### question: What day withdrawn is associated with fleet numbers of 12, 25, 42–46, 50, 70–71, 74–77, 106–107, 129? ### answer: SELECT date_withdrawn FROM table_name_96 WHERE fleet_numbers = "12, 25, 42–46, 50, 70–71, 74–77, 106–107, 129" ### context: CREATE TABLE table_name_96 (date_withdrawn VARCHAR, fleet_numbers VARCHAR)
### question: Which player has a score of 74-74-73-70=291? ### answer: SELECT player FROM table_name_72 WHERE score = 74 - 74 - 73 - 70 = 291 ### context: CREATE TABLE table_name_72 (player VARCHAR, score VARCHAR)
### question: What is the average earnings of a United States player who had a score of 72-68-74-72=286? ### answer: SELECT AVG(earnings___) AS $__ FROM table_name_58 WHERE country = "united states" AND score = 72 - 68 - 74 - 72 = 286 ### context: CREATE TABLE table_name_58 (earnings___ INTEGER, country VARCHAR, score VARCHAR)
### question: What was the attendance at the game that had a loss of Mercker (3-1)? ### answer: SELECT attendance FROM table_name_12 WHERE loss = "mercker (3-1)" ### context: CREATE TABLE table_name_12 (attendance VARCHAR, loss VARCHAR)
### question: What was the attendance at the game that had a loss of Ayala (6-12)? ### answer: SELECT attendance FROM table_name_49 WHERE loss = "ayala (6-12)" ### context: CREATE TABLE table_name_49 (attendance VARCHAR, loss VARCHAR)
### question: What was the loss of the game that had a score of 9-7? ### answer: SELECT loss FROM table_name_65 WHERE score = "9-7" ### context: CREATE TABLE table_name_65 (loss VARCHAR, score VARCHAR)
### question: What was the loss of the game attended by 14,691? ### answer: SELECT loss FROM table_name_62 WHERE attendance = "14,691" ### context: CREATE TABLE table_name_62 (loss VARCHAR, attendance VARCHAR)
### question: What was the loss of the game attended by 29,704? ### answer: SELECT loss FROM table_name_21 WHERE attendance = "29,704" ### context: CREATE TABLE table_name_21 (loss VARCHAR, attendance VARCHAR)
### question: What is the Winner, when the Location is Clemson, SC, and when the Date is November 17, 2012? ### answer: SELECT winner FROM table_name_66 WHERE location = "clemson, sc" AND date = "november 17, 2012" ### context: CREATE TABLE table_name_66 (winner VARCHAR, location VARCHAR, date VARCHAR)
### question: What is the Location, when the Score is 38-29? ### answer: SELECT location FROM table_name_88 WHERE score = "38-29" ### context: CREATE TABLE table_name_88 (location VARCHAR, score VARCHAR)
### question: What is the Location, when the Score is 35-31? ### answer: SELECT location FROM table_name_63 WHERE score = "35-31" ### context: CREATE TABLE table_name_63 (location VARCHAR, score VARCHAR)
### question: What is the Score, when the Location is Clemson, SC, when the Winner is Clemson, and when the Date is November 11, 2006? ### answer: SELECT score FROM table_name_67 WHERE location = "clemson, sc" AND winner = "clemson" AND date = "november 11, 2006" ### context: CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, location VARCHAR, winner VARCHAR)
### question: What was the game result on November 16, 1969? ### answer: SELECT result FROM table_name_83 WHERE date = "november 16, 1969" ### context: CREATE TABLE table_name_83 (result VARCHAR, date VARCHAR)
### question: What is the general classification of stage 3 ### answer: SELECT general_classification FROM table_name_99 WHERE stage = "3" ### context: CREATE TABLE table_name_99 (general_classification VARCHAR, stage VARCHAR)
### question: How many points did lech piasecki, stephen roche, and carrera jeans-vagabond have? ### answer: SELECT points_classification FROM table_name_55 WHERE young_rider_classification = "lech piasecki" AND general_classification = "stephen roche" AND winner = "carrera jeans-vagabond" ### context: CREATE TABLE table_name_55 (points_classification VARCHAR, winner VARCHAR, young_rider_classification VARCHAR, general_classification VARCHAR)
### question: What venue was the 11 September 2012 game? ### answer: SELECT venue FROM table_name_23 WHERE date = "11 september 2012" ### context: CREATE TABLE table_name_23 (venue VARCHAR, date VARCHAR)
### question: What is the lowest Decile for a school with a roll smaller than 3? ### answer: SELECT MIN(decile) FROM table_name_40 WHERE roll < 3 ### context: CREATE TABLE table_name_40 (decile INTEGER, roll INTEGER)