question
stringlengths
12
243
answer
stringlengths
18
557
context
stringlengths
27
489
Which Result has a Game smaller than 37, and a Streak of lost 1, and a Record of 4-9?
SELECT result FROM table_name_40 WHERE game < 37 AND streak = "lost 1" AND record = "4-9"
CREATE TABLE table_name_40 (result VARCHAR, record VARCHAR, game VARCHAR, streak VARCHAR)
What is the L1 Cache, when the Model Number is X5-133 ADY?
SELECT l1_cache FROM table_name_88 WHERE model_number = "x5-133 ady"
CREATE TABLE table_name_88 (l1_cache VARCHAR, model_number VARCHAR)
what are the names of the channels that broadcast in both morning and night?
SELECT t1.name FROM channel AS t1 JOIN broadcast AS t2 ON t1.channel_id = t2.channel_id WHERE t2.time_of_day = 'Morning' INTERSECT SELECT t1.name FROM channel AS t1 JOIN broadcast AS t2 ON t1.channel_id = t2.channel_id WHERE t2.time_of_day = 'Night'
CREATE TABLE channel (name VARCHAR, channel_id VARCHAR); CREATE TABLE broadcast (channel_id VARCHAR, time_of_day VARCHAR)
Show the distinct leader names of colleges associated with members from country "Canada".
SELECT DISTINCT T1.Leader_Name FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID WHERE T2.Country = "Canada"
CREATE TABLE college (Leader_Name VARCHAR, College_ID VARCHAR); CREATE TABLE member (College_ID VARCHAR, Country VARCHAR)
What was d. a. weibring's to par?
SELECT to_par FROM table_name_39 WHERE player = "d. a. weibring"
CREATE TABLE table_name_39 (to_par VARCHAR, player VARCHAR)
What is the Tie number for the match where Dartford was the hone team?
SELECT tie_no FROM table_name_31 WHERE home_team = "dartford"
CREATE TABLE table_name_31 (tie_no VARCHAR, home_team VARCHAR)
What is the free sotware with the latest stable date version of 1.1?
SELECT software FROM table_name_78 WHERE cost___usd__ = "free" AND latest_stable_date__version_ = "1.1"
CREATE TABLE table_name_78 (software VARCHAR, cost___usd__ VARCHAR, latest_stable_date__version_ VARCHAR)
What is the average track number 3:25 long and a title of Great Getting up Mornin'?
SELECT AVG(track_number) FROM table_name_52 WHERE time = "3:25" AND title = "great getting up mornin'"
CREATE TABLE table_name_52 (track_number INTEGER, time VARCHAR, title VARCHAR)
What is the total population of the district of Klang, with an area larger than 636?
SELECT COUNT(2010 AS _population) FROM table_name_23 WHERE district = "klang" AND area__km_2__ > 636
CREATE TABLE table_name_23 (district VARCHAR, area__km_2__ VARCHAR)
What is the Attendance number when the runner-up was suntory sungoliath, and a Title of 46th?
SELECT attendance FROM table_name_41 WHERE runner_up = "suntory sungoliath" AND title = "46th"
CREATE TABLE table_name_41 (attendance VARCHAR, runner_up VARCHAR, title VARCHAR)
Find all the instruments ever used by the musician with last name "Heilo"?
SELECT instrument FROM instruments AS T1 JOIN Band AS T2 ON T1.bandmateid = T2.id WHERE T2.lastname = "Heilo"
CREATE TABLE instruments (bandmateid VARCHAR); CREATE TABLE Band (id VARCHAR, lastname VARCHAR)
What is the povery rate of the county with market income per capita of $20,518?
SELECT poverty_rate FROM table_22815568_1 WHERE market_income_per_capita = "$20,518"
CREATE TABLE table_22815568_1 (poverty_rate VARCHAR, market_income_per_capita VARCHAR)
How many matches ended with more than 22 points?
SELECT SUM(match) FROM table_name_83 WHERE points > 22
CREATE TABLE table_name_83 (match INTEGER, points INTEGER)
What percentage of the vote was 1,255,153 of received votes?
SELECT percentage_of_votes FROM table_name_62 WHERE number_of_votes_received = "1,255,153"
CREATE TABLE table_name_62 (percentage_of_votes VARCHAR, number_of_votes_received VARCHAR)
Which film actor (actress) starred the most films? List his or her first name, last name and actor id.
SELECT T2.first_name, T2.last_name, T2.actor_id FROM film_actor AS T1 JOIN actor AS T2 ON T1.actor_id = T2.actor_id GROUP BY T2.actor_id ORDER BY COUNT(*) DESC LIMIT 1
CREATE TABLE film_actor (actor_id VARCHAR); CREATE TABLE actor (first_name VARCHAR, last_name VARCHAR, actor_id VARCHAR)
What date was the competition of the Emerging Nations Tournament and a result of Scotland 34-9 Russia?
SELECT date FROM table_name_51 WHERE competition = "emerging nations tournament" AND result = "scotland 34-9 russia"
CREATE TABLE table_name_51 (date VARCHAR, competition VARCHAR, result VARCHAR)
Show name, opening year, and capacity for each cinema.
SELECT name, openning_year, capacity FROM cinema
CREATE TABLE cinema (name VARCHAR, openning_year VARCHAR, capacity VARCHAR)
How many mountains classifications when Rui Costa is the winner?
SELECT COUNT(mountains_classification) FROM table_25999087_2 WHERE winner = "Rui Costa"
CREATE TABLE table_25999087_2 (mountains_classification VARCHAR, winner VARCHAR)
List the carriers of devices that have no devices in stock.
SELECT Carrier FROM device WHERE NOT Device_ID IN (SELECT Device_ID FROM stock)
CREATE TABLE stock (Carrier VARCHAR, Device_ID VARCHAR); CREATE TABLE device (Carrier VARCHAR, Device_ID VARCHAR)
Where did carlton play while away?
SELECT venue FROM table_name_98 WHERE away_team = "carlton"
CREATE TABLE table_name_98 (venue VARCHAR, away_team VARCHAR)
What was United States place when the player was Fred Couples?
SELECT place FROM table_name_26 WHERE country = "united states" AND player = "fred couples"
CREATE TABLE table_name_26 (place VARCHAR, country VARCHAR, player VARCHAR)
What region has the symbol ε…«ε°Ύ?
SELECT region FROM table_name_71 WHERE japanese = "ε…«ε°Ύ"
CREATE TABLE table_name_71 (region VARCHAR, japanese VARCHAR)
Name the 2011 with 2010 of 1r and 2012 of sf
SELECT 2011 FROM table_name_35 WHERE 2010 = "1r" AND 2012 = "sf"
CREATE TABLE table_name_35 (Id VARCHAR)
In what year of school is the forward Iman McFarland?
SELECT year FROM table_name_90 WHERE position = "forward" AND name = "iman mcfarland"
CREATE TABLE table_name_90 (year VARCHAR, position VARCHAR, name VARCHAR)
What is total orders for goals of 239?
SELECT COUNT(order) FROM table_name_77 WHERE goals = 239
CREATE TABLE table_name_77 (order VARCHAR, goals VARCHAR)
What type of car does Jeff Fuller drive?
SELECT car_s_ FROM table_2182170_1 WHERE driver_s_ = "Jeff Fuller"
CREATE TABLE table_2182170_1 (car_s_ VARCHAR, driver_s_ VARCHAR)
Who was the visiting team at the game when the Canadiens had a record of 30–19–9?
SELECT visitor FROM table_name_29 WHERE record = "30–19–9"
CREATE TABLE table_name_29 (visitor VARCHAR, record VARCHAR)
How many transfer fees did Afonso Alves have after 2008?
SELECT COUNT(transfer_fee___) AS €_million_ FROM table_name_13 WHERE player = "afonso alves" AND year > 2008
CREATE TABLE table_name_13 (transfer_fee___ VARCHAR, player VARCHAR, year VARCHAR)
What country won in 1993?
SELECT country FROM table_name_28 WHERE year_s__won = "1993"
CREATE TABLE table_name_28 (country VARCHAR, year_s__won VARCHAR)
What time did the even tachi palace fights 3 take place?
SELECT time FROM table_name_67 WHERE event = "tachi palace fights 3"
CREATE TABLE table_name_67 (time VARCHAR, event VARCHAR)
How many times is the new entries this round is none?
SELECT COUNT(number_of_fixtures) FROM table_27973624_1 WHERE new_entries_this_round = "none"
CREATE TABLE table_27973624_1 (number_of_fixtures VARCHAR, new_entries_this_round VARCHAR)
What is the maximum pick when WR was the position and Michigan the college, and the overall greater than 255?
SELECT MAX(pick) FROM table_name_16 WHERE position = "wr" AND college = "michigan" AND overall > 255
CREATE TABLE table_name_16 (pick INTEGER, overall VARCHAR, position VARCHAR, college VARCHAR)
What was the Report for the Monaco race?
SELECT report FROM table_name_32 WHERE location = "monaco"
CREATE TABLE table_name_32 (report VARCHAR, location VARCHAR)
What is the position of the player who got 6 (4 in 34.49s) in the 6 atlas stones event?
SELECT position FROM table_24302700_6 WHERE event_6_atlas_stones = "6 (4 in 34.49s)"
CREATE TABLE table_24302700_6 (position VARCHAR, event_6_atlas_stones VARCHAR)
Who directed Episode 5?
SELECT director FROM table_12919003_2 WHERE episode = "episode 5"
CREATE TABLE table_12919003_2 (director VARCHAR, episode VARCHAR)
What method does the opponent of Dan New use?
SELECT method FROM table_name_90 WHERE opponent = "dan new"
CREATE TABLE table_name_90 (method VARCHAR, opponent VARCHAR)
Call sign of k43hb-ld is what virtual channel?
SELECT virtual_channel FROM table_name_13 WHERE call_sign = "k43hb-ld"
CREATE TABLE table_name_13 (virtual_channel VARCHAR, call_sign VARCHAR)
What are the names of tourist attractions that can be reached by walk or is at address 660 Shea Crescent?
SELECT T2.Name FROM Locations AS T1 JOIN Tourist_Attractions AS T2 ON T1.Location_ID = T2.Location_ID WHERE T1.Address = "660 Shea Crescent" OR T2.How_to_Get_There = "walk"
CREATE TABLE Tourist_Attractions (Name VARCHAR, Location_ID VARCHAR, How_to_Get_There VARCHAR); CREATE TABLE Locations (Location_ID VARCHAR, Address VARCHAR)
What is the party of the representative that has the smallest number of votes.
SELECT T2.Party FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID ORDER BY votes LIMIT 1
CREATE TABLE representative (Party VARCHAR, Representative_ID VARCHAR); CREATE TABLE election (Representative_ID VARCHAR)
Who directed Teenage Mutant Ninja Turtles?
SELECT director FROM table_name_81 WHERE title = "teenage mutant ninja turtles"
CREATE TABLE table_name_81 (director VARCHAR, title VARCHAR)
How many Weeks have a Result of w 17–13?
SELECT AVG(week) FROM table_name_82 WHERE result = "w 17–13"
CREATE TABLE table_name_82 (week INTEGER, result VARCHAR)
In what City/State did John Bowe win at Phillip Island Grand Prix Circuit?
SELECT city___state FROM table_name_12 WHERE winner = "john bowe" AND circuit = "phillip island grand prix circuit"
CREATE TABLE table_name_12 (city___state VARCHAR, winner VARCHAR, circuit VARCHAR)
What is the production code for the episode written by Drew Z. Greenberg?
SELECT production_code FROM table_158088_2 WHERE written_by = "Drew Z. Greenberg"
CREATE TABLE table_158088_2 (production_code VARCHAR, written_by VARCHAR)
Who was the Interview Subject on the Date when there were Pictorials of Christie Brinkley?
SELECT interview_subject FROM table_name_89 WHERE pictorials = "christie brinkley"
CREATE TABLE table_name_89 (interview_subject VARCHAR, pictorials VARCHAR)
Which score's game was less than 69 when the march was bigger than 2 and the opponents were the New York Islanders?
SELECT score FROM table_name_80 WHERE game < 69 AND march > 2 AND opponent = "new york islanders"
CREATE TABLE table_name_80 (score VARCHAR, opponent VARCHAR, game VARCHAR, march VARCHAR)
What is the Ethernet port count of the whr-hp-g300n model?
SELECT ethernet_port_count FROM table_name_72 WHERE model = "whr-hp-g300n"
CREATE TABLE table_name_72 (ethernet_port_count VARCHAR, model VARCHAR)
Find the name and position of physicians who prescribe some medication whose brand is X?
SELECT DISTINCT T1.name, T1.position FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician JOIN medication AS T3 ON T3.code = T2.medication WHERE T3.Brand = "X"
CREATE TABLE medication (code VARCHAR, Brand VARCHAR); CREATE TABLE prescribes (physician VARCHAR, medication VARCHAR); CREATE TABLE physician (name VARCHAR, position VARCHAR, employeeid VARCHAR)
What is the highest NBR number that corresponds to the J class and the road number of 1211?
SELECT MAX(nbr_number) FROM table_name_29 WHERE class = "j" AND road_number = 1211
CREATE TABLE table_name_29 (nbr_number INTEGER, class VARCHAR, road_number VARCHAR)
What is the year with 116 laps?
SELECT year FROM table_name_48 WHERE laps = 116
CREATE TABLE table_name_48 (year VARCHAR, laps VARCHAR)
What tournament was on Jan 29, 2012?
SELECT tournament FROM table_name_8 WHERE date = "jan 29, 2012"
CREATE TABLE table_name_8 (tournament VARCHAR, date VARCHAR)
what's the highest lap that contains the driver of graham hill and a grid that is larger than 18?
SELECT MAX(laps) FROM table_name_34 WHERE driver = "graham hill" AND grid > 18
CREATE TABLE table_name_34 (laps INTEGER, driver VARCHAR, grid VARCHAR)
Who built the under grid 6 car with under 49 laps?
SELECT constructor FROM table_name_94 WHERE grid < 6 AND laps < 49
CREATE TABLE table_name_94 (constructor VARCHAR, grid VARCHAR, laps VARCHAR)
Name the year for hercules
SELECT year_made FROM table_name_52 WHERE class = "hercules"
CREATE TABLE table_name_52 (year_made VARCHAR, class VARCHAR)
What's the chassis for alexander wurz's playlife fb02 engine?
SELECT chassis FROM table_name_7 WHERE engine_† = "playlife fb02" AND driver = "alexander wurz"
CREATE TABLE table_name_7 (chassis VARCHAR, engine_† VARCHAR, driver VARCHAR)
Who drive the car that retired due to engine failure and a grid of less than 9?
SELECT driver FROM table_name_91 WHERE time_retired = "engine" AND grid < 9
CREATE TABLE table_name_91 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR)
What is the average number of attendance at home games for each year?
SELECT YEAR, AVG(attendance) FROM home_game GROUP BY YEAR
CREATE TABLE home_game (YEAR VARCHAR, attendance INTEGER)
What is the total points for a place less than 2 with a played greater than 18?
SELECT SUM(points) FROM table_name_16 WHERE place < 2 AND played > 18
CREATE TABLE table_name_16 (points INTEGER, place VARCHAR, played VARCHAR)
What was the Skip for Germany?
SELECT skip FROM table_name_6 WHERE nation = "germany"
CREATE TABLE table_name_6 (skip VARCHAR, nation VARCHAR)
What is the total number of James Bond 007: Everything or Nothing for each system?
SELECT COUNT(system) FROM table_10875694_11 WHERE title = "James Bond 007: Everything or Nothing"
CREATE TABLE table_10875694_11 (system VARCHAR, title VARCHAR)
What was the rank by Weekly Rank Sky1 for title number 97?
SELECT MIN(weekly_rank_sky1) FROM table_26826304_2 WHERE _number = 97
CREATE TABLE table_26826304_2 (weekly_rank_sky1 INTEGER, _number VARCHAR)
Which Affiliation has a Nickname of cougars?
SELECT affiliation FROM table_name_47 WHERE nickname = "cougars"
CREATE TABLE table_name_47 (affiliation VARCHAR, nickname VARCHAR)
What was Melbourne's score as the home team?
SELECT home_team AS score FROM table_name_16 WHERE home_team = "melbourne"
CREATE TABLE table_name_16 (home_team VARCHAR)
What was the name of the winner or 2nd when the result was –, and weight was 6.7?
SELECT winner_or_2nd FROM table_name_91 WHERE result = "–" AND weight = 6.7
CREATE TABLE table_name_91 (winner_or_2nd VARCHAR, result VARCHAR, weight VARCHAR)
Name the D 47 when it has a D 41 of r 36
SELECT d_47 FROM table_name_93 WHERE d_41 = "r 36"
CREATE TABLE table_name_93 (d_47 VARCHAR, d_41 VARCHAR)
Which service does the network of atn urdu offer?
SELECT service FROM table_name_74 WHERE network = "atn urdu"
CREATE TABLE table_name_74 (service VARCHAR, network VARCHAR)
When was the location 15km NW of Pol-E Khomri, the circumstaances IED and the casualties of 1 WIA?
SELECT date FROM table_name_66 WHERE casualties = "1 wia" AND circumstances = "ied" AND location = "15km nw of pol-e khomri"
CREATE TABLE table_name_66 (date VARCHAR, location VARCHAR, casualties VARCHAR, circumstances VARCHAR)
What date were Romania at Home at the Bucharest Venue with a Score of 13-19?
SELECT date FROM table_name_80 WHERE home = "romania" AND venue = "bucharest" AND score = "13-19"
CREATE TABLE table_name_80 (date VARCHAR, score VARCHAR, home VARCHAR, venue VARCHAR)
What is the final score of the game that was at raymond james stadium?
SELECT final_score FROM table_name_42 WHERE game_site = "raymond james stadium"
CREATE TABLE table_name_42 (final_score VARCHAR, game_site VARCHAR)
What is the 2nd verb for Khola?
SELECT 2 AS __f_ FROM table_name_34 WHERE verb = "khola"
CREATE TABLE table_name_34 (verb VARCHAR)
What is the weight of the player from club panionios g.c. and was born on 1975-05-21?
SELECT weight FROM table_name_70 WHERE club = "panionios g.c." AND date_of_birth = "1975-05-21"
CREATE TABLE table_name_70 (weight VARCHAR, club VARCHAR, date_of_birth VARCHAR)
Namethe school team for season 2008
SELECT school_club_team FROM table_15463188_7 WHERE season = "2008"
CREATE TABLE table_15463188_7 (school_club_team VARCHAR, season VARCHAR)
Which Venue has a Result of won 5-4?
SELECT venue FROM table_name_65 WHERE result = "won 5-4"
CREATE TABLE table_name_65 (venue VARCHAR, result VARCHAR)
What is Ben Hogan's Place?
SELECT place FROM table_name_21 WHERE player = "ben hogan"
CREATE TABLE table_name_21 (place VARCHAR, player VARCHAR)
Which record's march was 26?
SELECT record FROM table_name_77 WHERE march = 26
CREATE TABLE table_name_77 (record VARCHAR, march VARCHAR)
What is the highest number of laps for chris amon?
SELECT MAX(laps) FROM table_name_51 WHERE driver = "chris amon"
CREATE TABLE table_name_51 (laps INTEGER, driver VARCHAR)
What is 1982, when 1978 is "A", when 1985 is "4R", and when 1991 is "1R"?
SELECT 1982 FROM table_name_64 WHERE 1978 = "a" AND 1985 = "4r" AND 1991 = "1r"
CREATE TABLE table_name_64 (Id VARCHAR)
How many league of communists have the municipality of bar?
SELECT COUNT(league_of_communists) FROM table_15306124_1 WHERE municipality = "Bar"
CREATE TABLE table_15306124_1 (league_of_communists VARCHAR, municipality VARCHAR)
For each country and airline name, how many routes are there?
SELECT T1.country, T1.name, COUNT(*) FROM airlines AS T1 JOIN routes AS T2 ON T1.alid = T2.alid GROUP BY T1.country, T1.name
CREATE TABLE airlines (country VARCHAR, name VARCHAR, alid VARCHAR); CREATE TABLE routes (alid VARCHAR)
Give me a list of cities whose temperature in March is lower than that in July or higher than that in Oct?
SELECT T1.city FROM city AS T1 JOIN temperature AS T2 ON T1.city_id = T2.city_id WHERE T2.Mar < T2.Jul OR T2.Mar > T2.Oct
CREATE TABLE city (city VARCHAR, city_id VARCHAR); CREATE TABLE temperature (city_id VARCHAR, Mar VARCHAR, Jul VARCHAR, Oct VARCHAR)
What date was the episode originally aired that was directed by James Widdoes and the production code is 320?
SELECT original_air_date FROM table_2221374_3 WHERE directed_by = "James Widdoes" AND production_code = 320
CREATE TABLE table_2221374_3 (original_air_date VARCHAR, directed_by VARCHAR, production_code VARCHAR)
Which Label has a Country of canada, and a Format of cd/digital download?
SELECT label FROM table_name_53 WHERE country = "canada" AND format = "cd/digital download"
CREATE TABLE table_name_53 (label VARCHAR, country VARCHAR, format VARCHAR)
What's the HC for the Euro I standard?
SELECT hc__g_kwh_ FROM table_2780146_6 WHERE standard = "Euro I"
CREATE TABLE table_2780146_6 (hc__g_kwh_ VARCHAR, standard VARCHAR)
Name th country of origin for journey
SELECT country_of_origin FROM table_name_81 WHERE artist = "journey"
CREATE TABLE table_name_81 (country_of_origin VARCHAR, artist VARCHAR)
Name the team for june 20
SELECT team FROM table_2139390_2 WHERE date = "June 20"
CREATE TABLE table_2139390_2 (team VARCHAR, date VARCHAR)
What is Record, when Location Attendance is "Izod Center 16,911"?
SELECT record FROM table_name_4 WHERE location_attendance = "izod center 16,911"
CREATE TABLE table_name_4 (record VARCHAR, location_attendance VARCHAR)
what is the score when the opponent is ann grossman?
SELECT score FROM table_name_79 WHERE opponent = "ann grossman"
CREATE TABLE table_name_79 (score VARCHAR, opponent VARCHAR)
Name the callback date for amway arena
SELECT callback_date FROM table_22897967_1 WHERE audition_venue = "Amway Arena"
CREATE TABLE table_22897967_1 (callback_date VARCHAR, audition_venue VARCHAR)
What was the highest weight in kg for F Position, Jersey #12?
SELECT MAX(weight__kg_) FROM table_name_41 WHERE position = "f" AND jersey__number = 12
CREATE TABLE table_name_41 (weight__kg_ INTEGER, position VARCHAR, jersey__number VARCHAR)
What's the Material collected for the 978-1401209674 ISBN?
SELECT material_collected FROM table_name_75 WHERE isbn = "978-1401209674"
CREATE TABLE table_name_75 (material_collected VARCHAR, isbn VARCHAR)
When the carrier is idc, what are the frequencies?
SELECT frequency FROM table_19246_1 WHERE carrier = "IDC"
CREATE TABLE table_19246_1 (frequency VARCHAR, carrier VARCHAR)
What is the Nation with a Record that is 7.39?
SELECT nation FROM table_name_37 WHERE record = "7.39"
CREATE TABLE table_name_37 (nation VARCHAR, record VARCHAR)
Which episode was the number in the season where the number in the season is 10?
SELECT no_in_series FROM table_10718631_2 WHERE no_in_season = 10
CREATE TABLE table_10718631_2 (no_in_series VARCHAR, no_in_season VARCHAR)
how heavy is the maximum
SELECT MAX(per_lift) FROM table_13950065_1
CREATE TABLE table_13950065_1 (per_lift INTEGER)
What was the transfer fee for the player ending in 2011 and moving from Thrasyvoulos?
SELECT transfer_fee FROM table_name_97 WHERE ends = 2011 AND moving_from = "thrasyvoulos"
CREATE TABLE table_name_97 (transfer_fee VARCHAR, ends VARCHAR, moving_from VARCHAR)
When 27 gp h-e bombs the capacity of the bomb what is the cause of loss?
SELECT cause_of_loss FROM table_18933037_3 WHERE bomb_capacity = "27 GP H-E bombs"
CREATE TABLE table_18933037_3 (cause_of_loss VARCHAR, bomb_capacity VARCHAR)
Which Team that has a Position in table of 15th (a) and a Outgoing manager of claudio borghi?
SELECT team FROM table_name_55 WHERE position_in_table = "15th (a)" AND outgoing_manager = "claudio borghi"
CREATE TABLE table_name_55 (team VARCHAR, position_in_table VARCHAR, outgoing_manager VARCHAR)
WHich Country has a ICAO of ltcd?
SELECT country FROM table_name_46 WHERE icao = "ltcd"
CREATE TABLE table_name_46 (country VARCHAR, icao VARCHAR)
What country is Craig Parry from?
SELECT country FROM table_name_59 WHERE player = "craig parry"
CREATE TABLE table_name_59 (country VARCHAR, player VARCHAR)
Who was the opponent of the game with final score won 4-1?
SELECT opponent FROM table_17120964_8 WHERE result = "Won 4-1"
CREATE TABLE table_17120964_8 (opponent VARCHAR, result VARCHAR)
What is the average goals less than 41 that goalkeeper Claudio Bravo had?
SELECT COUNT(average) FROM table_name_85 WHERE goals < 41 AND goalkeeper = "claudio bravo"
CREATE TABLE table_name_85 (average VARCHAR, goals VARCHAR, goalkeeper VARCHAR)