answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT MIN(episode__number) FROM table_25691838_12 WHERE guest = "Julie Nixon Eisenhower and David Eisenhower"
What is the episode # when the guests were julie nixon eisenhower and david eisenhower?
CREATE TABLE table_25691838_12 (episode__number INTEGER, guest VARCHAR)
SELECT AVG(draws) FROM table_name_97 WHERE goal_difference > -3 AND goals_against = 30 AND points > 45
What is the average Draws, when Goal Difference is greater than -3, when Goals Against is 30, and when Points is greater than 45?
CREATE TABLE table_name_97 (draws INTEGER, points VARCHAR, goal_difference VARCHAR, goals_against VARCHAR)
SELECT COUNT(spanish) FROM table_26614365_5 WHERE portuguese = "Bem-vindo"
How many Spanish word is there for the Portuguese bem-vindo?
CREATE TABLE table_26614365_5 (spanish VARCHAR, portuguese VARCHAR)
SELECT AVG(year_made) FROM table_name_85 WHERE iwcr_no = "5" AND year_withdrawn > 1926
What is the mean Year when the IWCR number was 5 and the Year withdrawn was bigger than 1926?
CREATE TABLE table_name_85 (year_made INTEGER, iwcr_no VARCHAR, year_withdrawn VARCHAR)
SELECT location_attendance FROM table_name_83 WHERE date = "february 27"
What is the Location Attendance when the Date was February 27?
CREATE TABLE table_name_83 (location_attendance VARCHAR, date VARCHAR)
SELECT COUNT(position) FROM table_24565004_15 WHERE nationality² = "Brazil"
How many players are from the country of Brazil?
CREATE TABLE table_24565004_15 (position VARCHAR, nationality² VARCHAR)
SELECT COUNT(round) FROM table_21256068_3 WHERE score = "44-22"
how many rounds had the score 44-22
CREATE TABLE table_21256068_3 (round VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_49 WHERE date = "may 5, 2012"
What is the Outcome with a Date that is may 5, 2012?
CREATE TABLE table_name_49 (outcome VARCHAR, date VARCHAR)
SELECT date FROM table_name_56 WHERE opponents = "astley bridge 'a'"
When was the game played against Astley Bridge 'a'?
CREATE TABLE table_name_56 (date VARCHAR, opponents VARCHAR)
SELECT AVG(champs) FROM table_name_16 WHERE draw > 2 AND games < 60
Which Champs is the average one that has a Draw larger than 2, and Games smaller than 60?
CREATE TABLE table_name_16 (champs INTEGER, draw VARCHAR, games VARCHAR)
SELECT opponent FROM table_name_37 WHERE result = "loss" AND location = "westbury, ny"
Who was the opponent with the loss in Westbury, NY?
CREATE TABLE table_name_37 (opponent VARCHAR, result VARCHAR, location VARCHAR)
SELECT location FROM table_22862203_2 WHERE date = "Jan. 16/06"
Where was the game on jan. 16/06 played?
CREATE TABLE table_22862203_2 (location VARCHAR, date VARCHAR)
SELECT COUNT(troops_per_one_million_population) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = "2.76"
Name the total number of troops per one million being 2.76
CREATE TABLE table_30108346_1 (troops_per_one_million_population VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR)
SELECT Age FROM artist
List the age of all music artists.
CREATE TABLE artist (Age VARCHAR)
SELECT home_team AS score FROM table_name_42 WHERE away_team = "richmond"
What was the score of the home team when Richmond was the away team?
CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR)
SELECT MAX(race_total_pts_) FROM table_23293785_3 WHERE country = "England"
How many racing points did England get?
CREATE TABLE table_23293785_3 (race_total_pts_ INTEGER, country VARCHAR)
SELECT outcome FROM table_name_56 WHERE opponent_in_final = "nina bratchikova kathrin wörle"
Name the outcome that had an opponent in final of nina bratchikova kathrin wörle
CREATE TABLE table_name_56 (outcome VARCHAR, opponent_in_final VARCHAR)
SELECT season FROM table_name_72 WHERE head_coach = "jonas kazlauskas" AND europe = "champions cup group stage"
WHAT SEASON HAD COACH JONAS KAZLAUSKAS AT champions cup group stage?
CREATE TABLE table_name_72 (season VARCHAR, head_coach VARCHAR, europe VARCHAR)
SELECT date_of_birth FROM Guests WHERE gender_code = "Male"
Return the date of birth for all the guests with gender code "Male".
CREATE TABLE Guests (date_of_birth VARCHAR, gender_code VARCHAR)
SELECT COUNT(points) FROM table_name_7 WHERE performer = "rob burke band"
Which Points has a Performer of rob burke band?
CREATE TABLE table_name_7 (points VARCHAR, performer VARCHAR)
SELECT T1.Name, T1.Population FROM city AS T1 JOIN countrylanguage AS T2 ON T1.CountryCode = T2.CountryCode WHERE T2.Language = "English" ORDER BY T1.Population DESC LIMIT 1
Find the city with the largest population that uses English.
CREATE TABLE city (Name VARCHAR, Population VARCHAR, CountryCode VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR)
SELECT T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id WHERE stageposition = "back" GROUP BY lastname ORDER BY COUNT(*) DESC LIMIT 1
What is the last name of the musician that has been at the back position the most?
CREATE TABLE Band (lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR)
SELECT draw FROM table_name_76 WHERE performer = "andrea cubric"
WHAT IS THE DRAW FOR PERFORMER ANDREA CUBRIC?
CREATE TABLE table_name_76 (draw VARCHAR, performer VARCHAR)
SELECT height FROM table_name_1 WHERE position = "forward" AND current_club = "toronto raptors"
What is the height of the Forward who currently plays for the Toronto Raptors?
CREATE TABLE table_name_1 (height VARCHAR, position VARCHAR, current_club VARCHAR)
SELECT score FROM table_name_28 WHERE to_par = "–3" AND country = "united states"
WHich Score has a To par of –3, and a Country of united states?
CREATE TABLE table_name_28 (score VARCHAR, to_par VARCHAR, country VARCHAR)
SELECT overall_record FROM table_1246208_5 WHERE club = "Dallas Burn"
what is the overall record when the club is dallas burn?
CREATE TABLE table_1246208_5 (overall_record VARCHAR, club VARCHAR)
SELECT score FROM table_name_98 WHERE record = "12–8–3"
What is the score of the game with a record of 12–8–3?
CREATE TABLE table_name_98 (score VARCHAR, record VARCHAR)
SELECT COUNT(revenue__) AS $m_ FROM table_name_21 WHERE country = "italy" AND team = "internazionale" AND operating_income__$m_ < 27
Name the total number of revenue for italy with team of internazionale with operating income less than 27
CREATE TABLE table_name_21 (revenue__ VARCHAR, operating_income__$m_ VARCHAR, country VARCHAR, team VARCHAR)
SELECT total_viewers FROM table_name_30 WHERE bbc_one_weekly_ranking > 7 AND episode_no < 4
What was the total viewership for BBC One weekly rankings larger than 7, before episode 4?
CREATE TABLE table_name_30 (total_viewers VARCHAR, bbc_one_weekly_ranking VARCHAR, episode_no VARCHAR)
SELECT away_team AS score FROM table_name_3 WHERE away_team = "st kilda" AND crowd = 8157
Name the Away team score which has an Away team of st kilda, and a Crowd of 8157?
CREATE TABLE table_name_3 (away_team VARCHAR, crowd VARCHAR)
SELECT home_team AS score FROM table_name_44 WHERE crowd > 25 OFFSET 603
What is the home score with a crowd larger than 25,603?
CREATE TABLE table_name_44 (home_team VARCHAR, crowd INTEGER)
SELECT name FROM table_name_61 WHERE constituency_number = "1"
Which Name has a Constituency number of 1?
CREATE TABLE table_name_61 (name VARCHAR, constituency_number VARCHAR)
SELECT high_assists FROM table_17355408_9 WHERE game = 80
Who had the high assists in game 80?
CREATE TABLE table_17355408_9 (high_assists VARCHAR, game VARCHAR)
SELECT country FROM table_name_21 WHERE package_option = "qualsiasi tranne sky hd"
Which country has a qualsiasi tranne sky hd package/option?
CREATE TABLE table_name_21 (country VARCHAR, package_option VARCHAR)
SELECT date FROM table_name_73 WHERE game < 4 AND score = "116-114"
What date has a game smaller than 4, and a score of 116-114?
CREATE TABLE table_name_73 (date VARCHAR, game VARCHAR, score VARCHAR)
SELECT nominee_s_ FROM table_name_69 WHERE year < 2005 AND result = "won"
Which nominees won before year 2005?
CREATE TABLE table_name_69 (nominee_s_ VARCHAR, year VARCHAR, result VARCHAR)
SELECT artist FROM table_name_88 WHERE draw < 2
What is the artist with less than a 2 draw?
CREATE TABLE table_name_88 (artist VARCHAR, draw INTEGER)
SELECT no_in_season FROM table_228973_11 WHERE original_air_date = "February 11, 2005"
The episode which originally aired on February 11, 2005 had which episode # of the season?
CREATE TABLE table_228973_11 (no_in_season VARCHAR, original_air_date VARCHAR)
SELECT T2.Name FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID ORDER BY votes DESC
What are the names of representatives in descending order of votes?
CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR); CREATE TABLE election (Representative_ID VARCHAR)
SELECT p_max___bar__ FROM table_26967904_1 WHERE p1_diameter__mm_ = "12.09"
What is the P max (bar) of the pistol with a P1 diameter of 12.09 mm?
CREATE TABLE table_26967904_1 (p_max___bar__ VARCHAR, p1_diameter__mm_ VARCHAR)
SELECT AVG(episode__number) FROM table_name_96 WHERE share = 9 AND rank = "#35" AND viewers < 8.21
What is the average Episode # with a share of 9, and #35 is rank and less than 8.21 viewers?
CREATE TABLE table_name_96 (episode__number INTEGER, viewers VARCHAR, share VARCHAR, rank VARCHAR)
SELECT COUNT(DISTINCT city) FROM EMPLOYEE
How many distinct cities does the employees live in?
CREATE TABLE EMPLOYEE (city VARCHAR)
SELECT competition FROM table_name_6 WHERE 2010 = "dnp"
Name the competition of 2010 of dnp
CREATE TABLE table_name_6 (competition VARCHAR)
SELECT performer_4 FROM table_14934885_1 WHERE performer_3 = "Kate Robbins"
Who was performer 4 when Kate Robbins was performer 3?
CREATE TABLE table_14934885_1 (performer_4 VARCHAR, performer_3 VARCHAR)
SELECT COUNT(year) FROM table_name_67 WHERE drivers = "ben hanley" AND flaps < 0
How many years have Drivers of ben hanley, and Flaps smaller than 0?
CREATE TABLE table_name_67 (year VARCHAR, drivers VARCHAR, flaps VARCHAR)
SELECT live_births FROM table_name_79 WHERE crude_birth_rate__per_1000_ > 15.7 AND average_population__x_1000_ < 297 AND deaths = "4 686"
How many live births where the crude birth rate is lore than 15.7, average population is less than 297 and deaths are al 4 686?
CREATE TABLE table_name_79 (live_births VARCHAR, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR, average_population__x_1000_ VARCHAR)
SELECT sleeves FROM table_name_67 WHERE year = "2006-2008"
Which Sleeves have a Year of 2006-2008?
CREATE TABLE table_name_67 (sleeves VARCHAR, year VARCHAR)
SELECT method FROM table_name_70 WHERE record = "11-10"
Which method has a record of 11-10?
CREATE TABLE table_name_70 (method VARCHAR, record VARCHAR)
SELECT MAX(reign) FROM table_name_66 WHERE date = "march 10, 2007"
What's the highest reign on march 10, 2007?
CREATE TABLE table_name_66 (reign INTEGER, date VARCHAR)
SELECT stations FROM table_name_64 WHERE city = "vancouver, bc"
Which Stations are in vancouver, bc?
CREATE TABLE table_name_64 (stations VARCHAR, city VARCHAR)
SELECT SUM(T1.crs_credit), T1.dept_code FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code GROUP BY T1.dept_code
Find the total credits of all classes offered by each department.
CREATE TABLE CLASS (crs_code VARCHAR); CREATE TABLE course (dept_code VARCHAR, crs_credit INTEGER, crs_code VARCHAR)
SELECT result FROM table_name_89 WHERE opponent = "greensboro prowlers" AND date = "april 6, 2002"
What was the result of the april 6, 2002 game against the greensboro prowlers?
CREATE TABLE table_name_89 (result VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT venue FROM table_name_22 WHERE away_team = "footscray"
Which venue hosted an away team of Footscray?
CREATE TABLE table_name_22 (venue VARCHAR, away_team VARCHAR)
SELECT AVG(population) FROM table_name_24 WHERE density__pop_per_km_2__ < 487 AND rank = 9 AND area__km_2__ > 377 OFFSET 944
What is the average population of the region with a density less than 487, a rank of 9, and an area larger than 377,944?
CREATE TABLE table_name_24 (population INTEGER, area__km_2__ VARCHAR, density__pop_per_km_2__ VARCHAR, rank VARCHAR)
SELECT MAX(rank) FROM table_name_12 WHERE nation = "iceland" AND silver < 19
Where does Iceland rank with under 19 silvers?
CREATE TABLE table_name_12 (rank INTEGER, nation VARCHAR, silver VARCHAR)
SELECT after_1_year FROM table_name_40 WHERE after_3_years = "80%"
Which After 1 year has an After 3 years of 80%?
CREATE TABLE table_name_40 (after_1_year VARCHAR, after_3_years VARCHAR)
SELECT drawn FROM table_1676073_12 WHERE lost = "11" AND points_for = "748"
How many games drawn for the team that lost 11 and had 748 points?
CREATE TABLE table_1676073_12 (drawn VARCHAR, lost VARCHAR, points_for VARCHAR)
SELECT hotel_id, star_rating_code FROM HOTELS ORDER BY price_range
Show the id and star rating of each hotel, ordered by its price from low to high.
CREATE TABLE HOTELS (hotel_id VARCHAR, star_rating_code VARCHAR, price_range VARCHAR)
SELECT race_status FROM table_181892_4 WHERE chassis = "Lotus-Ford 38/1"
What was the race status(es) with the lotus-ford 38/1 chassis?
CREATE TABLE table_181892_4 (race_status VARCHAR, chassis VARCHAR)
SELECT date FROM table_name_21 WHERE saros > 124 AND type = "total" AND magnitude > 1.0535 AND time__greatest_ = "20:55:28"
what is the date when saros is more than 124, the type is total, the magnitude is more than 1.0535 and the time (greatest) is 20:55:28?
CREATE TABLE table_name_21 (date VARCHAR, time__greatest_ VARCHAR, magnitude VARCHAR, saros VARCHAR, type VARCHAR)
SELECT home_team FROM table_name_95 WHERE away_team = "hawthorn"
Who is the home team when hawthorn is the away team?
CREATE TABLE table_name_95 (home_team VARCHAR, away_team VARCHAR)
SELECT year FROM table_name_70 WHERE venue = "barcelona, spain"
In what year did Iljuštšenko compete in Barcelona, Spain?
CREATE TABLE table_name_70 (year VARCHAR, venue VARCHAR)
SELECT overall_record FROM table_name_28 WHERE school = "milford"
What is the Overall Record for the School in Milford?
CREATE TABLE table_name_28 (overall_record VARCHAR, school VARCHAR)
SELECT venue FROM table_name_62 WHERE away_team = "richmond"
At what venue was richmond the away team?
CREATE TABLE table_name_62 (venue VARCHAR, away_team VARCHAR)
SELECT COUNT(heat) FROM table_name_18 WHERE lane = 5 AND rank > 110 AND nationality = "honduras"
How many heats had 5 lanes and a rank less than 110 for the nationality of Honduras?
CREATE TABLE table_name_18 (heat VARCHAR, nationality VARCHAR, lane VARCHAR, rank VARCHAR)
SELECT original_title FROM table_18987377_1 WHERE film_title_used_in_nomination = "The Last Metro"
Name the original title for the last metro
CREATE TABLE table_18987377_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT COUNT(year) FROM table_name_47 WHERE title = "black swan" AND award = "gotham awards"
What year was Black Swan up for the Gotham Awards?
CREATE TABLE table_name_47 (year VARCHAR, title VARCHAR, award VARCHAR)
SELECT city_of_license FROM table_name_28 WHERE frequency_mhz > 102.3 AND call_sign = "k292eu"
In which city is the station licensed whose frequency MHz is higher than 102.3 and whose call sign is K292EU?
CREATE TABLE table_name_28 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT original_air_date FROM table_23705843_1 WHERE ratings__millions_ = "1.92"
What is the original air date if the ratings is 1.92 million?
CREATE TABLE table_23705843_1 (original_air_date VARCHAR, ratings__millions_ VARCHAR)
SELECT finish FROM table_name_35 WHERE record = "74-68"
Which finish has a Record of 74-68?
CREATE TABLE table_name_35 (finish VARCHAR, record VARCHAR)
SELECT against FROM table_name_98 WHERE season = "1987/88" AND _number_100 > 13 AND score = "139"
Which Against has a Season of 1987/88, and a # 100 larger than 13, and a Score of 139?
CREATE TABLE table_name_98 (against VARCHAR, score VARCHAR, season VARCHAR, _number_100 VARCHAR)
SELECT MAX(prominence__ft_) FROM table_name_18 WHERE prominence__m_ < 103
What is the highest prominence in ft of the peak with a prominence in m less than 103?
CREATE TABLE table_name_18 (prominence__ft_ INTEGER, prominence__m_ INTEGER)
SELECT AVG(goals) FROM table_name_41 WHERE apps < 1
Which Goals have Apps smaller than 1?
CREATE TABLE table_name_41 (goals INTEGER, apps INTEGER)
SELECT SUM(year) FROM table_name_7 WHERE location = "beijing"
For how many years was the location at Beijing?
CREATE TABLE table_name_7 (year INTEGER, location VARCHAR)
SELECT SUM(points) FROM table_name_96 WHERE team = "suzuki" AND year < 1981 AND wins < 0
Before 1981, how many Points did Team Suzuki have with less than 0 Wins?
CREATE TABLE table_name_96 (points INTEGER, wins VARCHAR, team VARCHAR, year VARCHAR)
SELECT castilian FROM table_name_95 WHERE italian = "auto(mobile)"
What word would a Castilian speaker use for the Italian word auto(mobile)?
CREATE TABLE table_name_95 (castilian VARCHAR, italian VARCHAR)
SELECT COUNT(slope_length) FROM table_17814458_1 WHERE elevation_groundstation = 1966
Name the slope length for 1966 groundstation
CREATE TABLE table_17814458_1 (slope_length VARCHAR, elevation_groundstation VARCHAR)
SELECT network FROM table_name_57 WHERE studio_host = "john wells"
Which network had the host of john wells?
CREATE TABLE table_name_57 (network VARCHAR, studio_host VARCHAR)
SELECT car_model FROM table_name_19 WHERE engine = "ford 6.0 v8"
What Car Model has the Engine of Ford 6.0 V8?
CREATE TABLE table_name_19 (car_model VARCHAR, engine VARCHAR)
SELECT MAX(_number_of_constituency_votes) FROM table_name_22 WHERE election = 2005
What is the highest # Of Constituency Votes, when Election is 2005?
CREATE TABLE table_name_22 (_number_of_constituency_votes INTEGER, election VARCHAR)
SELECT AVG(wins) FROM table_name_1 WHERE byes < 2
How many wins for the team with fewer than 2 byes?
CREATE TABLE table_name_1 (wins INTEGER, byes INTEGER)
SELECT SUM(seats) FROM table_name_57 WHERE model = "btc-5"
How many seats does the BTC-5 model have?
CREATE TABLE table_name_57 (seats INTEGER, model VARCHAR)
SELECT _percentage_of_seats FROM table_name_74 WHERE net_gain_loss = "+34"
When there was a net gain/loss of +34, what was the percentage of seats that party held?
CREATE TABLE table_name_74 (_percentage_of_seats VARCHAR, net_gain_loss VARCHAR)
SELECT AVG(attendance) FROM table_name_58 WHERE week > 16
What was the average attendance in weeks after 16?
CREATE TABLE table_name_58 (attendance INTEGER, week INTEGER)
SELECT sepal_width FROM table_10477224_1 WHERE species = "I.virginica" AND petal_length = "5.1"
Name the sepal width for i.virginica with petal length of 5.1
CREATE TABLE table_10477224_1 (sepal_width VARCHAR, species VARCHAR, petal_length VARCHAR)
SELECT role FROM table_name_83 WHERE play = "tea and sympathy"
Tell me the role for tea and sympathy
CREATE TABLE table_name_83 (role VARCHAR, play VARCHAR)
SELECT away_team FROM table_name_34 WHERE venue = "glenferrie oval"
What away team played at Glenferrie Oval?
CREATE TABLE table_name_34 (away_team VARCHAR, venue VARCHAR)
SELECT mens_doubles FROM table_13857700_1 WHERE mixed_doubles = "Jimm Aalto Nina Sarnesto"
who is the the mens doubles with mixed doubles being jimm aalto nina sarnesto
CREATE TABLE table_13857700_1 (mens_doubles VARCHAR, mixed_doubles VARCHAR)
SELECT MAX(administrative_population__2010_) FROM table_16489766_2 WHERE chinese = "昆明"
What is the maximum administrative population of the city with Chinese translation 昆明?
CREATE TABLE table_16489766_2 (administrative_population__2010_ INTEGER, chinese VARCHAR)
SELECT name FROM manufacturers WHERE revenue < (SELECT MIN(revenue) FROM manufacturers WHERE headquarter = 'Austin')
Find the name of companies whose revenue is smaller than the revenue of all companies based in Austin.
CREATE TABLE manufacturers (name VARCHAR, revenue INTEGER, headquarter VARCHAR)
SELECT worst_dancer_s_ FROM table_name_91 WHERE dance = "jive"
What's the worst dance of jive dancer(s)?
CREATE TABLE table_name_91 (worst_dancer_s_ VARCHAR, dance VARCHAR)
SELECT arrival FROM table_14688744_2 WHERE station_code = "PNVL"
what is the arrival time where station code is pnvl?
CREATE TABLE table_14688744_2 (arrival VARCHAR, station_code VARCHAR)
SELECT position FROM table_name_7 WHERE pick = "10th overall"
Which position ranked 10th overall?
CREATE TABLE table_name_7 (position VARCHAR, pick VARCHAR)
SELECT MIN(meas_num) FROM table_256286_60
What was the lowest measure number?
CREATE TABLE table_256286_60 (meas_num INTEGER)
SELECT player FROM table_name_41 WHERE position = "fly-half" AND caps = 3
Which player has a Position of fly-half, and a Caps of 3?
CREATE TABLE table_name_41 (player VARCHAR, position VARCHAR, caps VARCHAR)
SELECT college FROM table_name_34 WHERE pick < 145 AND player = "jeff wilkins"
What is College, when Pick is less than 145, and when Player is Jeff Wilkins?
CREATE TABLE table_name_34 (college VARCHAR, pick VARCHAR, player VARCHAR)
SELECT nat FROM table_name_73 WHERE name = "fàbregas ( captain )"
What is Nat., when Name is "Fàbregas ( Captain )"?
CREATE TABLE table_name_73 (nat VARCHAR, name VARCHAR)
SELECT mark FROM table_name_44 WHERE lane > 2 AND heat > 4 AND name = "rabangaki nawai"
What is the mark number when the lane for Rabangaki Nawai when it is greater than 2 and the heat is larger than 4?
CREATE TABLE table_name_44 (mark VARCHAR, name VARCHAR, lane VARCHAR, heat VARCHAR)
SELECT SUM(loss) FROM table_name_72 WHERE name = "bullock, chris" AND long < 36
Which Loss has a Name of bullock, chris, and a Long smaller than 36?
CREATE TABLE table_name_72 (loss INTEGER, name VARCHAR, long VARCHAR)
SELECT city FROM table_name_84 WHERE icao = "tba"
Which city has an ICAO of TBA?
CREATE TABLE table_name_84 (city VARCHAR, icao VARCHAR)