question
stringlengths
19
162
table_info
stringlengths
39
951
sql_query
stringlengths
24
181
What is the torque for Model of 2.0 bitdi (cr) dpf, in 2010 ?
CREATE TABLE table_name_37 ( torque VARCHAR, model VARCHAR, years VARCHAR )
SELECT torque FROM table_name_37 WHERE model LIKE "%2.0 bitdi (cr) dpf%" AND years LIKE "%2010–%"
In 1976, who was the reporter for the Belmont Stakes?
CREATE TABLE table_22583466_5 ( reporters VARCHAR, year VARCHAR )
SELECT reporters FROM table_22583466_5 WHERE year LIKE '%1976%'
How much tonnage was damaged?
CREATE TABLE table_name_35 ( tonnage__grt_ INTEGER, fate VARCHAR )
SELECT SUM(tonnage__grt_) FROM table_name_35 WHERE fate LIKE "%damaged%"
What Score points has a Rank points of defending champion?
CREATE TABLE table_59511 ( "Shooter" text, "Event" text, "Rank points" text, "Score points" text, "Total" text )
SELECT "Score points" FROM table_59511 WHERE "Rank points" LIKE '%defending champion%'
Silver larger than 0, and a Total smaller than 3, and a Nation of bulgaria, and a Bronze smaller than 0 had what sum of gold?
CREATE TABLE table_35260 ( "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT SUM("Gold") FROM table_35260 WHERE "Silver" > 0 AND "Total" < 3 AND "Nation" LIKE '%bulgaria%' AND "Bronze" < 0
What is the team's record when vancouver was at home?
CREATE TABLE table_36588 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Decision" text, "Attendance" real, "Record" text )
SELECT "Record" FROM table_36588 WHERE "Home" LIKE '%vancouver%'
Who was the visiting team when the score was 1 3?
CREATE TABLE table_name_16 ( visitor VARCHAR, score VARCHAR )
SELECT visitor FROM table_name_16 WHERE score LIKE "%1–3%"
What is the title for david campbell mulford?
CREATE TABLE table_75680 ( "Name" text, "State" text, "Status" text, "Title" text, "Appointment" text, "Credentials Presented" text )
SELECT "Title" FROM table_75680 WHERE "Name" LIKE '%david campbell mulford%'
Which Grid did Alain Prost drive on?
CREATE TABLE table_52986 ( "Driver" text, "Constructor" text, "Laps" real, "Time/Retired" text, "Grid" real )
SELECT SUM("Grid") FROM table_52986 WHERE "Driver" LIKE '%alain prost%'
What are the maximum and minimum age of students with major 600?
CREATE TABLE STUDENT ( Age INTEGER, Major VARCHAR )
SELECT MAX(Age), MIN(Age) FROM STUDENT WHERE Major LIKE '%600%'
Tell me the class for admiral and hms frobisher
CREATE TABLE table_32017 ( "Ship" text, "Guns" text, "Class" text, "Captain" text, "Rank" text, "Year" text )
SELECT "Class" FROM table_32017 WHERE "Rank" LIKE '%admiral%' AND "Ship" LIKE '%hms frobisher%'
systolic blood pressure < 100 mm hg
CREATE TABLE table_test_10 ( "id" int, "left_ventricular_ejection_fraction_lvef" int, "systolic_blood_pressure_sbp" int, "immunosuppressive_disease" bool, "systolic_arterial_pressure_sap" int, "lymphomas" bool, "left_ventricular_dysfunction" bool, "tissue_hypoperfusion" bool, "heart_disease" bool, "renal_disease" bool, "positive_hiv" bool, "estimated_glomerular_filtration_rate_egfr" int, "cardiogenic_shock" bool, "pci" int, "heart_rate" int, "cancer" bool, "serum_creatinine" float, "hepatitis" bool, "cardiomyopathy" bool, "systemic_hypotension" bool, "hypertension" bool, "NOUSE" float )
SELECT * FROM table_test_10 WHERE systolic_blood_pressure_sbp < 100
Name the license for 2009-05-25 v 7.61
CREATE TABLE table_23036 ( "Application" text, "Latest release date and version" text, "Developed by" text, "Platforms" text, "Mainly Used For" text, "License" text )
SELECT "License" FROM table_23036 WHERE "Latest release date and version" LIKE '%2009-05-25 v 7.61%'
What is the sum of 3rd Throw, when Result is greater than 546, and when 1st Throw is less than 9?
CREATE TABLE table_46294 ( "1st throw" real, "2nd throw" real, "3rd throw" real, "Equation" text, "Result" real )
SELECT SUM("3rd throw") FROM table_46294 WHERE "Result" > 546 AND "1st throw" < 9
Show names for all employees with salary more than the average.
CREATE TABLE Employee ( name VARCHAR, salary INTEGER )
SELECT name FROM Employee WHERE salary > (SELECT AVG(salary) FROM Employee)
What are the Highest Games, when Team is Ciudad De La Laguna, and when Points are greater than 357?
CREATE TABLE table_42023 ( "Rank" real, "Name" text, "Team" text, "Games" real, "Points" real )
SELECT MAX("Games") FROM table_42023 WHERE "Team" LIKE '%ciudad de la laguna%' AND "Points" > 357
In which country are there 1,278.13 exports?
CREATE TABLE table_28336 ( "Country" text, "Exports" text, "Imports" text, "Total Trade" text, "Trade Balance" text )
SELECT "Country" FROM table_28336 WHERE "Exports" LIKE '%1,278.13%'
What is the date for a CD format with a Region of Europe?
CREATE TABLE table_name_54 ( date VARCHAR, region VARCHAR, format VARCHAR )
SELECT date FROM table_name_54 WHERE region LIKE '%europe%' AND format LIKE '%cd%'
What is 1995 Grand Slam Tournament if 1997 is LQ and 1989 is 1R?
CREATE TABLE table_name_81 ( Id VARCHAR )
SELECT 1995 FROM table_name_81 WHERE 1997 LIKE "%lq%" AND 1989 LIKE "%1r%"
What was the result in round qf?
CREATE TABLE table_48497 ( "Date" text, "Round" text, "Opponent" text, "Venue" text, "Result" text, "Attendance" real )
SELECT "Result" FROM table_48497 WHERE "Round" LIKE '%qf%'
Which Season has a Score of 3 3 aet , 4 3 pen
CREATE TABLE table_name_31 ( season VARCHAR, score VARCHAR )
SELECT season FROM table_name_31 WHERE score LIKE "%3 – 3 aet , 4–3 pen%"
What is Win %, when Conference Titles is 0, and when Win-Loss is 20-10?
CREATE TABLE table_44562 ( "Coach" text, "Years" text, "Win-Loss" text, "Win %" text, "Conference Titles" text )
SELECT "Win %" FROM table_44562 WHERE "Conference Titles" LIKE '%0%' AND "Win-Loss" LIKE '%20-10%'
Which Bronze has a Rank of 3, and a Silver larger than 0?
CREATE TABLE table_76448 ( "Rank" real, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT MIN("Bronze") FROM table_76448 WHERE "Rank" = 3 AND "Silver" > 0
Which venue has h.paul 8/9 goals?
CREATE TABLE table_name_35 ( venue VARCHAR, goals VARCHAR )
SELECT venue FROM table_name_35 WHERE goals LIKE "%h.paul 8/9%"
What is the second stage that has the third phase of 20kn?
CREATE TABLE table_50293 ( "Parameter" text, "1st stage" text, "2nd stage" text, "3rd stage" text, "4th stage" text )
SELECT "2nd stage" FROM table_50293 WHERE "3rd stage" LIKE '%20kn%'
Which Away has a Competition of uefa cup, and an Opponent of anderlecht?
CREATE TABLE table_6714 ( "Season" text, "Competition" text, "Round" text, "Opponent" text, "Home" text, "Away" text, "Agg." text )
SELECT "Away" FROM table_6714 WHERE "Competition" LIKE '%uefa cup%' AND "Opponent" LIKE '%anderlecht%'
Who directed the episode with the production code 10?
CREATE TABLE table_25679312_2 ( directed_by VARCHAR, prod_code VARCHAR )
SELECT directed_by FROM table_25679312_2 WHERE prod_code LIKE '%10%'
What is the size of Itwara central forest reserve?
CREATE TABLE table_16577990_1 ( size_in_km² INTEGER, central_forest_reserve VARCHAR )
SELECT MIN(size_in_km²) FROM table_16577990_1 WHERE central_forest_reserve LIKE '%itwara%'
What teams has 1-5 as the away?
CREATE TABLE table_58914 ( "Season" text, "League" text, "Teams" text, "Home" text, "Away" text )
SELECT "Teams" FROM table_58914 WHERE "Away" LIKE '%1-5%'
What is the name of feature with a longitude 246.0e?
CREATE TABLE table_16799784_14 ( name VARCHAR, longitude VARCHAR )
SELECT name FROM table_16799784_14 WHERE longitude LIKE "%246.0e%"
which year had the most matches , 1998 or 2002 ?
CREATE TABLE table_203_469 ( id number, "year" text, "round" text, "position" number, "matches" number, "wins" number, "draws" number, "losses" number, "gf" number, "ga" number )
SELECT "year" FROM table_203_469 WHERE "year" IN ('1998', '2002') ORDER BY "matches" DESC LIMIT 1
Which state is West Spanish Peak in?
CREATE TABLE table_52711 ( "Rank" real, "Mountain Peak" text, "State" text, "Mountain Range" text, "Location" text )
SELECT "State" FROM table_52711 WHERE "Mountain Peak" LIKE '%west spanish peak%'
Where did Melbourne play as the away team?
CREATE TABLE table_4742 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Venue" FROM table_4742 WHERE "Away team" LIKE '%melbourne%'
Find all the catalog publishers whose name contains 'Murray
CREATE TABLE catalogs ( catalog_publisher VARCHAR )
SELECT DISTINCT (catalog_publisher) FROM catalogs WHERE catalog_publisher LIKE "%murray%"
Which governor took office on January 8, 1877?
CREATE TABLE table_64971 ( "Governor" text, "Took office" text, "Left office" text, "Party" text, "Lieutenant Governor" text, "Terms" text )
SELECT "Governor" FROM table_64971 WHERE "Took office" LIKE '%january 8, 1877%'
Name the name for henley manchester
CREATE TABLE table_25610 ( "Season" text, "Name" text, "Teams" real, "Relegated to League" text, "Promoted to League" text, "Promoted from League" text, "Relegated from League" text )
SELECT "Name" FROM table_25610 WHERE "Promoted to League" LIKE '%henley manchester%'
What is the lifespan of Stefanie Rabatsch?
CREATE TABLE table_38014 ( "Name" text, "Life" text, "Age at death" text, "First contact with Hitler" text, "Relationship" text )
SELECT "Life" FROM table_38014 WHERE "Name" LIKE '%stefanie rabatsch%'
How many field goals were there, where the points where less than 45 and there were less than 15 touchdowns?
CREATE TABLE table_name_79 ( field_goals INTEGER, touchdowns VARCHAR, points VARCHAR )
SELECT AVG(field_goals) FROM table_name_79 WHERE touchdowns < '15' AND points < '45'
What is the home team of the game on April 20?
CREATE TABLE table_58267 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Series" text )
SELECT "Home" FROM table_58267 WHERE "Date" LIKE '%april 20%'
Who was the Opponent with a Result of l 17 24?
CREATE TABLE table_38167 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Record" text, "Game Site" text, "Attendance" real )
SELECT "Opponent" FROM table_38167 WHERE "Result" LIKE '%l 17–24%'
Which Draws have Wins larger than 14?
CREATE TABLE table_name_23 ( draws INTEGER, wins INTEGER )
SELECT SUM(draws) FROM table_name_23 WHERE wins > 14
What day did the VFL play at Junction Oval?
CREATE TABLE table_53564 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Date" FROM table_53564 WHERE "Venue" LIKE '%junction oval%'
When the game is listed as 2, what is the score?
CREATE TABLE table_name_81 ( score VARCHAR, game VARCHAR )
SELECT score FROM table_name_81 WHERE game LIKE '%2%'
What is the population for the Irish Name Leitir meall in?
CREATE TABLE table_101196_1 ( population VARCHAR, irish_name VARCHAR )
SELECT population FROM table_101196_1 WHERE irish_name LIKE "%leitir mealláin%"
What is the largest number of assists for the second rank when there were less than 2 games?
CREATE TABLE table_name_71 ( assists INTEGER, rank VARCHAR, games VARCHAR )
SELECT MAX(assists) FROM table_name_71 WHERE rank LIKE '%2%' AND games < '2'
Which candidates are associated with the Georgia 7 district?
CREATE TABLE table_1342233_11 ( candidates VARCHAR, district VARCHAR )
SELECT candidates FROM table_1342233_11 WHERE district LIKE "%georgia 7%"
Name the 2012 for us open
CREATE TABLE table_name_55 ( tournament VARCHAR )
SELECT 2012 FROM table_name_55 WHERE tournament LIKE "%us open%"
What is the smallest rank for passengers more than 73,754?
CREATE TABLE table_61494 ( "Rank" real, "Airport" text, "Passengers" real, "Aircraft Movements" real, "Carriers" text )
SELECT MIN("Rank") FROM table_61494 WHERE "Passengers" > 73754
what is the winner of stage 3
CREATE TABLE table_5981 ( "Stage" real, "Date" text, "Course" text, "Distance" text, "Winner" text )
SELECT "Winner" FROM table_5981 WHERE "Stage" = 3
Who wrote episode 74?
CREATE TABLE table_1876825_5 ( written_by VARCHAR, no_in_series VARCHAR )
SELECT written_by FROM table_1876825_5 WHERE no_in_series LIKE '%74%'
Who drove the grid 11 car?
CREATE TABLE table_name_43 ( driver VARCHAR, grid VARCHAR )
SELECT driver FROM table_name_43 WHERE grid LIKE '%11%'
Which MLB division has a win record of 76?
CREATE TABLE table_name_26 ( division VARCHAR, wins VARCHAR )
SELECT division FROM table_name_26 WHERE wins LIKE "%76%"
When 4 mb is the sonnet what is the apple?
CREATE TABLE table_3002894_4 ( apple VARCHAR, sonnet VARCHAR )
SELECT apple FROM table_3002894_4 WHERE sonnet LIKE "%4 mb%"
What is the lowest size of the school with titans as the mascot?
CREATE TABLE table_14236 ( "School" text, "Mascot" text, "Location" text, "Size" real, "IHSAA Class" text, "County" text )
SELECT MIN("Size") FROM table_14236 WHERE "Mascot" LIKE '%titans%'
Who was the Winner when Selby Riddle came in Fourth?
CREATE TABLE table_name_26 ( winner VARCHAR, fourth VARCHAR )
SELECT winner FROM table_name_26 WHERE fourth LIKE "%selby riddle%"
What jersey number did Al Harrington wear
CREATE TABLE table_72682 ( "Player" text, "No." real, "Nationality" text, "Position" text, "Years in Orlando" text, "School/Club Team" text )
SELECT MAX("No.") FROM table_72682 WHERE "Player" LIKE '%al harrington%'
What is JCTV's digital channel?
CREATE TABLE table_1404984_1 ( digital_channel VARCHAR, network VARCHAR )
SELECT digital_channel FROM table_1404984_1 WHERE network LIKE '%jctv%'
What was the polling percentage in Nov 2008 when it was 1.7% in Aug 2008?
CREATE TABLE table_23680576_2 ( nov_2008 VARCHAR, aug_2008 VARCHAR )
SELECT nov_2008 FROM table_23680576_2 WHERE aug_2008 LIKE "%1.7%%"
What was the grid number of the team and driver with 14 points?
CREATE TABLE table_name_9 ( grid VARCHAR, points VARCHAR )
SELECT grid FROM table_name_9 WHERE points LIKE "%14%"
High assists belonging to Carmelo Anthony (11) have a record of what?
CREATE TABLE table_17355408_7 ( record VARCHAR, high_assists VARCHAR )
SELECT record FROM table_17355408_7 WHERE high_assists LIKE "%carmelo anthony (11)%"
What Status has a Date of 18/03/1989?
CREATE TABLE table_61813 ( "Opposing Teams" text, "Against" real, "Date" text, "Venue" text, "Status" text )
SELECT "Status" FROM table_61813 WHERE "Date" LIKE '%18/03/1989%'
What is the government salary of the Undersecretary with a Romanised name of Chen Wei-On, Kenneth?
CREATE TABLE table_name_19 ( govt_salary VARCHAR, romanised_name VARCHAR )
SELECT govt_salary FROM table_name_19 WHERE romanised_name LIKE '%chen wei-on, kenneth%'
what nationality was the woman who won first place ?
CREATE TABLE table_204_910 ( id number, "rank" number, "name" text, "nationality" text, "result" number, "notes" text )
SELECT "nationality" FROM table_204_910 WHERE id = 1
What was the competition held in 2003?
CREATE TABLE table_name_17 ( competition VARCHAR, year VARCHAR )
SELECT competition FROM table_name_17 WHERE year LIKE '%2003%'
What is the full amount of Total for Austria when the number of gold is less than 0?
CREATE TABLE table_name_45 ( total INTEGER, nation VARCHAR, gold VARCHAR )
SELECT SUM(total) FROM table_name_45 WHERE nation LIKE '%austria%' AND gold < 0
What school is in hillsboro city?
CREATE TABLE table_name_53 ( school VARCHAR, city VARCHAR )
SELECT school FROM table_name_53 WHERE city LIKE "%hillsboro%"
What is the Year for fleet number 5000?
CREATE TABLE table_name_98 ( year_made VARCHAR, fleet_number_s_ VARCHAR )
SELECT year_made FROM table_name_98 WHERE fleet_number_s_ LIKE '%5000%'
Name the number of developed by for solid edge
CREATE TABLE table_19495707_1 ( developed_by VARCHAR, application VARCHAR )
SELECT COUNT(developed_by) FROM table_19495707_1 WHERE application LIKE "%solid edge%"
Which Winner has a Season of 2005 06?
CREATE TABLE table_name_15 ( winner VARCHAR, season VARCHAR )
SELECT winner FROM table_name_15 WHERE season LIKE "%2005–06%"
How many gp-gs have 121.70 as an effic and an avg/g less than 218.7?
CREATE TABLE table_7610 ( "Name" text, "GP-GS" real, "Effic" text, "Att-Cmp-Int" text, "Avg/G" real )
SELECT COUNT("GP-GS") FROM table_7610 WHERE "Effic" LIKE '%121.70%' AND "Avg/G" < 218.7
What is the total of wins where the top 25 is 6, top 10 is more than 2, and the event number is less than 19?
CREATE TABLE table_37802 ( "Tournament" text, "Wins" real, "Top-5" real, "Top-10" real, "Top-25" real, "Events" real, "Cuts made" real )
SELECT SUM("Wins") FROM table_37802 WHERE "Top-25" = 6 AND "Top-10" > 2 AND "Events" < 19
what is the score when the home team is sunderland?
CREATE TABLE table_name_91 ( score VARCHAR, home_team VARCHAR )
SELECT score FROM table_name_91 WHERE home_team LIKE "%sunderland%"
what is the place for ireland?
CREATE TABLE table_name_64 ( place VARCHAR, country VARCHAR )
SELECT place FROM table_name_64 WHERE country LIKE "%ireland%"
What is Dependencia Sexual's film title that was used in its nomination?
CREATE TABLE table_name_2 ( film_title_used_in_nomination VARCHAR, original_title VARCHAR )
SELECT film_title_used_in_nomination FROM table_name_2 WHERE original_title LIKE "%dependencia sexual%"
Santa Clara was played how many times?
CREATE TABLE table_24099 ( "Game" real, "Date" text, "Opponent" text, "Result" text, "Bruins points" real, "Opponents" real, "Record" text )
SELECT "Opponents" FROM table_24099 WHERE "Opponent" LIKE '%santa clara%'
When brive is the proceed to quarter final how many were eliminated from competition?
CREATE TABLE table_27987767_3 ( eliminated_from_competition VARCHAR, proceed_to_quarter_final VARCHAR )
SELECT COUNT(eliminated_from_competition) FROM table_27987767_3 WHERE proceed_to_quarter_final LIKE "%brive%"
Tell me the date with week of 13
CREATE TABLE table_name_21 ( date VARCHAR, week VARCHAR )
SELECT date FROM table_name_21 WHERE week LIKE '%13%'
How many 5 points field goals is minimum
CREATE TABLE table_14342367_15 ( field_goals__5_points_ INTEGER )
SELECT MIN(field_goals__5_points_) FROM table_14342367_15
What is every date with game 23?
CREATE TABLE table_27902171_5 ( date VARCHAR, game VARCHAR )
SELECT date FROM table_27902171_5 WHERE game LIKE '%23%'
What was week 17's date?
CREATE TABLE table_47964 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" text )
SELECT "Date" FROM table_47964 WHERE "Week" = 17
How many cities have a stadium that was opened before the year of 2006?
CREATE TABLE stadium ( city VARCHAR, opening_year INTEGER )
SELECT COUNT(DISTINCT city) FROM stadium WHERE opening_year < 2006
Which 1989's 1991 and 1994 stats were 1r?
CREATE TABLE table_name_81 ( Id VARCHAR )
SELECT 1989 FROM table_name_81 WHERE 1991 LIKE '%1r%' AND 1994 LIKE '%1r%'
When zachary sanders is the performer what is the lowerst first aired?
CREATE TABLE table_22809 ( "Episode title" text, "Subject" text, "Music by" text, "Performed by" text, "First aired" real )
SELECT MIN("First aired") FROM table_22809 WHERE "Performed by" LIKE '%zachary sanders%'
Which Took Office has a Party of democratic, a Home Town of victoria, and a District smaller than 18?
CREATE TABLE table_name_81 ( took_office VARCHAR, district VARCHAR, party VARCHAR, home_town VARCHAR )
SELECT COUNT(took_office) FROM table_name_81 WHERE party LIKE "%democratic%" AND home_town LIKE "%victoria%" AND district < 18
how many total different people have born the glad for samoa at the olympics ?
CREATE TABLE table_204_986 ( id number, "#" number, "event year" number, "season" text, "flag bearer" text )
SELECT COUNT(DISTINCT "flag bearer") FROM table_204_986
What was the score for the 1st ranked team?
CREATE TABLE table_24765815_1 ( score VARCHAR, rank VARCHAR )
SELECT score FROM table_24765815_1 WHERE rank LIKE "%1st%"
where is Fisk University located?
CREATE TABLE table_262481_2 ( location VARCHAR, institution VARCHAR )
SELECT location FROM table_262481_2 WHERE institution LIKE '%fisk university%'
What is the losses when the goal difference is larger than 26?
CREATE TABLE table_name_45 ( losses INTEGER, goal_difference INTEGER )
SELECT MAX(losses) FROM table_name_45 WHERE goal_difference > 26
What is the Venue of the WCQ5 Competition?
CREATE TABLE table_name_49 ( venue VARCHAR, competition VARCHAR )
SELECT venue FROM table_name_49 WHERE competition LIKE "%wcq5%"
Which Run 4 has a Run 1 of 57.37, and a Run 3 smaller than 57.45?
CREATE TABLE table_name_32 ( run_4 INTEGER, run_1 VARCHAR, run_3 VARCHAR )
SELECT SUM(run_4) FROM table_name_32 WHERE run_1 LIKE '%57.37%' AND run_3 < '57.45'
What was the score of the player from South Africa?
CREATE TABLE table_name_86 ( score VARCHAR, country VARCHAR )
SELECT score FROM table_name_86 WHERE country LIKE "%south africa%"
What's the transcription for the Thai name ?
CREATE TABLE table_20354_5 ( transcription VARCHAR, thai_name VARCHAR )
SELECT transcription FROM table_20354_5 WHERE thai_name LIKE "%พฤษภาคม%"
Which Class Pos has a Year larger than 1997, a Team of corvette racing, a Class of gt1, and 327 laps?
CREATE TABLE table_67499 ( "Year" real, "Team" text, "Co-Drivers" text, "Class" text, "Laps" real, "Pos." text, "Class Pos." text )
SELECT "Class Pos." FROM table_67499 WHERE "Year" > 1997 AND "Team" LIKE '%corvette racing%' AND "Class" LIKE '%gt1%' AND "Laps" = 327
What is the production code for episode 26 in the series?
CREATE TABLE table_22594 ( "No. in series" real, "No. in season" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "Production code" text )
SELECT "Production code" FROM table_22594 WHERE "No. in series" = 26
what is the points for when the club has 0 drawn and 60 tries against?
CREATE TABLE table_name_71 ( points_for VARCHAR, drawn VARCHAR, tries_against VARCHAR )
SELECT points_for FROM table_name_71 WHERE drawn LIKE '%0%' AND tries_against LIKE '%60%'
What position does the player from malvern prep play?
CREATE TABLE table_name_40 ( position VARCHAR, high_school VARCHAR )
SELECT position FROM table_name_40 WHERE high_school LIKE "%malvern prep%"
Which airport has an IATA of AMS?
CREATE TABLE table_name_39 ( airport VARCHAR, iata VARCHAR )
SELECT airport FROM table_name_39 WHERE iata LIKE "%ams%"
Where was the venue that Linfield was the opponent?
CREATE TABLE table_name_58 ( venue VARCHAR, opponent VARCHAR )
SELECT venue FROM table_name_58 WHERE opponent LIKE "%linfield%"
What is the highest pick number the los angeles raiders got?
CREATE TABLE table_2508633_5 ( pick__number INTEGER, nfl_team VARCHAR )
SELECT MAX(pick__number) FROM table_2508633_5 WHERE nfl_team LIKE "%los angeles raiders%"
What is the overall record of Indian River?
CREATE TABLE table_70408 ( "School" text, "Team" text, "Division Record" text, "Overall Record" text, "Season Outcome" text )
SELECT "Overall Record" FROM table_70408 WHERE "School" LIKE '%indian river%'