question
stringlengths
19
162
table_info
stringlengths
39
951
sql_query
stringlengths
24
181
What is the number of races associated with Team ASM and 0 poles?
CREATE TABLE table_name_19 ( races VARCHAR, poles VARCHAR, team VARCHAR )
SELECT races FROM table_name_19 WHERE poles LIKE "%0%" AND team LIKE "%asm%"
What was the overall score when set 1 was 23 25?
CREATE TABLE table_name_33 ( score VARCHAR, set_1 VARCHAR )
SELECT score FROM table_name_33 WHERE set_1 LIKE "%23–25%"
What series was Dick Johnson Racing the team?
CREATE TABLE table_name_8 ( series VARCHAR, team VARCHAR )
SELECT series FROM table_name_8 WHERE team LIKE "%dick johnson racing%"
Name the qual for year of 1960
CREATE TABLE table_name_25 ( qual VARCHAR, year VARCHAR )
SELECT qual FROM table_name_25 WHERE year LIKE "%1960%"
What is the highest grid that has 55 laps?
CREATE TABLE table_name_1 ( grid INTEGER, laps VARCHAR )
SELECT MAX(grid) FROM table_name_1 WHERE laps LIKE '%55%'
Tell me the total number of grid for laps of 52
CREATE TABLE table_name_60 ( grid VARCHAR, laps VARCHAR )
SELECT COUNT(grid) FROM table_name_60 WHERE laps LIKE '%52%'
What is Score, when Tie No is '109'?
CREATE TABLE table_name_67 ( score VARCHAR, tie_no VARCHAR )
SELECT score FROM table_name_67 WHERE tie_no LIKE "%109%"
What year was Jerry Huckaby first elected?
CREATE TABLE table_18308 ( "District" text, "Incumbent" text, "Party" text, "First elected" real, "Result" text, "Candidates" text )
SELECT "First elected" FROM table_18308 WHERE "Incumbent" LIKE '%jerry huckaby%'
What is the freestyle leg for the Netherlands?
CREATE TABLE table_46861 ( "Country" text, "Backstroke leg" text, "Breaststroke leg" text, "Butterfly leg" text, "Freestyle leg" text )
SELECT "Freestyle leg" FROM table_46861 WHERE "Country" LIKE '%netherlands%'
Name the most previous br number
CREATE TABLE table_2079664_3 ( previous_br_no INTEGER )
SELECT MAX(previous_br_no) FROM table_2079664_3
What is the Player that has a To standard of 4, and a Score of 74-70-68=212?
CREATE TABLE table_8461 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text )
SELECT "Player" FROM table_8461 WHERE "To par" LIKE '%–4%' AND "Score" LIKE '%74-70-68=212%'
Which permanent account has registration of invite-only and userpics free of unknown?
CREATE TABLE table_50559 ( "Name" text, "Year Began" text, "Registration" text, "Userpics Free" text, "Userpics Paid" text, "Monthly Cost for Paid Account" text, "Yearly Cost for Paid Account" text, "Permanent Account" text )
SELECT "Permanent Account" FROM table_50559 WHERE "Userpics Free" LIKE '%unknown%' AND "Registration" LIKE '%invite-only%'
Which district has a retired republican hold and an incumbent of rufus p. spalding?
CREATE TABLE table_name_67 ( district VARCHAR, result VARCHAR, incumbent VARCHAR )
SELECT district FROM table_name_67 WHERE result LIKE "%retired republican hold%" AND incumbent LIKE "%rufus p. spalding%"
What was the winning score for oldsmobile lpga classic?
CREATE TABLE table_name_64 ( winning_score VARCHAR, tournament VARCHAR )
SELECT winning_score FROM table_name_64 WHERE tournament LIKE "%oldsmobile lpga classic%"
What is the average Lost when the difference is - 3, and a Played is less than 10?
CREATE TABLE table_41487 ( "Position" real, "Team" text, "Points" real, "Played" real, "Drawn" real, "Lost" real, "Against" real, "Difference" text )
SELECT AVG("Lost") FROM table_41487 WHERE "Difference" LIKE '%- 3%' AND "Played" < 10
What date has a set 4 of 25-19?
CREATE TABLE table_name_33 ( date VARCHAR, set_4 VARCHAR )
SELECT date FROM table_name_33 WHERE set_4 LIKE "%25-19%"
What is the highest Against where they lost less than 20 games, tied more than 2 of them, and they had Favour less than 11?
CREATE TABLE table_name_85 ( against INTEGER, favour VARCHAR, lost VARCHAR, draw VARCHAR )
SELECT MAX(against) FROM table_name_85 WHERE lost < '20' AND draw > '2' AND favour < '11'
What is the 2012 value with A in 2007 and qf in 2011?
CREATE TABLE table_name_11 ( Id VARCHAR )
SELECT 2012 FROM table_name_11 WHERE 2007 LIKE "%a%" AND 2011 LIKE "%qf%"
What Race 2 has a Race 1 of dnf, a Race 3 of dnf, and the Track Winton?
CREATE TABLE table_name_26 ( race_2 VARCHAR, track VARCHAR, race_1 VARCHAR, race_3 VARCHAR )
SELECT race_2 FROM table_name_26 WHERE race_1 LIKE "%dnf%" AND race_3 LIKE "%dnf%" AND track LIKE "%winton%"
who was the only 17 year old delegate ?
CREATE TABLE table_203_791 ( id number, "represented" text, "contestant" text, "age" number, "height" text, "hometown" text )
SELECT "contestant" FROM table_203_791 WHERE "age" = 17
Name the least week for opponent of washington redskins
CREATE TABLE table_name_87 ( week INTEGER, opponent VARCHAR )
SELECT MIN(week) FROM table_name_87 WHERE opponent LIKE "%washington redskins%"
Who had a disputed marriage?
CREATE TABLE table_name_57 ( name VARCHAR, marriage VARCHAR )
SELECT name FROM table_name_57 WHERE marriage LIKE "%disputed%"
What was the attendance on October 27, 1968?
CREATE TABLE table_name_9 ( week INTEGER, date VARCHAR )
SELECT MAX(week) FROM table_name_9 WHERE date LIKE "%october 27, 1968%"
How many totals have a Bronze of 0, and a Gold smaller than 0?
CREATE TABLE table_name_22 ( total INTEGER, bronze VARCHAR, gold VARCHAR )
SELECT SUM(total) FROM table_name_22 WHERE bronze LIKE '0' AND gold < '0'
Which translation was published in 1986?
CREATE TABLE table_53953 ( "Title" text, "Urdu" text, "Translation" text, "Date" real, "Content" text )
SELECT "Translation" FROM table_53953 WHERE "Date" = 1986
Who was the Home team that had a decider of Conklin?
CREATE TABLE table_47582 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Decision" text, "Attendance" real, "Series" text )
SELECT "Home" FROM table_47582 WHERE "Decision" LIKE '%conklin%'
I want the game site for week of 11
CREATE TABLE table_name_17 ( game_site VARCHAR, week VARCHAR )
SELECT game_site FROM table_name_17 WHERE week LIKE '%11%'
What team was the opponent when the score was 8-2?
CREATE TABLE table_name_24 ( opponent VARCHAR, score VARCHAR )
SELECT opponent FROM table_name_24 WHERE score LIKE "%8-2%"
What is the lowest year that had foil team as the event at Melbourne?
CREATE TABLE table_name_7 ( year INTEGER, event VARCHAR, venue VARCHAR )
SELECT MIN(year) FROM table_name_7 WHERE event LIKE "%foil team%" AND venue LIKE "%melbourne%"
What is the Att-Cmp-Int for the player with a efficiency of 117.4?
CREATE TABLE table_name_72 ( att_cmp_int VARCHAR, effic VARCHAR )
SELECT att_cmp_int FROM table_name_72 WHERE effic LIKE '%117.4%'
what's the win with points for being 376
CREATE TABLE table_12828723_3 ( won VARCHAR, points_for VARCHAR )
SELECT won FROM table_12828723_3 WHERE points_for LIKE '%376%'
Which manager was replaced by Thomas Thomasberg?
CREATE TABLE table_29968 ( "Team" text, "Outgoing manager" text, "Manner of departure" text, "Date of vacancy" text, "Replaced by" text, "Date of appointment" text, "Position in table" text )
SELECT "Outgoing manager" FROM table_29968 WHERE "Replaced by" LIKE '%thomas thomasberg%'
In what week(s) did the Broncos go up against the Cleveland Browns?
CREATE TABLE table_name_99 ( week INTEGER, opponent VARCHAR )
SELECT SUM(week) FROM table_name_99 WHERE opponent LIKE "%cleveland browns%"
Who played hte home team when the score was 2:1?
CREATE TABLE table_44023 ( "Date" text, "Home" text, "Score" text, "Away" text, "Attendance" real )
SELECT "Home" FROM table_44023 WHERE "Score" LIKE '%2:1%'
What is the average of all the years when the notes are electronics brand?
CREATE TABLE table_33724 ( "Year" real, "Kit Supplier" text, "Sponsor" text, "Shirt Printing" text, "Notes" text )
SELECT AVG("Year") FROM table_33724 WHERE "Notes" LIKE '%electronics brand%'
What is tom cassidy's nationality?
CREATE TABLE table_name_25 ( nationality VARCHAR, player VARCHAR )
SELECT nationality FROM table_name_25 WHERE player LIKE "%tom cassidy%"
If the equation is 6 9 + 6 9 + 6, what is the 2nd throw?
CREATE TABLE table_21443 ( "1st throw" real, "2nd throw" real, "3rd throw" real, "Equation" text, "Result" real )
SELECT MAX("2nd throw") FROM table_21443 WHERE "Equation" LIKE '%6 × 9² + 6 × 9 + 6%'
What is the Result when the order is # 4, and the week # is top 12?
CREATE TABLE table_name_58 ( result VARCHAR, order__number VARCHAR, week__number VARCHAR )
SELECT result FROM table_name_58 WHERE order__number LIKE "%4%" AND week__number LIKE "%top 12%"
When was the game at the home of the Los Angeles Kings?
CREATE TABLE table_name_72 ( date VARCHAR, home VARCHAR )
SELECT date FROM table_name_72 WHERE home LIKE "%los angeles kings%"
What is the outcome on June 9, 1997?
CREATE TABLE table_name_57 ( outcome VARCHAR, date VARCHAR )
SELECT outcome FROM table_name_57 WHERE date LIKE "%june 9, 1997%"
what's the won with tries for being 84
CREATE TABLE table_14058433_5 ( won VARCHAR, tries_for VARCHAR )
SELECT won FROM table_14058433_5 WHERE tries_for LIKE "%84%"
December smaller than 14, and a Game smaller than 28, and a Score of 6 - 6 involved what opponent?
CREATE TABLE table_33841 ( "Game" real, "December" real, "Opponent" text, "Score" text, "Record" text )
SELECT "Opponent" FROM table_33841 WHERE "December" < 14 AND "Game" < 28 AND "Score" LIKE '%6 - 6%'
If the runner-up is the Fort Lauderdale Strikers, what is the winner (number of titles)?
CREATE TABLE table_237757_3 ( winner__number_of_titles_ VARCHAR, runners_up VARCHAR )
SELECT winner__number_of_titles_ FROM table_237757_3 WHERE runners_up LIKE "%fort lauderdale strikers%"
Name the steals for season 2007/2008
CREATE TABLE table_17309500_1 ( steals VARCHAR, season VARCHAR )
SELECT steals FROM table_17309500_1 WHERE season LIKE "%2007/2008%"
Which Goals have a Player of david mcllwain, and Games larger than 52?
CREATE TABLE table_name_7 ( goals INTEGER, player VARCHAR, games VARCHAR )
SELECT MAX(goals) FROM table_name_7 WHERE player LIKE "%david mcllwain%" AND games > 52
Anuya Bhagvath was nominated for what award?
CREATE TABLE table_name_60 ( award VARCHAR, outcome VARCHAR, name VARCHAR )
SELECT award FROM table_name_60 WHERE outcome LIKE "%nominated%" AND name LIKE "%anuya bhagvath%"
When did the ATV that launched on 9 March 2008, deorbit?
CREATE TABLE table_name_9 ( deorbit_date VARCHAR, launch_date VARCHAR )
SELECT deorbit_date FROM table_name_9 WHERE launch_date LIKE "%9 march 2008%"
Where is longview high school
CREATE TABLE table_317 ( "Player" text, "Position" text, "School" text, "Hometown" text, "College" text )
SELECT "Hometown" FROM table_317 WHERE "School" LIKE '%longview high school%'
Name the total losses for 4 place and ties less than 0
CREATE TABLE table_name_35 ( losses VARCHAR, place VARCHAR, ties VARCHAR )
SELECT COUNT(losses) FROM table_name_35 WHERE place LIKE '%4%' AND ties < '0'
If the country of Origin is South Africa, who is the primary user?
CREATE TABLE table_26389588_1 ( primary_user VARCHAR, country_of_origin VARCHAR )
SELECT primary_user FROM table_26389588_1 WHERE country_of_origin LIKE '%south africa%'
What is the year that Hale Irwin won with 285 points?
CREATE TABLE table_name_80 ( year_s__won VARCHAR, total VARCHAR, player VARCHAR )
SELECT year_s__won FROM table_name_80 WHERE total = '285' AND player LIKE '%hale irwin%'
What is the highest roll number of the school in Te puna with a decile larger than 2?
CREATE TABLE table_name_85 ( roll INTEGER, decile VARCHAR, area VARCHAR )
SELECT MAX(roll) FROM table_name_85 WHERE decile > 2 AND area LIKE "%te puna%"
How many 2nd legs are there where home (1st leg) is Independiente?
CREATE TABLE table_14219514_1 ( home__1st_leg_ VARCHAR )
SELECT 2 AS nd_leg FROM table_14219514_1 WHERE home__1st_leg_ LIKE '%independiente%'
who was the winner /2nd for the British Champion Stakes race?
CREATE TABLE table_24850630_4 ( winner_2nd VARCHAR, race VARCHAR )
SELECT winner_2nd FROM table_24850630_4 WHERE race LIKE "%british champion stakes%"
For Tie #2, who was the home team?
CREATE TABLE table_50148 ( "Tie no" text, "Home team" text, "Score" text, "Away team" text, "Date" text )
SELECT "Home team" FROM table_50148 WHERE "Tie no" LIKE '%2%'
What players finished 2nd?
CREATE TABLE table_1506950_4 ( player VARCHAR, finish VARCHAR )
SELECT player FROM table_1506950_4 WHERE finish LIKE "%2nd%"
what's the result with incumbent being jack z. anderson
CREATE TABLE table_1342233_6 ( result VARCHAR, incumbent VARCHAR )
SELECT result FROM table_1342233_6 WHERE incumbent LIKE "%jack z. anderson%"
What school did the player Ethan Bennett attend?
CREATE TABLE table_11677100_16 ( school VARCHAR, player VARCHAR )
SELECT school FROM table_11677100_16 WHERE player LIKE "%ethan bennett%"
Who directed an episode with 1.19 million?
CREATE TABLE table_29273390_1 ( directed_by VARCHAR, us_viewers__million_ VARCHAR )
SELECT directed_by FROM table_29273390_1 WHERE us_viewers__million_ LIKE "%1.19%"
What was the largest tie when the G.P was more than 5?
CREATE TABLE table_78610 ( "Pos." real, "Team" text, "G.P." real, "Wins" real, "Ties" real, "Losses" real, "Goals" text, "Goal diff" text, "Pts.." text )
SELECT MAX("Ties") FROM table_78610 WHERE "G.P." > 5
What is Site, when Date is 'November 13'?
CREATE TABLE table_9380 ( "Date" text, "Opponent" text, "Site" text, "Result" text, "Attendance" text )
SELECT "Site" FROM table_9380 WHERE "Date" LIKE '%november 13%'
What is Record, when H/A/N is 'A', and when Date is 'February 1'?
CREATE TABLE table_10026 ( "Date" text, "H/A/N" text, "Opponent" text, "Score" text, "Record" text )
SELECT "Record" FROM table_10026 WHERE "H/A/N" LIKE '%a%' AND "Date" LIKE '%february 1%'
On what date was a record from Village Records with catalog VRCL-2205 released?
CREATE TABLE table_name_5 ( date VARCHAR, label VARCHAR, catalog VARCHAR )
SELECT date FROM table_name_5 WHERE label LIKE "%village records%" AND catalog LIKE "%vrcl-2205%"
How many times is the formula tl 2 ba 2 cuo 6?
CREATE TABLE table_101336_1 ( no_of_cu_o_planes_in_unit_cell VARCHAR, formula VARCHAR )
SELECT no_of_cu_o_planes_in_unit_cell FROM table_101336_1 WHERE formula LIKE "%tl 2 ba 2 cuo 6%"
If Firefox is 30.45%, what is the other Mozilla amount?
CREATE TABLE table_1876262_10 ( other_mozilla VARCHAR, firefox VARCHAR )
SELECT other_mozilla FROM table_1876262_10 WHERE firefox LIKE "%30.45%%"
Who did Yugoslavia play against that led to a result of 2:3?
CREATE TABLE table_name_90 ( opponent VARCHAR, results¹ VARCHAR )
SELECT opponent FROM table_name_90 WHERE results¹ LIKE "%2:3%"
Who was the minister for the CSV party with a present day end date?
CREATE TABLE table_name_43 ( minister VARCHAR, party VARCHAR, end_date VARCHAR )
SELECT minister FROM table_name_43 WHERE party LIKE "%csv%" AND end_date LIKE "%present day%"
Name the total number of outgoing manager for villarreal b
CREATE TABLE table_27666856_3 ( outgoing_manager VARCHAR, team VARCHAR )
SELECT COUNT(outgoing_manager) FROM table_27666856_3 WHERE team LIKE "%villarreal b%"
What was the location and attendance with a score of w 89 86 (ot)?
CREATE TABLE table_name_62 ( location_attendance VARCHAR, score VARCHAR )
SELECT location_attendance FROM table_name_62 WHERE score LIKE "%w 89–86 (ot)%"
What is the Phoneme symbol for the letter name z n?
CREATE TABLE table_47097 ( "Asomtavruli" text, "Nuskhuri" text, "Mkhedruli" text, "Letter name" text, "Phoneme" text )
SELECT "Phoneme" FROM table_47097 WHERE "Letter name" LIKE '%zɛn%'
On what date was game 3 played?
CREATE TABLE table_name_44 ( date VARCHAR, game VARCHAR )
SELECT date FROM table_name_44 WHERE game LIKE '%3%'
What was the score for the game against San Antonio?
CREATE TABLE table_name_97 ( score VARCHAR, team VARCHAR )
SELECT score FROM table_name_97 WHERE team LIKE "%san antonio%"
Who was the opponent when 48,121 people attended?
CREATE TABLE table_name_49 ( opponent VARCHAR, attendance VARCHAR )
SELECT opponent FROM table_name_49 WHERE attendance LIKE "%48,121%"
How many of lost have 11 as the points, and a drawn greater than 1?
CREATE TABLE table_6359 ( "Games" real, "Drawn" real, "Lost" real, "Points difference" text, "Points" real )
SELECT COUNT("Lost") FROM table_6359 WHERE "Points" = 11 AND "Drawn" > 1
How many Points have an Opponent of @ los angeles kings and a Game larger than 4?
CREATE TABLE table_name_89 ( points INTEGER, opponent VARCHAR, game VARCHAR )
SELECT AVG(points) FROM table_name_89 WHERE opponent LIKE '%@ los angeles kings%' AND game > 4
What were the Oct. temperatures for the city that had Nov. temperatures of 51/30?
CREATE TABLE table_40629 ( "City" text, "Jan." text, "Feb." text, "Mar." text, "Apr." text, "May." text, "Jun." text, "Jul." text, "Aug." text, "Sep." text, "Oct." text, "Nov." text, "Dec." text )
SELECT "Oct." FROM table_40629 WHERE "Nov." LIKE '%51/30%'
How many votes did Obama get in Geauga?
CREATE TABLE table_20453681_1 ( obama_number VARCHAR, county VARCHAR )
SELECT obama_number FROM table_20453681_1 WHERE county LIKE "%geauga%"
When was Chaka Fattah first elected in the Pennsylvania 2 district?
CREATE TABLE table_1341453_40 ( first_elected VARCHAR, district VARCHAR )
SELECT first_elected FROM table_1341453_40 WHERE district LIKE '%pennsylvania 2%'
What date was the game score w 104-98?
CREATE TABLE table_27882867_9 ( date VARCHAR, score VARCHAR )
SELECT date FROM table_27882867_9 WHERE score LIKE '%w 104-98%'
How many times is the series italian and the circuit is valencia?
CREATE TABLE table_26920192_5 ( round VARCHAR, series VARCHAR, circuit VARCHAR )
SELECT COUNT(round) FROM table_26920192_5 WHERE series LIKE "%italian%" AND circuit LIKE "%valencia%"
What number round has an overall of 123?
CREATE TABLE table_name_48 ( round VARCHAR, overall VARCHAR )
SELECT round FROM table_name_48 WHERE overall LIKE '%123%'
Which Outcome has an Opponent in the final of simone colombo?
CREATE TABLE table_name_43 ( outcome VARCHAR, opponent_in_the_final VARCHAR )
SELECT outcome FROM table_name_43 WHERE opponent_in_the_final LIKE "%simone colombo%"
Around what time frame release a Sampling Rate of 12-bit 40khz?
CREATE TABLE table_name_63 ( release_date INTEGER, sampling_rate VARCHAR )
SELECT SUM(release_date) FROM table_name_63 WHERE sampling_rate LIKE '%12-bit 40khz%'
Name the least f/laps
CREATE TABLE table_25375093_1 ( f_laps INTEGER )
SELECT MIN(f_laps) FROM table_25375093_1
What is Opposing Teams, when Status is 'Test Match', and when Date is '25/11/2000'?
CREATE TABLE table_name_96 ( opposing_teams VARCHAR, status VARCHAR, date VARCHAR )
SELECT opposing_teams FROM table_name_96 WHERE status LIKE "%test match%" AND date LIKE "%25/11/2000%"
What is South Africa's to par?
CREATE TABLE table_name_35 ( to_par VARCHAR, country VARCHAR )
SELECT to_par FROM table_name_35 WHERE country LIKE "%south africa%"
what is the location of game 4?
CREATE TABLE table_66941 ( "Game" real, "Date" text, "Location" text, "Time" text, "Attendance" real )
SELECT "Location" FROM table_66941 WHERE "Game" = 4
What is the name of the school where the year of last win is 1985-86?
CREATE TABLE table_72520 ( "School" text, "Winners" real, "Finalists" real, "Total Finals" real, "Year of last win" text )
SELECT "School" FROM table_72520 WHERE "Year of last win" LIKE '%1985-86%'
Which player was transferred to Reggina?
CREATE TABLE table_name_99 ( player VARCHAR, to_club VARCHAR )
SELECT player FROM table_name_99 WHERE to_club LIKE "%reggina%"
What winning team did Jonathan bomarito drive for when jonathan summerton had the fastest lap?
CREATE TABLE table_name_84 ( winning_team VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR )
SELECT winning_team FROM table_name_84 WHERE winning_driver LIKE "%jonathan bomarito%" AND fastest_lap LIKE "%jonathan summerton%"
what is solo when total tackles is 6?
CREATE TABLE table_name_82 ( solo VARCHAR, total_tackles VARCHAR )
SELECT solo FROM table_name_82 WHERE total_tackles LIKE "%6%"
Who is the Jockey for guadalcanal?
CREATE TABLE table_76512 ( "Finished" text, "Horse" text, "Jockey" text, "Trainer" text, "Odds" text )
SELECT "Jockey" FROM table_76512 WHERE "Horse" LIKE '%guadalcanal%'
what is the team that played in 2006?
CREATE TABLE table_name_70 ( team VARCHAR, year VARCHAR )
SELECT team FROM table_name_70 WHERE year LIKE '%2006%'
What country was the player, rod pampling, from who placed t10?
CREATE TABLE table_43177 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text )
SELECT "Country" FROM table_43177 WHERE "Place" LIKE '%t10%' AND "Player" LIKE '%rod pampling%'
Who was the winner in the 2008 season?
CREATE TABLE table_name_53 ( winner VARCHAR, season VARCHAR )
SELECT winner FROM table_name_53 WHERE season LIKE '%2008%'
Which player had 6 assists?
CREATE TABLE table_25353861_5 ( player VARCHAR, assists VARCHAR )
SELECT player FROM table_25353861_5 WHERE assists LIKE '%6%'
What is the average position with an against value less than 11?
CREATE TABLE table_name_76 ( position INTEGER, against INTEGER )
SELECT AVG(position) FROM table_name_76 WHERE against < 11
Where was the competition that took place that had a 5-1 result?
CREATE TABLE table_name_7 ( venue VARCHAR, result VARCHAR )
SELECT venue FROM table_name_7 WHERE result LIKE "%5-1%"
How many starts did Hendrick motorsports have?
CREATE TABLE table_1012730_1 ( starts INTEGER, team_s_ VARCHAR )
SELECT MIN(starts) FROM table_1012730_1 WHERE team_s_ LIKE '%hendrick motorsports%'
Which city's IATA is KUL?
CREATE TABLE table_14404 ( "City" text, "Province/Region" text, "Country" text, "IATA" text, "ICAO" text, "Airport" text )
SELECT "City" FROM table_14404 WHERE "IATA" LIKE '%kul%'