question
stringlengths
19
162
table_info
stringlengths
39
951
sql_query
stringlengths
24
181
Who is the incumbent in district Massachusetts7?
CREATE TABLE table_1341522_24 ( incumbent VARCHAR, district VARCHAR )
SELECT incumbent FROM table_1341522_24 WHERE district LIKE "%massachusetts7%"
What CD was released in 2009?
CREATE TABLE table_70558 ( "Catalog #" text, "Title" text, "Year" text, "Composer" text, "Released" real )
SELECT "Title" FROM table_70558 WHERE "Released" LIKE '%2009%'
List the most common type of artworks.
CREATE TABLE artwork ( TYPE VARCHAR )
SELECT TYPE FROM artwork GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1
What are the average price and score of wines grouped by appelation?
CREATE TABLE WINE ( Appelation VARCHAR, Price INTEGER, Score INTEGER )
SELECT AVG(Price), AVG(Score), Appelation FROM WINE GROUP BY Appelation
How many wins for team mv agusta, over 10 points, and after 1957?
CREATE TABLE table_name_59 ( wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR )
SELECT SUM(wins) FROM table_name_59 WHERE team LIKE "%mv agusta%" AND points > 10 AND year > '1957'
What is the lowest Rank when the goals are less than 124 for Jeff Cunningham?
CREATE TABLE table_name_50 ( rank INTEGER, goals VARCHAR, name VARCHAR )
SELECT MIN(rank) FROM table_name_50 WHERE goals > 124 AND name LIKE "%jeff cunningham%"
Name the l3 cache for core i7-2xxxqe, i7-26xxqm, i7-27xxqm
CREATE TABLE table_24538587_13 ( l3_cache VARCHAR, brand_name__list_ VARCHAR )
SELECT l3_cache FROM table_24538587_13 WHERE brand_name__list_ LIKE "%core i7-2xxxqe, i7-26xxqm, i7-27xxqm%"
avg passengers in 2012 for 2009 more than 104.5 and 2010 less than 162.6 and 2011 less than 141.8 is what?
CREATE TABLE table_name_22 ( Id VARCHAR )
SELECT AVG(2012) FROM table_name_22 WHERE 2009 > 104.5 AND 2010 < 162.6 AND 2011 < 141.8
What was the high amount of assists before game 60?
CREATE TABLE table_name_1 ( high_assists VARCHAR, game INTEGER )
SELECT high_assists FROM table_name_1 WHERE game < 60
what is the date when the tie no is 9?
CREATE TABLE table_name_46 ( date VARCHAR, tie_no VARCHAR )
SELECT date FROM table_name_46 WHERE tie_no LIKE "%9%"
What is the order number for songs by the original artist Luis Fonsi?
CREATE TABLE table_12175755_1 ( order__number VARCHAR, original_artist VARCHAR )
SELECT order__number FROM table_12175755_1 WHERE original_artist LIKE '%luis fonsi%'
What was the score on January 23?
CREATE TABLE table_61073 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Record" text )
SELECT "Score" FROM table_61073 WHERE "Date" LIKE '%january 23%'
What are the apps for less than 61 goals and before rank 6?
CREATE TABLE table_79177 ( "Rank" real, "Club" text, "Season" text, "Goals" real, "Apps" real )
SELECT SUM("Apps") FROM table_79177 WHERE "Rank" < 6 AND "Goals" < 61
What are the total number of losses for the team who has conceded 22?
CREATE TABLE table_16034882_4 ( loses VARCHAR, goals_conceded VARCHAR )
SELECT COUNT(loses) FROM table_16034882_4 WHERE goals_conceded LIKE '%22%'
Name the Player who has a Country of united states, and a To par of 5?
CREATE TABLE table_77084 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text )
SELECT "Player" FROM table_77084 WHERE "Country" LIKE '%united states%' AND "To par" LIKE '%–5%'
Name the number of record for week 11
CREATE TABLE table_24126518_2 ( record VARCHAR, week VARCHAR )
SELECT COUNT(record) FROM table_24126518_2 WHERE week LIKE '%11%'
In which year was the Pick #46?
CREATE TABLE table_name_9 ( draft VARCHAR, pick VARCHAR )
SELECT draft FROM table_name_9 WHERE pick LIKE "%46%"
What was the winning score in the mazda senior tournament players championship?
CREATE TABLE table_name_5 ( winning_score VARCHAR, tournament VARCHAR )
SELECT winning_score FROM table_name_5 WHERE tournament LIKE "%mazda senior tournament players championship%"
What is the Away captain with a Venue that is old trafford?
CREATE TABLE table_name_36 ( away_captain VARCHAR, venue VARCHAR )
SELECT away_captain FROM table_name_36 WHERE venue LIKE "%old trafford%"
What is the latest week with an attendance of 74,162?
CREATE TABLE table_name_72 ( week INTEGER, attendance VARCHAR )
SELECT MAX(week) FROM table_name_72 WHERE attendance LIKE '%74,162%'
Which match did FCR 2001 Duisburg participate as the opponent?
CREATE TABLE table_name_39 ( match INTEGER, opponent VARCHAR )
SELECT SUM(match) FROM table_name_39 WHERE opponent LIKE "%fcr 2001 duisburg%"
Which Cuts made has a Top-25 smaller than 3?
CREATE TABLE table_name_26 ( cuts_made INTEGER, top_25 INTEGER )
SELECT MAX(cuts_made) FROM table_name_26 WHERE top_25 < 3
What is the highest attendance at a game played by St. Johnstone?
CREATE TABLE table_16522 ( "Team" text, "Stadium" text, "Capacity" real, "Highest" real, "Lowest" real, "Average" real )
SELECT MAX("Highest") FROM table_16522 WHERE "Team" LIKE '%st. johnstone%'
What School or Club team has an overall score of 21?
CREATE TABLE table_name_15 ( school_club_team VARCHAR, overall VARCHAR )
SELECT school_club_team FROM table_name_15 WHERE overall LIKE '%21%'
When is Record of 16 16 taken?
CREATE TABLE table_name_6 ( date VARCHAR, record VARCHAR )
SELECT date FROM table_name_6 WHERE record LIKE '%16–16%'
How faced Geelong at home?
CREATE TABLE table_name_52 ( away_team VARCHAR, home_team VARCHAR )
SELECT away_team AS score FROM table_name_52 WHERE home_team LIKE "%geelong%"
Show the home city with the most number of drivers.
CREATE TABLE driver ( home_city VARCHAR )
SELECT home_city FROM driver GROUP BY home_city ORDER BY COUNT(*) DESC LIMIT 1
What's the version of Itu g.992.3 Annex J?
CREATE TABLE table_name_97 ( version VARCHAR, standard_name VARCHAR )
SELECT version FROM table_name_97 WHERE standard_name LIKE "%itu g.992.3 annex j%"
What region is William R. Johnson Coliseum in?
CREATE TABLE table_4669 ( "Region" text, "Host" text, "Venue" text, "City" text, "State" text )
SELECT "Region" FROM table_4669 WHERE "Venue" LIKE '%william r. johnson coliseum%'
Name the Production Number with a Director of friz freleng, and a Title of wacky worm, the?
CREATE TABLE table_63341 ( "Title" text, "Series" text, "Director" text, "Production Number" text, "Release date" text, "reissue?" text )
SELECT "Production Number" FROM table_63341 WHERE "Director" LIKE '%friz freleng%' AND "Title" LIKE '%wacky worm, the%'
patients with a renal transplant that is more than 6 months old.
CREATE TABLE table_train_238 ( "id" int, "hemoglobin_a1c_hba1c" float, "fasting_c_peptide" float, "hba1c" float, "allergy_to_mammalian_derived_drug_preparations" bool, "body_mass_index_bmi" float, "renal_transplantation" bool, "NOUSE" float )
SELECT * FROM table_train_238 WHERE renal_transplantation = 1
On what date was the streak at lost 7?
CREATE TABLE table_44295 ( "Game" real, "Date" text, "Opponent" text, "Result" text, "Falcons points" real, "Opponents" real, "Record" text, "Streak" text, "Attendance" real )
SELECT "Date" FROM table_44295 WHERE "Streak" LIKE '%lost 7%'
What is the methyl red reading for the species that tests positive for indole?
CREATE TABLE table_39979 ( "Species" text, "Indole" text, "Methyl Red" text, "Voges-Proskauer" text, "Citrate" text )
SELECT "Methyl Red" FROM table_39979 WHERE "Indole" LIKE '%positive%'
Who is team f when Aida Gagaring is team A?
CREATE TABLE table_name_16 ( team_f VARCHAR, team_a VARCHAR )
SELECT team_f FROM table_name_16 WHERE team_a LIKE "%aida gagaring%"
Name the districk for larry mcdonald
CREATE TABLE table_1341604_11 ( district VARCHAR, incumbent VARCHAR )
SELECT district FROM table_1341604_11 WHERE incumbent LIKE "%larry mcdonald%"
Who is the 2nd member during 1885 election?
CREATE TABLE table_71096 ( "Election" text, "1st Member" text, "1st Party" text, "2nd Member" text, "2nd Party" text )
SELECT "2nd Member" FROM table_71096 WHERE "Election" LIKE '%1885%'
What is the arena capacity of the arena in the town whose head coach is Yuriy Korotkevich?
CREATE TABLE table_19526911_1 ( arena__capacity_ VARCHAR, head_coach VARCHAR )
SELECT COUNT(arena__capacity_) FROM table_19526911_1 WHERE head_coach LIKE '%yuriy korotkevich%'
WHat is the highest difference?
CREATE TABLE table_26677836_1 ( difference INTEGER )
SELECT MAX(difference) FROM table_26677836_1
Name the most losst for corinthians
CREATE TABLE table_15319684_1 ( lost INTEGER, team VARCHAR )
SELECT MIN(lost) FROM table_15319684_1 WHERE team LIKE "%corinthians%"
What is the history behind Speedrunner III (SSC3)?
CREATE TABLE table_name_88 ( history VARCHAR, name VARCHAR )
SELECT history FROM table_name_88 WHERE name LIKE "%speedrunner iii (ssc3)%"
Who was the winner in 2007?
CREATE TABLE table_name_49 ( winner VARCHAR, date VARCHAR )
SELECT winner FROM table_name_49 WHERE date LIKE '%2007%'
For the match played on 7 January 1956, with away team of Accrington Stanley, who was the home team?
CREATE TABLE table_45777 ( "Tie no" text, "Home team" text, "Score" text, "Away team" text, "Date" text )
SELECT "Home team" FROM table_45777 WHERE "Date" LIKE '%7 january 1956%' AND "Away team" LIKE '%accrington stanley%'
What is the segment A name, having a Netflix of s01e12?
CREATE TABLE table_name_18 ( segment_a VARCHAR, netflix VARCHAR )
SELECT segment_a FROM table_name_18 WHERE netflix LIKE "%s01e12%"
What is Brian Mateer's Speed?
CREATE TABLE table_65199 ( "Rank" real, "Rider" text, "Team" text, "Speed" text, "Time" text )
SELECT "Speed" FROM table_65199 WHERE "Rider" LIKE '%brian mateer%'
Which Home has a Series of series tied 3 3?
CREATE TABLE table_name_92 ( home VARCHAR, series VARCHAR )
SELECT home FROM table_name_92 WHERE series LIKE "%series tied 3–3%"
Which Capacity is the lowest one that has a Rank smaller than 15, and a City of belgrade?
CREATE TABLE table_name_76 ( capacity INTEGER, rank VARCHAR, city VARCHAR )
SELECT MIN(capacity) FROM table_name_76 WHERE rank < 15 AND city LIKE "%belgrade%"
What was November 4, 1973 attendance?
CREATE TABLE table_name_64 ( attendance VARCHAR, date VARCHAR )
SELECT attendance FROM table_name_64 WHERE date LIKE "%november 4, 1973%"
What is Silver, when Notes is '6.24km, 23controls'?
CREATE TABLE table_name_86 ( silver VARCHAR, notes VARCHAR )
SELECT silver FROM table_name_86 WHERE notes LIKE "%6.24km, 23controls%"
Which play had a base of Aosta?
CREATE TABLE table_64339 ( "play" text, "author" text, "company" text, "base" text, "country" text )
SELECT "play" FROM table_64339 WHERE "base" LIKE '%aosta%'
What day is south melbourne at home?
CREATE TABLE table_name_35 ( date VARCHAR, home_team VARCHAR )
SELECT date FROM table_name_35 WHERE home_team LIKE "%south melbourne%"
What is the majority when the clone independence is no?
CREATE TABLE table_name_8 ( majority VARCHAR, clone_independence VARCHAR )
SELECT majority FROM table_name_8 WHERE clone_independence LIKE '%no%'
Name the pick number for bill atessis
CREATE TABLE table_71786 ( "Round" real, "Pick #" real, "Overall" real, "Name" text, "Position" text, "College" text )
SELECT "Pick #" FROM table_71786 WHERE "Name" LIKE '%bill atessis%'
How many gold medals were won in 1970?
CREATE TABLE table_44890 ( "Year" text, "Gold" text, "Silver" text, "Bronze" text, "Total" text )
SELECT "Gold" FROM table_44890 WHERE "Year" LIKE '%1970%'
Which player is from County Dublin?
CREATE TABLE table_name_89 ( player VARCHAR, county VARCHAR )
SELECT player FROM table_name_89 WHERE county LIKE "%dublin%"
What was the score of the game in which Brook Lopez (8) did the high rebounds?
CREATE TABLE table_22879323_8 ( score VARCHAR, high_rebounds VARCHAR )
SELECT score FROM table_22879323_8 WHERE high_rebounds LIKE "%brook lopez (8)%"
Who is listed as the Visitor that has a Home of Boston Bruins and a Date of November 15?
CREATE TABLE table_name_97 ( visitor VARCHAR, home VARCHAR, date VARCHAR )
SELECT visitor FROM table_name_97 WHERE home LIKE "%boston bruins%" AND date LIKE "%november 15%"
What does American have if Australia has ?
CREATE TABLE table_61411 ( "Letter" text, "American" text, "British" text, "Australian" text, "Examples" text )
SELECT "American" FROM table_61411 WHERE "Australian" LIKE '%əʉ%'
Tell me the sum of top 5 with events less than 12 and top 25 less than 0
CREATE TABLE table_54917 ( "Tournament" text, "Wins" real, "Top-5" real, "Top-25" real, "Events" real, "Cuts made" real )
SELECT SUM("Top-5") FROM table_54917 WHERE "Events" < 12 AND "Top-25" < 0
Who played in the Toronto Raptors from 1995-96?
CREATE TABLE table_10015132_14 ( player VARCHAR, years_in_toronto VARCHAR )
SELECT player FROM table_10015132_14 WHERE years_in_toronto LIKE "%1995-96%"
What was the value in 1989 with QF in 1997 and A in 1993?
CREATE TABLE table_name_10 ( Id VARCHAR )
SELECT 1989 FROM table_name_10 WHERE 1997 LIKE "%qf%" AND 1993 LIKE "%a%"
WHAT WAS ESSENDON'S HIGHEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM?
CREATE TABLE table_33672 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT MAX("Crowd") FROM table_33672 WHERE "Away team" LIKE '%essendon%'
What is the largest number of episodes for a 1989 season dvd release?
CREATE TABLE table_17697980_1 ( no_of_episodes INTEGER, year VARCHAR )
SELECT MAX(no_of_episodes) FROM table_17697980_1 WHERE year LIKE "%1989%"
How many divisions in bowling ?
CREATE TABLE table_2849652_1 ( _number_of_divisions VARCHAR, sport VARCHAR )
SELECT _number_of_divisions FROM table_2849652_1 WHERE sport LIKE '%bowling%'
How many placings did Jacqueline du Bief earn where her total score is greater than 131.26?
CREATE TABLE table_name_72 ( placings VARCHAR, total VARCHAR, name VARCHAR )
SELECT placings FROM table_name_72 WHERE total > '131.26' AND name LIKE '%jacqueline du bief%'
Where was European Championships held with notes of 61.46 m?
CREATE TABLE table_15499 ( "Year" real, "Competition" text, "Venue" text, "Position" text, "Notes" text )
SELECT "Venue" FROM table_15499 WHERE "Competition" LIKE '%european championships%' AND "Notes" LIKE '%61.46 m%'
What was Jack McGrath's rank in 1955 when he started at 3 and finished at 26?
CREATE TABLE table_70609 ( "Year" text, "Start" text, "Qual" text, "Rank" text, "Finish" text, "Laps" real )
SELECT "Rank" FROM table_70609 WHERE "Start" LIKE '%3%' AND "Finish" LIKE '%26%' AND "Year" LIKE '%1955%'
What's the rank if the time was 5:54.57 and FB in notes?
CREATE TABLE table_name_30 ( rank VARCHAR, notes VARCHAR, time VARCHAR )
SELECT rank FROM table_name_30 WHERE notes LIKE "%fb%" AND time LIKE "%5:54.57%"
What is the fewest number of top-5s for events with more than 1 win?
CREATE TABLE table_name_90 ( top_5 INTEGER, wins INTEGER )
SELECT MIN(top_5) FROM table_name_90 WHERE wins > 1
On what date was South Melbourne the away team?
CREATE TABLE table_name_61 ( date VARCHAR, away_team VARCHAR )
SELECT date FROM table_name_61 WHERE away_team LIKE "%south melbourne%"
Smaller than 37, the highest year for Ford?
CREATE TABLE table_name_18 ( year INTEGER, manufacturer VARCHAR, finish VARCHAR )
SELECT MAX(year) FROM table_name_18 WHERE manufacturer LIKE "%ford%" AND finish < 37
if the geez is libb, what is the akkadian?
CREATE TABLE table_26919_7 ( akkadian VARCHAR, geez VARCHAR )
SELECT akkadian FROM table_26919_7 WHERE geez LIKE "%libb%"
What was the score for the game played between Cleveland and Orlando at Cleveland?
CREATE TABLE table_name_26 ( score VARCHAR, home VARCHAR, visitor VARCHAR )
SELECT score FROM table_name_26 WHERE home LIKE "%cleveland%" AND visitor LIKE "%orlando%"
Name the vote % for seats of 9
CREATE TABLE table_79928 ( "Election" text, "Votes" real, "Vote %" real, "Seats" real, "Place" text )
SELECT "Vote %" FROM table_79928 WHERE "Seats" = 9
What is the time when the opponent is phil collins?
CREATE TABLE table_name_86 ( time VARCHAR, opponent VARCHAR )
SELECT time FROM table_name_86 WHERE opponent LIKE "%phil collins%"
Game 71 was played against what team?
CREATE TABLE table_47583 ( "Game" real, "Date" text, "Opponent" text, "Score" text, "Location/Attendance" text, "Record" text )
SELECT "Opponent" FROM table_47583 WHERE "Game" = 71
Which regio has a label of zzt and a date of 27 september 2004?
CREATE TABLE table_47195 ( "Region" text, "Date" text, "Label" text, "Format" text, "Catalog" text )
SELECT "Region" FROM table_47195 WHERE "Label" LIKE '%zzt%' AND "Date" LIKE '%27 september 2004%'
What was the Result after the Week 4 on November 3, 1968?
CREATE TABLE table_34498 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" real )
SELECT "Result" FROM table_34498 WHERE "Week" > 4 AND "Date" LIKE '%november 3, 1968%'
When 1873-12-25 is the founding date how many organizations are there?
CREATE TABLE table_28436909_4 ( organization VARCHAR, founding_date VARCHAR )
SELECT COUNT(organization) FROM table_28436909_4 WHERE founding_date LIKE "%1873-12-25%"
What is every Swedish name for residence city is Loviisa?
CREATE TABLE table_198175_2 ( swedish_name VARCHAR, residence_city VARCHAR )
SELECT swedish_name FROM table_198175_2 WHERE residence_city LIKE "%loviisa%"
what is at 8:00 when at 8:30 it is my thursday night movie?
CREATE TABLE table_78121 ( "8:00" text, "8:30" text, "9:00" text, "9:30" text, "10:00" text )
SELECT "8:00" FROM table_78121 WHERE "8:30" LIKE '%my thursday night movie%'
WHich Category in White has a Black of 38,05%?
CREATE TABLE table_name_35 ( white VARCHAR, black VARCHAR )
SELECT white FROM table_name_35 WHERE black LIKE "%38,05%"
What is the Venue when the result was 88 87?
CREATE TABLE table_name_78 ( venue VARCHAR, result VARCHAR )
SELECT venue FROM table_name_78 WHERE result LIKE "%88–87%"
Name the total number of high rebounds for february 10
CREATE TABLE table_17058151_8 ( high_rebounds VARCHAR, date VARCHAR )
SELECT COUNT(high_rebounds) FROM table_17058151_8 WHERE date LIKE "%february 10%"
Which TV season has a Season smaller than 8, and a Household (in millions) of 15.92 (17.1 rating)?
CREATE TABLE table_name_61 ( tv_season VARCHAR, season VARCHAR, households__in_millions_ VARCHAR )
SELECT tv_season FROM table_name_61 WHERE CAST(season AS INTEGER) < 8 AND households__in_millions_ LIKE "%15.92 (17.1 rating)%"
What is the Name with a Year of junior, and a High School with wheatley?
CREATE TABLE table_name_54 ( name VARCHAR, year VARCHAR, high_school VARCHAR )
SELECT name FROM table_name_54 WHERE year LIKE "%junior%" AND high_school LIKE "%wheatley%"
Where was the friendly competition on 7 June 1999 played?
CREATE TABLE table_name_9 ( venue VARCHAR, competition VARCHAR, date VARCHAR )
SELECT venue FROM table_name_9 WHERE competition LIKE "%friendly%" AND date LIKE "%7 june 1999%"
Who wrote episode number 11?
CREATE TABLE table_29273243_1 ( written_by VARCHAR, no_in_season VARCHAR )
SELECT written_by FROM table_29273243_1 WHERE no_in_season LIKE '%11%'
How many laps have 50 points?
CREATE TABLE table_44440 ( "Driver" text, "Team" text, "Laps" text, "Time/Retired" text, "Grid" text, "Laps Led" text, "Points" text )
SELECT "Laps" FROM table_44440 WHERE "Points" LIKE '%50%'
For the game against the Washington Bullets, what was the final score?
CREATE TABLE table_46557 ( "Game" real, "Date" text, "Opponent" text, "Score" text, "Location" text, "Record" text )
SELECT "Score" FROM table_46557 WHERE "Opponent" LIKE '%washington bullets%'
How many longitudes have a latitude of 9.9n?
CREATE TABLE table_16768245_2 ( longitude VARCHAR, latitude VARCHAR )
SELECT COUNT(longitude) FROM table_16768245_2 WHERE latitude LIKE "%9.9n%"
Album # of 3rd is what chinese title?
CREATE TABLE table_name_57 ( chinese_title VARCHAR, album_number VARCHAR )
SELECT chinese_title FROM table_name_57 WHERE album_number LIKE "%3rd%"
Which album has a label and cat# full moon/warner 28628?
CREATE TABLE table_name_68 ( album VARCHAR, label_and_cat_number VARCHAR )
SELECT album FROM table_name_68 WHERE label_and_cat_number LIKE "%full moon/warner 28628%"
What position is the player whose first year is 2014
CREATE TABLE table_1560673_1 ( position_in_2013 VARCHAR, first_season VARCHAR )
SELECT position_in_2013 FROM table_1560673_1 WHERE first_season LIKE '%2014%'
which season came in last place ?
CREATE TABLE table_204_717 ( id number, "season" text, "level" number, "division" text, "place" text )
SELECT "season" FROM table_204_717 ORDER BY "place" DESC LIMIT 1
Name the 2005 for 2003 of a and 2011 of 3r
CREATE TABLE table_name_82 ( Id VARCHAR )
SELECT 2005 FROM table_name_82 WHERE 2003 LIKE "%a%" AND 2011 LIKE "%3r%"
how many athletes were from a country other than cyprus ?
CREATE TABLE table_204_893 ( id number, "rank" number, "name" text, "nationality" text, "time" text, "notes" text )
SELECT COUNT("name") FROM table_204_893 WHERE "nationality" LIKE '%cyprus%'
WHAT IS THE SECOND LEG WITH HARO AS TEAM TWO?
CREATE TABLE table_9351 ( "Team 1" text, "Agg." text, "Team 2" text, "1st leg" text, "2nd leg" text )
SELECT "2nd leg" FROM table_9351 WHERE "Team 2" LIKE '%haro%'
Which series with 62 points?
CREATE TABLE table_16253 ( "Season" text, "Series" text, "Team Name" text, "Races" real, "Poles" real, "Wins" real, "Points" real, "Position" text )
SELECT "Series" FROM table_16253 WHERE "Points" = 62
Name the Winning driver of mercedes on 22 august?
CREATE TABLE table_name_91 ( winning_driver VARCHAR, winning_constructor VARCHAR, date VARCHAR )
SELECT winning_driver FROM table_name_91 WHERE winning_constructor LIKE '%mercedes%' AND date LIKE '%22 august%'
Who was the opponent after week 16?
CREATE TABLE table_name_43 ( opponent VARCHAR, week INTEGER )
SELECT opponent FROM table_name_43 WHERE week > 16