answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT MIN(field_goals) FROM table_24850487_5 WHERE blocks = 8
How many field goals did the player who had 8 blocks have?
CREATE TABLE table_24850487_5 (field_goals INTEGER, blocks VARCHAR)
SELECT tournament FROM table_name_13 WHERE date = 1993 AND score_in_the_final = "6–2, 2–6, 7–5"
Which Tournament is in 1993 with a Score in the final of 6–2, 2–6, 7–5?
CREATE TABLE table_name_13 (tournament VARCHAR, date VARCHAR, score_in_the_final VARCHAR)
SELECT m_r_romaja FROM table_name_34 WHERE capital = "cheongju"
What is the M-R Romaja for the province having a capital of Cheongju?
CREATE TABLE table_name_34 (m_r_romaja VARCHAR, capital VARCHAR)
SELECT player FROM table_name_79 WHERE score = 71 - 69 - 71 - 69 = 280
What is the name of the player with a 71-69-71-69=280 score?
CREATE TABLE table_name_79 (player VARCHAR, score VARCHAR)
SELECT week FROM table_name_4 WHERE date = "december 5, 1959"
Week that has a Date of december 5, 1959 had what week?
CREATE TABLE table_name_4 (week VARCHAR, date VARCHAR)
SELECT COUNT(white__both_hispanic_and_non_hispanic_) FROM table_name_77 WHERE black__both_hispanic_and_non_hispanic_ = 9.9 AND hispanic__of_any_race_ < 99.5
What is the total number of white (Hispanic/Non-Hispanic) having a black (Hispanic/Non-Hispanic) of 9.9 and Hispanic under 99.5?
CREATE TABLE table_name_77 (white__both_hispanic_and_non_hispanic_ VARCHAR, black__both_hispanic_and_non_hispanic_ VARCHAR, hispanic__of_any_race_ VARCHAR)
SELECT score FROM table_name_6 WHERE opponent = "gan teik chai lin woon fui"
What score has an opponent gan teik chai lin woon fui?
CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR)
SELECT tournament FROM table_name_25 WHERE third_place = "magnus gustafsson"
I want to know the tournament that has a third place of magnus gustafsson
CREATE TABLE table_name_25 (tournament VARCHAR, third_place VARCHAR)
SELECT MAX(attendance) FROM table_name_4 WHERE opponent = "tamworth" AND venue = "home"
Name the most attendance for tamworth with home venue
CREATE TABLE table_name_4 (attendance INTEGER, opponent VARCHAR, venue VARCHAR)
SELECT nominee FROM table_name_38 WHERE category = "best female performer"
Who was nominated for best female performer?
CREATE TABLE table_name_38 (nominee VARCHAR, category VARCHAR)
SELECT game FROM table_name_17 WHERE date = "february 9"
What is the Game held on february 9?
CREATE TABLE table_name_17 (game VARCHAR, date VARCHAR)
SELECT MIN(population) FROM table_name_50 WHERE official_name = "big hole tract 8 (south)" AND area_km_2 > 27.82
What is the lowest population that has Big Hole Tract 8 (south) as the official name, with an area km 2 greater than 27.82?
CREATE TABLE table_name_50 (population INTEGER, official_name VARCHAR, area_km_2 VARCHAR)
SELECT name FROM table_name_53 WHERE town = "egypt, arkansas"
What's the name of the structure at Egypt, Arkansas?
CREATE TABLE table_name_53 (name VARCHAR, town VARCHAR)
SELECT name FROM table_name_67 WHERE position = "guard/forward"
Which player is in the position of Guard/Forward?
CREATE TABLE table_name_67 (name VARCHAR, position VARCHAR)
SELECT player FROM table_name_52 WHERE round > 5 AND school_club_team = "bethune-cookman"
Which Player has a Round larger than 5, and a School/Club Team of bethune-cookman?
CREATE TABLE table_name_52 (player VARCHAR, round VARCHAR, school_club_team VARCHAR)
SELECT long_ranged_weapons FROM table_27704991_1 WHERE close_ranged_weapons = "Knife (stone), Knife (iron)"
If the Close ranged weapons are the knife (stone), knife (iron), what are the Long ranged weapons?
CREATE TABLE table_27704991_1 (long_ranged_weapons VARCHAR, close_ranged_weapons VARCHAR)
SELECT series_ep FROM table_name_59 WHERE segment_c = "electric pole s transformer"
Which series episode has a segment c that is Electric pole s transformer?
CREATE TABLE table_name_59 (series_ep VARCHAR, segment_c VARCHAR)
SELECT country FROM table_name_48 WHERE city = "wellington"
Which country is Wellington located in?
CREATE TABLE table_name_48 (country VARCHAR, city VARCHAR)
SELECT COUNT(*) FROM Employee
How many employees do we have?
CREATE TABLE Employee (Id VARCHAR)
SELECT term_start FROM table_name_47 WHERE title = "minister for agriculture, fisheries and forestry" AND order = "25"
What was the starting date for the Minister for agriculture, fisheries and forestry that is in order number 25??
CREATE TABLE table_name_47 (term_start VARCHAR, title VARCHAR, order VARCHAR)
SELECT rank FROM table_name_43 WHERE time = "59.65"
What's the rank when the time was 59.65?
CREATE TABLE table_name_43 (rank VARCHAR, time VARCHAR)
SELECT MAX(bronze) FROM table_name_16 WHERE total < 2
What is the highest bronze for less than 2 total trophies?
CREATE TABLE table_name_16 (bronze INTEGER, total INTEGER)
SELECT COUNT(pop_density___km²_) FROM table_221398_1 WHERE number_in_map = "16"
How many prefectures have a population density of 16 people/kilometers squared?
CREATE TABLE table_221398_1 (pop_density___km²_ VARCHAR, number_in_map VARCHAR)
SELECT successful_defenses FROM table_name_89 WHERE days_held = 126 AND reigns = "3"
What successful defenses has 126 days held and a Reigns of 3?
CREATE TABLE table_name_89 (successful_defenses VARCHAR, days_held VARCHAR, reigns VARCHAR)
SELECT MIN(year) FROM table_2127933_3
What is the earliest year?
CREATE TABLE table_2127933_3 (year INTEGER)
SELECT COUNT(season) FROM table_name_19 WHERE place = "santiago de chile, chile"
How many seasons took place in santiago de chile, chile?
CREATE TABLE table_name_19 (season VARCHAR, place VARCHAR)
SELECT AVG(pick) FROM table_name_19 WHERE player = "paul maclean" AND draft < 1978
What is the average pick of player paul maclean, who had a draft before 1978?
CREATE TABLE table_name_19 (pick INTEGER, player VARCHAR, draft VARCHAR)
SELECT manufacturer FROM table_2241841_1 WHERE year = "2004"
What manufacturer made the car that won in 2004?
CREATE TABLE table_2241841_1 (manufacturer VARCHAR, year VARCHAR)
SELECT MIN(week) FROM table_name_10 WHERE game_site = "cleveland browns stadium"
What is the earliest week that the Texans played at the Cleveland Browns Stadium?
CREATE TABLE table_name_10 (week INTEGER, game_site VARCHAR)
SELECT final_venue FROM table_28601467_1 WHERE host_nation_s_ = "England" AND runner_up = "[[|]] 4 points" AND winner = "[[|]] 6 points"
What was the final venue whene England hasted the competition and the runner-up record is [[|]] 4 points and the winner record is [[|]] 6 points?
CREATE TABLE table_28601467_1 (final_venue VARCHAR, winner VARCHAR, host_nation_s_ VARCHAR, runner_up VARCHAR)
SELECT MAX(attendance) FROM table_name_48 WHERE opponent = "at los angeles rams" AND week > 12
Which Attendance has an Opponent of at los angeles rams, and a Week larger than 12?
CREATE TABLE table_name_48 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
SELECT position FROM table_name_21 WHERE league_from = "russian major league"
What team is from the Russian Major League?
CREATE TABLE table_name_21 (position VARCHAR, league_from VARCHAR)
SELECT MAX(game) FROM table_15780049_5 WHERE date = "December 19"
What game happened on December 19?
CREATE TABLE table_15780049_5 (game INTEGER, date VARCHAR)
SELECT opposing_teams FROM table_name_7 WHERE against = 11
What is the opposing team with 11 against?
CREATE TABLE table_name_7 (opposing_teams VARCHAR, against VARCHAR)
SELECT COUNT(second_member) FROM table_15451122_2 WHERE first_member = "John Rudhale"
How many different second members were there when John rudhale was first member?
CREATE TABLE table_15451122_2 (second_member VARCHAR, first_member VARCHAR)
SELECT Name, Other_Details FROM Staff
Show the names and details of all the staff members.
CREATE TABLE Staff (Name VARCHAR, Other_Details VARCHAR)
SELECT week FROM table_name_86 WHERE opponent = "tennessee titans"
Which Week has a Opponent of tennessee titans?
CREATE TABLE table_name_86 (week VARCHAR, opponent VARCHAR)
SELECT notes FROM table_name_57 WHERE shirt_printing = "pavv" AND year < 2005
What are the notes for the shirt that said Pavv before 2005?
CREATE TABLE table_name_57 (notes VARCHAR, shirt_printing VARCHAR, year VARCHAR)
SELECT COUNT(*), T3.product_id FROM orders AS T1 JOIN order_items AS T2 JOIN products AS T3 ON T1.order_id = T2.order_id AND T2.product_id = T3.product_id GROUP BY T3.product_id
List the count and id of each product in all the orders.
CREATE TABLE orders (order_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE products (product_id VARCHAR)
SELECT official_name FROM table_name_46 WHERE area_km_2 = 750.51
Which parish has an area of 750.51?
CREATE TABLE table_name_46 (official_name VARCHAR, area_km_2 VARCHAR)
SELECT MAX(field_goals__5_points_) FROM table_14342210_14 WHERE total_points = 100
How many field goals were made by the person with 100 points in total?
CREATE TABLE table_14342210_14 (field_goals__5_points_ INTEGER, total_points VARCHAR)
SELECT T2.name, T3.name FROM wedding AS T1 JOIN people AS T2 ON T1.male_id = T2.people_id JOIN people AS T3 ON T1.female_id = T3.people_id WHERE T1.year > 2014
Show the pair of male and female names in all weddings after year 2014
CREATE TABLE wedding (male_id VARCHAR, female_id VARCHAR, year INTEGER); CREATE TABLE people (name VARCHAR, people_id VARCHAR)
SELECT points_for FROM table_name_86 WHERE club = "bridgend athletic rfc"
How many points for did Bridgend Athletic RFC score?
CREATE TABLE table_name_86 (points_for VARCHAR, club VARCHAR)
SELECT opponent FROM table_name_57 WHERE date = "august 29"
What was the opponent on August 29?
CREATE TABLE table_name_57 (opponent VARCHAR, date VARCHAR)
SELECT tenure FROM table_name_96 WHERE courtesy_title = "yamashiro-no-kami"
What is the tenure of the person whose courtesy title is yamashiro-no-kami?
CREATE TABLE table_name_96 (tenure VARCHAR, courtesy_title VARCHAR)
SELECT final__bronze_medal_match FROM table_18602462_21 WHERE event = "Mixed Quad Singles"
When mixed quad singles is the event what is the final/bronze medal match?
CREATE TABLE table_18602462_21 (final__bronze_medal_match VARCHAR, event VARCHAR)
SELECT game FROM table_name_53 WHERE date = "march 19"
What was the number of game that was played on March 19?
CREATE TABLE table_name_53 (game VARCHAR, date VARCHAR)
SELECT termination FROM table_1601027_1 WHERE headphone_model = "SR80i"
Which terminations correspond with headphone model SR80I?
CREATE TABLE table_1601027_1 (termination VARCHAR, headphone_model VARCHAR)
SELECT MIN(bypass_ports) FROM table_16731248_1
What is the minimum number of bypass ports listed?
CREATE TABLE table_16731248_1 (bypass_ports INTEGER)
SELECT score FROM table_name_1 WHERE date = "jun 16" AND set_4 = "25-20"
What is Score, when Date is Jun 16, and when Set 4 is 25-20?
CREATE TABLE table_name_1 (score VARCHAR, date VARCHAR, set_4 VARCHAR)
SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID ORDER BY T2.Year DESC
Show names of actors in descending order of the year their musical is awarded.
CREATE TABLE musical (Musical_ID VARCHAR, Year VARCHAR); CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR)
SELECT general_classification FROM table_name_99 WHERE stage = "3"
What is the general classification of stage 3
CREATE TABLE table_name_99 (general_classification VARCHAR, stage VARCHAR)
SELECT original_air_date FROM table_27988408_1 WHERE written_by = "Bryan Moore & Chris Peterson"
Name the original air date for bryan moore & chris peterson
CREATE TABLE table_27988408_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT MIN(total) FROM table_20350118_1 WHERE county = "Cabarrus"
How many people voted in Cabarrus county?
CREATE TABLE table_20350118_1 (total INTEGER, county VARCHAR)
SELECT purpose FROM table_name_43 WHERE freq_currently = "4rph"
What is the Purpose of the Callsign with a Freq currently of 4rph?
CREATE TABLE table_name_43 (purpose VARCHAR, freq_currently VARCHAR)
SELECT score FROM table_name_7 WHERE to_par > 17 AND player = "mike brady"
Which Score has a To par larger than 17, and a Player of mike brady?
CREATE TABLE table_name_7 (score VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT MIN(games) FROM table_name_91 WHERE name = "jeremiah massey" AND points < 340
What is the lowest Games, when Name is Jeremiah Massey, and when Points is less than 340?
CREATE TABLE table_name_91 (games INTEGER, name VARCHAR, points VARCHAR)
SELECT coach FROM table_name_4 WHERE details = "2012 gold coast titans season"
Who is the coach of the 2012 Gold Coast Titans season?
CREATE TABLE table_name_4 (coach VARCHAR, details VARCHAR)
SELECT young_rider_classification FROM table_25999087_2 WHERE winner = "Jelle Vanendert"
Who is every young rider classification when Jelle Vanendert is the winner?
CREATE TABLE table_25999087_2 (young_rider_classification VARCHAR, winner VARCHAR)
SELECT cerclis_id FROM table_name_16 WHERE deleted = "04/07/2008"
What CERCLIS ID is Deleted of 04/07/2008?
CREATE TABLE table_name_16 (cerclis_id VARCHAR, deleted VARCHAR)
SELECT league FROM table_16636344_1 WHERE regular_season = "2nd, Mid Atlantic"
What is the league name for the regular season status of 2nd, mid atlantic?
CREATE TABLE table_16636344_1 (league VARCHAR, regular_season VARCHAR)
SELECT category FROM table_name_20 WHERE result = "nominated" AND film_or_series = "the wire" AND year > 2005
Which award category was the film series The Wire nominated for after 2005?
CREATE TABLE table_name_20 (category VARCHAR, year VARCHAR, result VARCHAR, film_or_series VARCHAR)
SELECT high_assists FROM table_name_20 WHERE location_attendance = "20,562"
Who has the high assists when location attendance is 20,562?
CREATE TABLE table_name_20 (high_assists VARCHAR, location_attendance VARCHAR)
SELECT COUNT(power_kw) FROM table_24418525_1 WHERE coverage = "Dumaguete Central Visayas Region"
How much power covers dumaguete central visayas region?
CREATE TABLE table_24418525_1 (power_kw VARCHAR, coverage VARCHAR)
SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars BETWEEN 3 AND 5
What are the titles of all movies that have rating star is between 3 and 5?
CREATE TABLE Rating (mID VARCHAR, stars INTEGER); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)
SELECT team FROM table_name_15 WHERE previous_team = "indiana pacers"
What is the team of the player who was previously on the indiana pacers?
CREATE TABLE table_name_15 (team VARCHAR, previous_team VARCHAR)
SELECT athlete FROM table_name_66 WHERE data = "214.061km"
Who has a walking data of 214.061km?
CREATE TABLE table_name_66 (athlete VARCHAR, data VARCHAR)
SELECT games FROM table_name_61 WHERE assists = "127"
How many games were played by the player with 127 assists?
CREATE TABLE table_name_61 (games VARCHAR, assists VARCHAR)
SELECT 3 AS ’utr_sequence FROM table_name_87 WHERE genbank_id = "hq021440"
Which 3’UTR sequence has the GenBank ID at hq021440?
CREATE TABLE table_name_87 (genbank_id VARCHAR)
SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Accounting' INTERSECT SELECT T1.stu_fname FROM student AS T1 JOI...
Find the first name of student who is taking classes from accounting and Computer Info. Systems departments
CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE enroll (stu_num VARCHAR, class_code VARCHAR); CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE course (crs_code VARCHAR, dept_code VARCHAR); CREATE TABLE student (stu_fname VARCHAR, stu_num VARCHAR)
SELECT SUM(to_par) FROM table_name_53 WHERE total < 148
What is the to par for the player with fewer than 148 total points?
CREATE TABLE table_name_53 (to_par INTEGER, total INTEGER)
SELECT fire_control FROM table_12834315_2 WHERE name = "Sporter Target"
What is the fire control for the sporter target
CREATE TABLE table_12834315_2 (fire_control VARCHAR, name VARCHAR)
SELECT SUM(goals_scored) FROM table_name_40 WHERE points < 27 AND team = "c.d. atlético balboa"
What's the total of Goals Scored with Points that's smaller than 27, and a Team of C.D. Atlético Balboa?
CREATE TABLE table_name_40 (goals_scored INTEGER, points VARCHAR, team VARCHAR)
SELECT COUNT(season) FROM table_name_30 WHERE wins > 0 AND final_placing = "1st"
What is the total number of seasons with more than 0 wins and a 1st final placing?
CREATE TABLE table_name_30 (season VARCHAR, wins VARCHAR, final_placing VARCHAR)
SELECT document_type_code FROM Ref_Document_Types
What document type codes do we have?
CREATE TABLE Ref_Document_Types (document_type_code VARCHAR)
SELECT date FROM table_name_33 WHERE margin_of_victory = "5 strokes" AND winning_score = −13(67 - 73 - 64 - 63 = 267)
Which Date has a Margin of victory of 5 strokes, and a Winning score of −13 (67-73-64-63=267)?
CREATE TABLE table_name_33 (date VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT programming FROM table_name_18 WHERE aspect = "4:3" AND psip_short_name = "ibc-tv"
Name the Programming which has an Aspect of 4:3, and a PSIP Short Name of ibc-tv?
CREATE TABLE table_name_18 (programming VARCHAR, aspect VARCHAR, psip_short_name VARCHAR)
SELECT team FROM table_23285805_4 WHERE record = "5-8"
If the record is 5-8, what is the team name?
CREATE TABLE table_23285805_4 (team VARCHAR, record VARCHAR)
SELECT SUM(wins) FROM table_name_19 WHERE goals_against < 21
What is the total wins with less than 21 goals taken?
CREATE TABLE table_name_19 (wins INTEGER, goals_against INTEGER)
SELECT MIN(area__km²_) FROM table_23887174_1 WHERE armenian_name = "Փայտակարան"
How big is the province with the Armenian name of փայտակարան?
CREATE TABLE table_23887174_1 (area__km²_ INTEGER, armenian_name VARCHAR)
SELECT television_network FROM table_name_67 WHERE type_of_network = "community" AND founded = "2002"
What television network, founded in 2002, has a community type of network?
CREATE TABLE table_name_67 (television_network VARCHAR, type_of_network VARCHAR, founded VARCHAR)
SELECT cust_name, acc_bal FROM customer WHERE cust_name LIKE '%a%'
Find the name and account balance of the customer whose name includes the letter ‘a’.
CREATE TABLE customer (cust_name VARCHAR, acc_bal VARCHAR)
SELECT competition FROM table_name_43 WHERE date = "25 march 2001"
Tell me the competition for 25 march 2001
CREATE TABLE table_name_43 (competition VARCHAR, date VARCHAR)
SELECT AVG(lane) FROM table_name_19 WHERE nationality = "bulgaria"
What's Bulgaria's lane?
CREATE TABLE table_name_19 (lane INTEGER, nationality VARCHAR)
SELECT SUM(net_profit_loss__sek_) FROM table_name_87 WHERE basic_eps__sek_ = -6.58 AND employees__average_year_ > 31 OFFSET 035
Which Net profit/loss (SEK) has a Basic eps (SEK) of -6.58, and Employees (Average/Year) larger than 31,035?
CREATE TABLE table_name_87 (net_profit_loss__sek_ INTEGER, basic_eps__sek_ VARCHAR, employees__average_year_ VARCHAR)
SELECT score FROM table_15872814_4 WHERE date = "December 28"
Name the score for december 28
CREATE TABLE table_15872814_4 (score VARCHAR, date VARCHAR)
SELECT COUNT(winning_coach) FROM table_237757_3 WHERE top_team_in_regular_season__points_ = "Kansas City Spurs (110 points)"
What is the winning coach total number if the top team in regular season (points) is the Kansas City Spurs (110 points)?
CREATE TABLE table_237757_3 (winning_coach VARCHAR, top_team_in_regular_season__points_ VARCHAR)
SELECT run_3 FROM table_name_4 WHERE rank = "12"
What was the run 3 for the team in rank 12?
CREATE TABLE table_name_4 (run_3 VARCHAR, rank VARCHAR)
SELECT COUNT(total) FROM table_name_74 WHERE silver > 0 AND bronze > 21 AND gold > 29
I want to know the total for silver more than 0 with bronze more than 21 and gold more than 29
CREATE TABLE table_name_74 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT gold FROM table_name_97 WHERE bronze = "kim hyang-mi"
Who won the gold when Kim Hyang-Mi won the bronze?
CREATE TABLE table_name_97 (gold VARCHAR, bronze VARCHAR)
SELECT date FROM table_name_45 WHERE athlete = "yelena isinbayeva" AND record = "4.90m(16ft0¾in)"
What is the Date when yelena isinbayeva was the Athlete, with a Record of 4.90m(16ft0¾in)?
CREATE TABLE table_name_45 (date VARCHAR, athlete VARCHAR, record VARCHAR)
SELECT MIN(attendance) FROM table_name_12 WHERE week > 4 AND date = "october 28, 1962"
With the date of October 28, 1962, and the week greater than 4, what was the lowest attendance?
CREATE TABLE table_name_12 (attendance INTEGER, week VARCHAR, date VARCHAR)
SELECT COUNT(total_freshwater_withdrawal__km_3__yr_) FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "428(62%)"
How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)?
CREATE TABLE table_15909409_2 (total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)
SELECT COUNT(season) FROM table_2669287_1 WHERE rank = "#50"
How many seasons was the rank equal to #50?
CREATE TABLE table_2669287_1 (season VARCHAR, rank VARCHAR)
SELECT driver FROM table_name_3 WHERE grid = 10
Who drove the grid 10 car?
CREATE TABLE table_name_3 (driver VARCHAR, grid VARCHAR)
SELECT ds_division FROM table_12485020_1 WHERE divisional_secretary = "S. L. M. Haneefa"
What DS division has S. L. M. Haneefa as the divisional secretary?
CREATE TABLE table_12485020_1 (ds_division VARCHAR, divisional_secretary VARCHAR)
SELECT position__eliminated FROM table_name_29 WHERE age¹ < 22 AND full_name = "muhammad fairul azreen bin mohd zahid"
What is Position/ Eliminated, when Age¹ is less than 22, and when Full Name is "Muhammad Fairul Azreen Bin Mohd Zahid"?
CREATE TABLE table_name_29 (position__eliminated VARCHAR, age¹ VARCHAR, full_name VARCHAR)
SELECT MAX(heat) FROM table_name_91 WHERE country = "united kingdom" AND react < 0.232
what is the heat when the country is united kingdom and react is less than 0.232?
CREATE TABLE table_name_91 (heat INTEGER, country VARCHAR, react VARCHAR)
SELECT studio_analyst_s_ FROM table_2724704_5 WHERE network_s_ = "ESPN" AND sideline_reporter_s_ = "Erin Andrews and Tom Rinaldi"
Name the studio analysts for espn with erin andrews and tom rinaldi
CREATE TABLE table_2724704_5 (studio_analyst_s_ VARCHAR, network_s_ VARCHAR, sideline_reporter_s_ VARCHAR)
SELECT fastest_lap FROM table_16670746_2 WHERE winning_team = "TOM'S Racing"
Who had the fastest lap when the winning team was Tom's Racing?
CREATE TABLE table_16670746_2 (fastest_lap VARCHAR, winning_team VARCHAR)