answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT organisation FROM table_name_79 WHERE nominated_work_title = "n/a" AND year = 2005
what is the organisation when the nominated work title is n/a in the year 2005?
CREATE TABLE table_name_79 (organisation VARCHAR, nominated_work_title VARCHAR, year VARCHAR)
SELECT district FROM table_1341865_11 WHERE incumbent = "Donald Ray Matthews"
What district did Donald Ray Matthews belong to?
CREATE TABLE table_1341865_11 (district VARCHAR, incumbent VARCHAR)
SELECT MAX(game) FROM table_name_56 WHERE opponent = "atlanta hawks"
Can you tell me the highest Game that has the Opponent of atlanta hawks?
CREATE TABLE table_name_56 (game INTEGER, opponent VARCHAR)
SELECT award FROM table_name_95 WHERE category = "best actor in a musical" AND nominee = "denis lawson"
What award was Denis Lawson nominated for in the Best Actor in a Musical category?
CREATE TABLE table_name_95 (award VARCHAR, category VARCHAR, nominee VARCHAR)
SELECT natural_change__per_1000_ FROM table_name_73 WHERE live_births_1 = "278 977"
what is the natural change (per 1000) when the live births 1 is 278 977?
CREATE TABLE table_name_73 (natural_change__per_1000_ VARCHAR, live_births_1 VARCHAR)
SELECT original_air_date FROM table_14035132_3 WHERE storyboarded_by = "William Reiss" AND no_in_series = "31"
On what date did the episode with a series number 31, with a story written by William Reiss, air for the first time?
CREATE TABLE table_14035132_3 (original_air_date VARCHAR, storyboarded_by VARCHAR, no_in_series VARCHAR)
SELECT ground FROM table_29126507_1 WHERE away_team = "Richmond"
When Richmond played as the away team, what was the ground?
CREATE TABLE table_29126507_1 (ground VARCHAR, away_team VARCHAR)
SELECT senior_high_school__15_18_yrs_ FROM table_13555999_1 WHERE junior_high_school__12_15_yrs_ = "114cm"
What amount of senior high school where junior high school is 114cm?
CREATE TABLE table_13555999_1 (senior_high_school__15_18_yrs_ VARCHAR, junior_high_school__12_15_yrs_ VARCHAR)
SELECT player FROM table_name_63 WHERE team = "1970s"
Who is the player on a team from the 1970s?
CREATE TABLE table_name_63 (player VARCHAR, team VARCHAR)
SELECT team FROM table_name_64 WHERE ravg = "1.3"
Which team has a Ravg of 1.3?
CREATE TABLE table_name_64 (team VARCHAR, ravg VARCHAR)
SELECT country_or_territory_with_flag FROM table_26769_1 WHERE population_density_per_km² = "3.5/km² (/sqmi)"
What was the country with a population density per km² of 3.5/km² (/sqmi)?
CREATE TABLE table_26769_1 (country_or_territory_with_flag VARCHAR, population_density_per_km² VARCHAR)
SELECT MIN(press_jury) FROM table_20183474_1 WHERE artist = "Frank Aleksandersen"
How many press jury points did the song by Frank Aleksandersen get?
CREATE TABLE table_20183474_1 (press_jury INTEGER, artist VARCHAR)
SELECT mission FROM table_name_21 WHERE date = "2003 apr 1"
Which Mission is on 2003 apr 1?
CREATE TABLE table_name_21 (mission VARCHAR, date VARCHAR)
SELECT melbourne FROM table_name_11 WHERE gold_coast = "yes" AND perth = "cancelled" AND adelaide = "cancelled"
Which Melbourne has Gold Coast yes, Perth cancelled, and Adelaide cancelled?
CREATE TABLE table_name_11 (melbourne VARCHAR, adelaide VARCHAR, gold_coast VARCHAR, perth VARCHAR)
SELECT no_2 FROM table_name_98 WHERE no_4 = "ethan" AND no_7 = "jackson"
What is the No. 2 of the person with a No. 5 of Ethan and NO. 7 of Jackson?
CREATE TABLE table_name_98 (no_2 VARCHAR, no_4 VARCHAR, no_7 VARCHAR)
SELECT retitled_as_same FROM table_name_92 WHERE show = "supermarket sweep"
Which retitled network has a Show of supermarket sweep?
CREATE TABLE table_name_92 (retitled_as_same VARCHAR, show VARCHAR)
SELECT winning_span FROM table_1953516_1 WHERE name = "Martin Kaymer"
What is the winning span of the name martin kaymer?
CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR)
SELECT average_speed__mph_ FROM table_2196127_1 WHERE race_time = "3:08:08"
What was the average speed for a racetime of 3:08:08?
CREATE TABLE table_2196127_1 (average_speed__mph_ VARCHAR, race_time VARCHAR)
SELECT T2.Name, T1.Date FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID
What are the names of representatives and the dates of elections they participated in.
CREATE TABLE election (Date VARCHAR, Representative_ID VARCHAR); CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR)
SELECT team_1 FROM table_name_20 WHERE team_2 = "karabakh"
What is the team 1 in the match with a team 2 of Karabakh?
CREATE TABLE table_name_20 (team_1 VARCHAR, team_2 VARCHAR)
SELECT AVG(week) FROM table_name_83 WHERE result = "w 28–20" AND attendance > 46 OFFSET 888
What is the average Week when the result was w 28–20, and there were more than 46,888 in attendance?
CREATE TABLE table_name_83 (week INTEGER, result VARCHAR, attendance VARCHAR)
SELECT quantity FROM table_name_5 WHERE class = "aw"
What is the quantity of the aw class?
CREATE TABLE table_name_5 (quantity VARCHAR, class VARCHAR)
SELECT COUNT(round) FROM table_26137666_3 WHERE fastest_lap = "Fabio Carbone"
How many rounds have Fabio Carbone for fastest lap?
CREATE TABLE table_26137666_3 (round VARCHAR, fastest_lap VARCHAR)
SELECT SUM(term_ending) FROM table_name_67 WHERE position = "member" AND nationality = "india"
Position of member, and a Nationality of india is what sum of term ending?
CREATE TABLE table_name_67 (term_ending INTEGER, position VARCHAR, nationality VARCHAR)
SELECT result FROM table_name_73 WHERE score = "2-1"
What result had a score of 2-1?
CREATE TABLE table_name_73 (result VARCHAR, score VARCHAR)
SELECT highest_league FROM table_name_2 WHERE total_seasons < 4 AND team = "nova scotia clippers"
What's the highest league of the Nova Scotia Clippers with a total season of less than 4?
CREATE TABLE table_name_2 (highest_league VARCHAR, total_seasons VARCHAR, team VARCHAR)
SELECT doctor FROM table_1620397_5 WHERE series_sorted = "6EB/B"
What was the doctor for sorted series 6eb/b?
CREATE TABLE table_1620397_5 (doctor VARCHAR, series_sorted VARCHAR)
SELECT COUNT(blocks) FROM table_name_19 WHERE rebounds < 5.2
How many blocks are there when the rebounds are fewer than 5.2?
CREATE TABLE table_name_19 (blocks VARCHAR, rebounds INTEGER)
SELECT COUNT(vote) FROM table_25016824_2 WHERE air_date = "15 November 1997"
How many entries are there for vote when the air date was 15 november 1997?
CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR)
SELECT Birth_Year, Citizenship FROM singer
What are the birth year and citizenship of singers?
CREATE TABLE singer (Birth_Year VARCHAR, Citizenship VARCHAR)
SELECT AVG(lost) FROM table_name_22 WHERE pct > 0.7334 AND total_games > 48
What is the average number lost when the PCT is more than 0.7334 and the total number of games is larger than 48?
CREATE TABLE table_name_22 (lost INTEGER, pct VARCHAR, total_games VARCHAR)
SELECT school_type FROM table_28744929_1 WHERE institution = "Clemson"
what type over school is Clemson?
CREATE TABLE table_28744929_1 (school_type VARCHAR, institution VARCHAR)
SELECT away FROM table_name_71 WHERE golden_point_s__scorer = "trent hodkinson" AND home = "manly-warringah sea eagles"
What Away team has the Golden point(s) scorer Trent Hodkinson and the Home of Manly-Warringah Sea Eagles?
CREATE TABLE table_name_71 (away VARCHAR, golden_point_s__scorer VARCHAR, home VARCHAR)
SELECT Hosts FROM farm_competition WHERE Theme <> 'Aliens'
What are the hosts of competitions whose theme is not "Aliens"?
CREATE TABLE farm_competition (Hosts VARCHAR, Theme VARCHAR)
SELECT year_s__won FROM table_name_50 WHERE player = "al geiberger"
Which year al geiberger is in?
CREATE TABLE table_name_50 (year_s__won VARCHAR, player VARCHAR)
SELECT high_points FROM table_23285849_5 WHERE record = "3-0"
How scored the most points where the record is 3-0 for the season?
CREATE TABLE table_23285849_5 (high_points VARCHAR, record VARCHAR)
SELECT music FROM table_name_63 WHERE uncut_run_time = "95 minutes"
What music is in the film with an Uncut run time of 95 minutes?
CREATE TABLE table_name_63 (music VARCHAR, uncut_run_time VARCHAR)
SELECT opponent_in_the_final FROM table_name_48 WHERE outcome = "runner-up" AND date > 1983
Who is the Opponent in the final after 1983 with an Outcome of runner-up?
CREATE TABLE table_name_48 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT performer_1 FROM table_name_13 WHERE performer_3 = "sandi toksvig" AND performer_4 = "mike mcshane"
What was Performer 1's name who performed with Sandi Toksvig as Performer 3 and Mike McShane as Performer 4?
CREATE TABLE table_name_13 (performer_1 VARCHAR, performer_3 VARCHAR, performer_4 VARCHAR)
SELECT school_club_team FROM table_16494599_5 WHERE player = "Blue Edwards"
Which school/club team did blue edwards play for
CREATE TABLE table_16494599_5 (school_club_team VARCHAR, player VARCHAR)
SELECT player FROM table_name_72 WHERE score = 69 - 73 - 68 = 210 AND country = "united states"
What United States player has a score of 69-73-68=210?
CREATE TABLE table_name_72 (player VARCHAR, country VARCHAR, score VARCHAR)
SELECT player FROM table_name_86 WHERE position = "sg"
Who has a position of sg?
CREATE TABLE table_name_86 (player VARCHAR, position VARCHAR)
SELECT city FROM table_name_84 WHERE icao = "lirf"
Which city has the ICAO of LIRF?
CREATE TABLE table_name_84 (city VARCHAR, icao VARCHAR)
SELECT athlete FROM table_name_53 WHERE date = "11 july 2003"
On 11 July 2003, which athlete performed?
CREATE TABLE table_name_53 (athlete VARCHAR, date VARCHAR)
SELECT T1.name, T1.trade_name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id WHERE interaction_type = 'inhibitor' INTERSECT SELECT T1.name, T1.trade_name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id WHERE interaction_type = 'activitor'
List the medicine name and trade name which can both interact as 'inhibitor' and 'activitor' with enzymes.
CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR, id VARCHAR); CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR)
SELECT COUNT(Half) AS marathon__womens_ FROM table_11391954_3 WHERE country = "Moldova"
How many times is Moldova the winner of half marathon (womens)?
CREATE TABLE table_11391954_3 (Half VARCHAR, country VARCHAR)
SELECT MIN(_number) FROM table_29050051_3
What is the lowest listed number for a player?
CREATE TABLE table_29050051_3 (_number INTEGER)
SELECT offensive FROM table_14132239_3 WHERE overall = "Bob Watson"
Who was the offensive award winner the week when Bob Watson was given the overall award?
CREATE TABLE table_14132239_3 (offensive VARCHAR, overall VARCHAR)
SELECT rr1_pts FROM table_21489362_2 WHERE team_name = "Spanish Challenge"
When spanish challenge is the team name what are the rr1 points?
CREATE TABLE table_21489362_2 (rr1_pts VARCHAR, team_name VARCHAR)
SELECT country FROM table_name_18 WHERE player = "darren clarke"
What country is Darren Clarke from?
CREATE TABLE table_name_18 (country VARCHAR, player VARCHAR)
SELECT hanja FROM table_name_4 WHERE rr_romaja = "hamgyeong"
What is the Hanja for the hamgyeong RR Romaja?
CREATE TABLE table_name_4 (hanja VARCHAR, rr_romaja VARCHAR)
SELECT minoru FROM table_name_22 WHERE hikaru_sato = "x" AND super_crazy = "yang (8:36)"
Name the minoru that has a hikaru sato of x and super crazy of yang (8:36)
CREATE TABLE table_name_22 (minoru VARCHAR, hikaru_sato VARCHAR, super_crazy VARCHAR)
SELECT installed_capacity__mw_ FROM table_24837750_1 WHERE county = "Wheatland"
How much capacity was installed in Wheatland?
CREATE TABLE table_24837750_1 (installed_capacity__mw_ VARCHAR, county VARCHAR)
SELECT player FROM table_name_98 WHERE pick__number = "40"
Which player was Pick #40?
CREATE TABLE table_name_98 (player VARCHAR, pick__number VARCHAR)
SELECT COUNT(week) FROM table_16729063_2 WHERE attendance = 74716
In what week number was the attendance 74716?
CREATE TABLE table_16729063_2 (week VARCHAR, attendance VARCHAR)
SELECT years_competed FROM table_name_97 WHERE nickname = "panthers"
Tell me the years competed for panthers
CREATE TABLE table_name_97 (years_competed VARCHAR, nickname VARCHAR)
SELECT MIN(division) FROM table_name_15 WHERE goals < 5 AND season = "2002-03"
What is the lowest Division, when Goals is less than 5, and when Season is "2002-03"?
CREATE TABLE table_name_15 (division INTEGER, goals VARCHAR, season VARCHAR)
SELECT MIN(flaps) FROM table_24466191_1
Name the least flaps
CREATE TABLE table_24466191_1 (flaps INTEGER)
SELECT pre_conversion FROM table_name_16 WHERE owner = "v/line passenger" AND re_entered_service__p_ = "23 november 1984"
Which of V/Line Passenger's pre-conversions re-entered service on 23 November 1984?
CREATE TABLE table_name_16 (pre_conversion VARCHAR, owner VARCHAR, re_entered_service__p_ VARCHAR)
SELECT MIN(finished) FROM table_name_70 WHERE post < 2
What is the lowest Finished, when Post is less than 2?
CREATE TABLE table_name_70 (finished INTEGER, post INTEGER)
SELECT sliding_tackle FROM table_name_3 WHERE dump_tackle = "no" AND shoulder_charge = "restricted"
Which sliding tackle has no dump tackle and a restricted shoulder charge?
CREATE TABLE table_name_3 (sliding_tackle VARCHAR, dump_tackle VARCHAR, shoulder_charge VARCHAR)
SELECT COUNT(location_attendance) FROM table_27902171_8 WHERE record = "36-29"
Name the number of location attendance for 36-29 record
CREATE TABLE table_27902171_8 (location_attendance VARCHAR, record VARCHAR)
SELECT date FROM table_name_55 WHERE name = "vanderbilt cup"
When is vanderbilt cup in?
CREATE TABLE table_name_55 (date VARCHAR, name VARCHAR)
SELECT catalogue_no FROM table_name_12 WHERE format = "cd (limited edition steel-box)" AND country = "germany"
what is the catalogue no when the format is cd (limited edition steel-box) and the country is germany?
CREATE TABLE table_name_12 (catalogue_no VARCHAR, format VARCHAR, country VARCHAR)
SELECT COUNT(marseille__32_draw_) FROM table_20711545_1 WHERE seed = 2
How many items were recorded marseille (32 draw) was a 2 seed?
CREATE TABLE table_20711545_1 (marseille__32_draw_ VARCHAR, seed VARCHAR)
SELECT MAX(top_5) FROM table_1708014_1 WHERE top_10 = 5 AND team_s_ = "#40 Chip Ganassi Racing"
For team #40 chip ganassi racing which top 5 is the highest where top 10 is 5?
CREATE TABLE table_1708014_1 (top_5 INTEGER, top_10 VARCHAR, team_s_ VARCHAR)
SELECT year_s__won FROM table_name_51 WHERE total < 285 AND player = "tom watson"
Which Year(s) won has a Total smaller than 285, and a Player of tom watson?
CREATE TABLE table_name_51 (year_s__won VARCHAR, total VARCHAR, player VARCHAR)
SELECT Studio FROM film GROUP BY Studio HAVING AVG(Gross_in_dollar) >= 4500000
List the studios which average gross is above 4500000.
CREATE TABLE film (Studio VARCHAR, Gross_in_dollar INTEGER)
SELECT tournament FROM table_name_56 WHERE date = "oct. 8, 2006"
Where was the tournament played on Oct. 8, 2006?
CREATE TABLE table_name_56 (tournament VARCHAR, date VARCHAR)
SELECT COUNT(cuts_made) FROM table_name_17 WHERE events > 4 AND top_10 < 4
What were the total number of cuts made in an event larger than 4 and a top-10 smaller than 4?
CREATE TABLE table_name_17 (cuts_made VARCHAR, events VARCHAR, top_10 VARCHAR)
SELECT AVG(lost) FROM table_name_14 WHERE games < 82 AND points < 95 AND pct__percentage < 0.506
What is the average Lost, when Games is less than 82, when Points is less than 95, and when Pct % is less than 0.506?
CREATE TABLE table_name_14 (lost INTEGER, pct__percentage VARCHAR, games VARCHAR, points VARCHAR)
SELECT AVG(goals_for) FROM table_name_53 WHERE goals_against > 59 AND club = "real avilés cf" AND goal_difference > -10
What is teh average amount of goals for club real avilés cf, which has more than 59 goals against and a -10 goal difference?
CREATE TABLE table_name_53 (goals_for INTEGER, goal_difference VARCHAR, goals_against VARCHAR, club VARCHAR)
SELECT COUNT(nation) FROM table_22355_50 WHERE athlete = "Shuhei Nishida Category:Articles with hCards"
how many times was nation counted where athlete is shuhei nishida category:articles with hcards
CREATE TABLE table_22355_50 (nation VARCHAR, athlete VARCHAR)
SELECT affiliation FROM table_25518547_4 WHERE player = "Kwaku Nyamekye"
What university is kwaku nyamekye affiliated with?
CREATE TABLE table_25518547_4 (affiliation VARCHAR, player VARCHAR)
SELECT party FROM table_1341604_11 WHERE district = "Georgia 4"
Name the party of georgia 4
CREATE TABLE table_1341604_11 (party VARCHAR, district VARCHAR)
SELECT title FROM table_name_46 WHERE artist = "tangorodrim" AND cat__number = "fsr006"
What is the title of the record with an artist of Tangorodrim, category number FSR006?
CREATE TABLE table_name_46 (title VARCHAR, artist VARCHAR, cat__number VARCHAR)
SELECT partner FROM table_name_52 WHERE date = "may 16, 2004"
Who was the partner on May 16, 2004?
CREATE TABLE table_name_52 (partner VARCHAR, date VARCHAR)
SELECT AVG(clean_) & _jerk FROM table_name_94 WHERE bodyweight = 87.5 AND snatch < 95
What was the average clean and jerk of all weightlifters who had a bodyweight smaller than 87.5 and a snatch of less than 95?
CREATE TABLE table_name_94 (_jerk VARCHAR, clean_ INTEGER, bodyweight VARCHAR, snatch VARCHAR)
SELECT date FROM table_name_63 WHERE surface = "road" AND event = "half marathon"
When has a surface of road and an event of half marathon?
CREATE TABLE table_name_63 (date VARCHAR, surface VARCHAR, event VARCHAR)
SELECT longitude FROM table_25675509_1 WHERE date__yyyy_mm_dd_ = "2010-01-09"
What was the longitude for the shock that occured on 2010-01-09?
CREATE TABLE table_25675509_1 (longitude VARCHAR, date__yyyy_mm_dd_ VARCHAR)
SELECT date_from FROM table_name_81 WHERE position = "mf" AND name = "toumani diagouraga"
What date did Toumani Diagouraga, who played position MF, start?
CREATE TABLE table_name_81 (date_from VARCHAR, position VARCHAR, name VARCHAR)
SELECT date FROM table_28925058_1 WHERE grand_prix = "Italian grand_prix"
What is the date of the Italian Grand Prix?
CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR)
SELECT having__things_ FROM table_name_99 WHERE interacting__settings_ = "privacy, intimate spaces of togetherness"
Name the having things for privacy, intimate spaces of togetherness
CREATE TABLE table_name_99 (having__things_ VARCHAR, interacting__settings_ VARCHAR)
SELECT loss FROM table_name_29 WHERE record = "54-61"
Who took the loss in the game that ended with a 54-61 record?
CREATE TABLE table_name_29 (loss VARCHAR, record VARCHAR)
SELECT pick FROM table_name_64 WHERE round < 4 AND school_club_team = "ucla"
What pick in a round earlier than 4 did UCLA choose their pick?
CREATE TABLE table_name_64 (pick VARCHAR, round VARCHAR, school_club_team VARCHAR)
SELECT party FROM table_name_76 WHERE results = "re-elected" AND district = "louisiana 5"
What is Party, when Results is "Re-Elected", and when District is "Louisiana 5"?
CREATE TABLE table_name_76 (party VARCHAR, results VARCHAR, district VARCHAR)
SELECT date FROM table_name_13 WHERE region = "europe" AND catalog = "28765 22392 8"
What's the Date with the Region of Europe and has a Catalog of 28765 22392 8?
CREATE TABLE table_name_13 (date VARCHAR, region VARCHAR, catalog VARCHAR)
SELECT COUNT(DISTINCT name) FROM projects
Find the number of distinct projects.
CREATE TABLE projects (name VARCHAR)
SELECT home_team AS score FROM table_name_78 WHERE aedt_time = "11:00 pm"
Which Home team score has a AEDT Time of 11:00 pm?
CREATE TABLE table_name_78 (home_team VARCHAR, aedt_time VARCHAR)
SELECT MAX(bronze) FROM table_name_5 WHERE nation = "east germany" AND total < 3
What is the highest bronze total for east germany with under 3 total medals?
CREATE TABLE table_name_5 (bronze INTEGER, nation VARCHAR, total VARCHAR)
SELECT works_number FROM table_name_80 WHERE name = "victor"
What is the work number for Victor?
CREATE TABLE table_name_80 (works_number VARCHAR, name VARCHAR)
SELECT AVG(gold) FROM table_name_2 WHERE nation = "hungary" AND bronze > 1
What is the average Gold, when Nation is Hungary, and when Bronze is greater than 1?
CREATE TABLE table_name_2 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT previous_conference FROM table_name_22 WHERE ihsaa_class___football_soccer = "4a/5a/2a" AND year_joined > 1926
Which Previous Conference has an IHSAA Class/ Football/ Soccer of 4a/5a/2a, and a Year Joined larger than 1926?
CREATE TABLE table_name_22 (previous_conference VARCHAR, ihsaa_class___football_soccer VARCHAR, year_joined VARCHAR)
SELECT MAX(points) FROM table_name_10 WHERE tied = "4" AND goals_for < 257 AND games > 72
What is the highest number of points scored when Acadie-Bathurst had 4 tied games, less than 257 goals, and over 72 games played?
CREATE TABLE table_name_10 (points INTEGER, games VARCHAR, tied VARCHAR, goals_for VARCHAR)
SELECT episode FROM table_20522228_2 WHERE share = 8
What was the episode name when share was 8?
CREATE TABLE table_20522228_2 (episode VARCHAR, share VARCHAR)
SELECT interview_subject FROM table_name_42 WHERE date = "11-92"
What Interview subject was on a Date that is 11-92?
CREATE TABLE table_name_42 (interview_subject VARCHAR, date VARCHAR)
SELECT affiliation FROM table_name_54 WHERE school = "university of maryland"
What is the affiliation of the University of Maryland?
CREATE TABLE table_name_54 (affiliation VARCHAR, school VARCHAR)
SELECT MAX(against) FROM table_name_47 WHERE wins > 2 AND matches < 17
What is the highest Against, when Wins is greater than 2, and when Matches is less than 17?
CREATE TABLE table_name_47 (against INTEGER, wins VARCHAR, matches VARCHAR)
SELECT original_airdate FROM table_27208814_1 WHERE writer = "Robin Mukherjee" AND director = "Margy Kinmonth"
Name the original airdate for robin mukherjee and margy kinmonth
CREATE TABLE table_27208814_1 (original_airdate VARCHAR, writer VARCHAR, director VARCHAR)
SELECT COUNT(events) FROM table_24108789_6 WHERE points = 3031
Name the number of events for 3031
CREATE TABLE table_24108789_6 (events VARCHAR, points VARCHAR)