answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT sport FROM table_name_92 WHERE games = "1992 barcelona"
Which sport was in the 1992 Barcelona games?
CREATE TABLE table_name_92 (sport VARCHAR, games VARCHAR)
SELECT incumbent FROM table_1341577_43 WHERE candidates = "Marilyn Lloyd (D) 57.4% Harold W. Coker (R) 42.6%"
Who is the incumbent that is listed with the candidates listed as marilyn lloyd (d) 57.4% harold w. coker (r) 42.6%?
CREATE TABLE table_1341577_43 (incumbent VARCHAR, candidates VARCHAR)
SELECT weekly_schedule FROM table_18821196_1 WHERE country = "Norway"
What is every weekly schedule in the country of Norway?
CREATE TABLE table_18821196_1 (weekly_schedule VARCHAR, country VARCHAR)
SELECT television_service FROM table_name_54 WHERE package_option = "sky famiglia" AND language = "italian"
What is Television Service, when Package/Option is Sky Famiglia, and when Language is Italian?
CREATE TABLE table_name_54 (television_service VARCHAR, package_option VARCHAR, language VARCHAR)
SELECT country FROM table_name_91 WHERE score = 68 - 73 - 69 = 210
What is the country with a 68-73-69=210 score?
CREATE TABLE table_name_91 (country VARCHAR, score VARCHAR)
SELECT away_team AS score FROM table_16388439_3 WHERE home_team = "Carlton"
Name the away team score for carlton
CREATE TABLE table_16388439_3 (away_team VARCHAR, home_team VARCHAR)
SELECT COUNT(no_in_season) FROM table_228973_3 WHERE original_air_date = "January 3, 1997"
which is the number of the season episode whose premiere was in january 3, 1997?
CREATE TABLE table_228973_3 (no_in_season VARCHAR, original_air_date VARCHAR)
SELECT home FROM table_name_14 WHERE points > 92
Which home team has higher than 92 points?
CREATE TABLE table_name_14 (home VARCHAR, points INTEGER)
SELECT Studio FROM film WHERE Director = "Nicholas Meyer" INTERSECT SELECT Studio FROM film WHERE Director = "Walter Hill"
Show the studios that have produced films with director "Nicholas Meyer" and "Walter Hill".
CREATE TABLE film (Studio VARCHAR, Director VARCHAR)
SELECT location FROM table_26166836_2 WHERE distance = "Marathon" AND month_held = "February"
What are all of the area where distance is marathon and month held is february
CREATE TABLE table_26166836_2 (location VARCHAR, distance VARCHAR, month_held VARCHAR)
SELECT MIN(pick__number) FROM table_name_84 WHERE mls_team = "new england revolution"
Tell me the lowest pick number for new england revolution
CREATE TABLE table_name_84 (pick__number INTEGER, mls_team VARCHAR)
SELECT drawn FROM table_name_75 WHERE tries_against = "69"
What is the draw when the tries against was 69?
CREATE TABLE table_name_75 (drawn VARCHAR, tries_against VARCHAR)
SELECT event FROM table_name_4 WHERE result = "win" AND score = "33-22"
Result of win, and a Score of 33-22 involved what event?
CREATE TABLE table_name_4 (event VARCHAR, result VARCHAR, score VARCHAR)
SELECT earnings_per_share__p_ FROM table_name_47 WHERE year_ended = "2007"
What is the year 2007 earnings per share?
CREATE TABLE table_name_47 (earnings_per_share__p_ VARCHAR, year_ended VARCHAR)
SELECT MIN(fa_cup) FROM table_name_22 WHERE player = "mohd faizal desa" AND total > 0
What is the lowest FA cup that has mohd faizal desa as the player, with a total greater than 0?
CREATE TABLE table_name_22 (fa_cup INTEGER, player VARCHAR, total VARCHAR)
SELECT MAX(attendance) FROM table_name_59 WHERE score = "2:0" AND away = "vida"
What is the highest attendance of the match with a 2:0 score and vida as the away team?
CREATE TABLE table_name_59 (attendance INTEGER, score VARCHAR, away VARCHAR)
SELECT record FROM table_name_51 WHERE nationality = "barbados"
What's the record of Barbados?
CREATE TABLE table_name_51 (record VARCHAR, nationality VARCHAR)
SELECT class FROM table_name_40 WHERE capacity < 3384 AND navigator = "ferguson"
What class has a capacity smaller than 3384 for Ferguson?
CREATE TABLE table_name_40 (class VARCHAR, capacity VARCHAR, navigator VARCHAR)
SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = "Mary" INTERSECT SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = "Susan"
Find the id of users who are followed by Mary and Susan.
CREATE TABLE follows (f1 VARCHAR, f2 VARCHAR); CREATE TABLE user_profiles (uid VARCHAR, name VARCHAR)
SELECT nationality FROM table_name_16 WHERE heat < 2 AND rank = 15
Which Nationality has a Heat smaller than 2, and a Rank of 15?
CREATE TABLE table_name_16 (nationality VARCHAR, heat VARCHAR, rank VARCHAR)
SELECT date FROM table_name_25 WHERE loss = "politte (0-2)"
What was the date of the game that had a loss of Politte (0-2)?
CREATE TABLE table_name_25 (date VARCHAR, loss VARCHAR)
SELECT production_code FROM table_28859177_3 WHERE original_air_date = "October 15, 2004"
What is the production code for the episode that aired on October 15, 2004?
CREATE TABLE table_28859177_3 (production_code VARCHAR, original_air_date VARCHAR)
SELECT nation FROM table_name_69 WHERE total < 63 AND silver < 2 AND bronze > 2 AND rank = "8"
Which nation has total medals under 63, less than 2 silver, more than 2 bronze, and a rank of 8?
CREATE TABLE table_name_69 (nation VARCHAR, rank VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR)
SELECT finals FROM table_name_71 WHERE prelim = "out of playoffs"
Name the finals for prelim of out of playoffs
CREATE TABLE table_name_71 (finals VARCHAR, prelim VARCHAR)
SELECT date FROM table_name_32 WHERE goals = "deacon 4/4, withers 1 dg"
Which date has a Goal of deacon 4/4, withers 1 dg?
CREATE TABLE table_name_32 (date VARCHAR, goals VARCHAR)
SELECT player FROM table_11677691_5 WHERE college = "Stanford"
Which players attend Stanford college?
CREATE TABLE table_11677691_5 (player VARCHAR, college VARCHAR)
SELECT class FROM table_name_58 WHERE wins > 0 AND year = 1992
In 1992, what class has higher wins than 0?
CREATE TABLE table_name_58 (class VARCHAR, wins VARCHAR, year VARCHAR)
SELECT DISTINCT T2.Name FROM country AS T1 JOIN city AS T2 ON T2.CountryCode = T1.Code WHERE T1.Continent = 'Europe' AND NOT T1.Name IN (SELECT T3.Name FROM country AS T3 JOIN countrylanguage AS T4 ON T3.Code = T4.CountryCode WHERE T4.IsOfficial = 'T' AND T4.Language = 'English')
Which cities are in European countries where English is not the official language?
CREATE TABLE city (Name VARCHAR, CountryCode VARCHAR); CREATE TABLE country (Name VARCHAR, Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, IsOfficial VARCHAR, Language VARCHAR); CREATE TABLE country (Code VARCHAR, Continent VARCHAR, Name VARCHAR)
SELECT MAX(interview) FROM table_name_19 WHERE state = "north carolina" AND evening_gown > 7.68
Tell me the highest interview for north carolina and evening gown more than 7.68
CREATE TABLE table_name_19 (interview INTEGER, state VARCHAR, evening_gown VARCHAR)
SELECT starring_actors FROM table_18539834_2 WHERE time_frame = "Tuesday 22:00~22:54 8 April 2008 to 17 June 2008"
Who were the starting actors in the time frame of tuesday 22:00~22:54 8 april 2008 to 17 june 2008?
CREATE TABLE table_18539834_2 (starring_actors VARCHAR, time_frame VARCHAR)
SELECT national_cup FROM table_name_91 WHERE club = "fc barcelona"
What national cup has fc barcelona?
CREATE TABLE table_name_91 (national_cup VARCHAR, club VARCHAR)
SELECT MAX(year_premiered) FROM table_24224647_2 WHERE network = "TV2" AND main_presenter = "Øyvind Mund"
What is the highest year premiered for the TV2 network when main present is øyvind mund?
CREATE TABLE table_24224647_2 (year_premiered INTEGER, network VARCHAR, main_presenter VARCHAR)
SELECT county FROM table_1304443_2 WHERE bush_percentage = "54.6%"
What's the name of the county where 54.6% voted for Bush?
CREATE TABLE table_1304443_2 (county VARCHAR, bush_percentage VARCHAR)
SELECT district FROM table_name_67 WHERE result = "retired republican hold" AND incumbent = "rufus p. spalding"
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 COUNT(wins) FROM table_name_79 WHERE tournament = "u.s. open" AND top_25 < 4
What is the number of Tournament of U.S. Open wins with a Top-25 smaller than 4?
CREATE TABLE table_name_79 (wins VARCHAR, tournament VARCHAR, top_25 VARCHAR)
SELECT lead FROM table_name_95 WHERE skip = "ted appelman"
Which Lead has a Skip of ted appelman?
CREATE TABLE table_name_95 (lead VARCHAR, skip VARCHAR)
SELECT AVG(lost) FROM table_name_47 WHERE points = 28 AND drawn < 8
Which Lost has Points of 28 and a Drawn smaller than 8?
CREATE TABLE table_name_47 (lost INTEGER, points VARCHAR, drawn VARCHAR)
SELECT score FROM table_name_12 WHERE loss = "hiller (22–15–1)"
Which score has a Loss of hiller (22–15–1)?
CREATE TABLE table_name_12 (score VARCHAR, loss VARCHAR)
SELECT MAX(rank) FROM table_name_17 WHERE nation = "china (chn)" AND bronze < 4
Which Rank has a Nation of china (chn), and a Bronze smaller than 4?
CREATE TABLE table_name_17 (rank INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT SUM(gold) FROM table_name_73 WHERE bronze = 0 AND total < 1
When the Total is less than 1, and Bronze is 0, how many Gold medals are there?
CREATE TABLE table_name_73 (gold INTEGER, bronze VARCHAR, total VARCHAR)
SELECT parts_per_example FROM table_name_75 WHERE value_of_quantity = "2×10 −6"
What is the Parts-per example of 2×10 −6?
CREATE TABLE table_name_75 (parts_per_example VARCHAR, value_of_quantity VARCHAR)
SELECT ordained_priest FROM table_1656555_1 WHERE vacated_throne = "August 18, 1885"
When was the archbishop who vacated the throne on August 18, 1885 ordained as a priest?
CREATE TABLE table_1656555_1 (ordained_priest VARCHAR, vacated_throne VARCHAR)
SELECT DISTINCT LOCATION FROM track
What are distinct locations where tracks are located?
CREATE TABLE track (LOCATION VARCHAR)
SELECT MIN(round) FROM table_name_26 WHERE player = "jim thompson"
What is recorded as the lowest Round for the Player Jim Thompson?
CREATE TABLE table_name_26 (round INTEGER, player VARCHAR)
SELECT years_as_tallest FROM table_name_83 WHERE floors = 31
What is listed under the Years as tallest, that has Floors of 31?
CREATE TABLE table_name_83 (years_as_tallest VARCHAR, floors 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 DISTINCT gtype FROM Video_games
Show all video game types.
CREATE TABLE Video_games (gtype VARCHAR)
SELECT lyrics__l____music__m_ FROM table_name_60 WHERE draw = 5
What are the Lyrics (l) / Music (m) when the draw was 5?
CREATE TABLE table_name_60 (lyrics__l____music__m_ VARCHAR, draw VARCHAR)
SELECT AVG(league) FROM table_name_22 WHERE player = "kris doolan" AND total < 5
What was the average league with Kris Doolan and a total less than 5?
CREATE TABLE table_name_22 (league INTEGER, player VARCHAR, total VARCHAR)
SELECT title FROM table_11951237_4 WHERE original_air_date = "March 19, 1998"
Which tittles have an original air date of March 19, 1998
CREATE TABLE table_11951237_4 (title VARCHAR, original_air_date VARCHAR)
SELECT material_or_non_material FROM table_name_36 WHERE positional_or_automatic = "either" AND count_rectified = "no" AND opponents = "either"
What is the designation of material or non-material for either positional or automatic with no rectified count and either opponent?
CREATE TABLE table_name_36 (material_or_non_material VARCHAR, opponents VARCHAR, positional_or_automatic VARCHAR, count_rectified VARCHAR)
SELECT current_code FROM table_name_20 WHERE type = "club trophy" AND years = "1867 only"
What is the current code for the club trophy, in 1867 only?
CREATE TABLE table_name_20 (current_code VARCHAR, type VARCHAR, years VARCHAR)
SELECT public_office FROM table_20903658_1 WHERE date_painted_created = "1954"
What was the public office of the subject whose sculpture was created in 1954?
CREATE TABLE table_20903658_1 (public_office VARCHAR, date_painted_created VARCHAR)
SELECT swimsuit FROM table_12094300_1 WHERE average = "8.791"
What is the score for swimsuit when the average is 8.791?
CREATE TABLE table_12094300_1 (swimsuit VARCHAR, average VARCHAR)
SELECT record FROM table_name_13 WHERE points < 16 AND home = "detroit"
What record has points less than 16, and detroit as the home?
CREATE TABLE table_name_13 (record VARCHAR, points VARCHAR, home VARCHAR)
SELECT league AS Cup FROM table_name_20 WHERE fa_cup = "0 13 0 (49)"
What is the value for the League Cup when the FA Cup value is 0 13 0 (49)?
CREATE TABLE table_name_20 (league VARCHAR, fa_cup VARCHAR)
SELECT apt_number, room_count FROM Apartments
Return the apartment number and the number of rooms for each apartment.
CREATE TABLE Apartments (apt_number VARCHAR, room_count VARCHAR)
SELECT COUNT(crowd) FROM table_name_15 WHERE away_team = "st kilda"
How many times is st kilda the away team?
CREATE TABLE table_name_15 (crowd VARCHAR, away_team VARCHAR)
SELECT year FROM table_name_44 WHERE deputy = "james mcclure" AND name = "robert mcphearson"
What Year was james mcclure Deputy, and the Name is robert mcphearson?
CREATE TABLE table_name_44 (year VARCHAR, deputy VARCHAR, name VARCHAR)
SELECT date FROM table_name_63 WHERE round = "2nd round 2nd leg"
What is the date of the 2nd round 2nd leg?
CREATE TABLE table_name_63 (date VARCHAR, round VARCHAR)
SELECT 2009 FROM table_name_45 WHERE total = 1 AND 2004 = "7th"
Which 2009 year has a total of 1, and 2004 year of 7th?
CREATE TABLE table_name_45 (total VARCHAR)
SELECT MIN(heat) FROM table_name_57 WHERE mark = "46.47"
With a Mark of 46.47, What is the lowest Heat?
CREATE TABLE table_name_57 (heat INTEGER, mark VARCHAR)
SELECT driver FROM table_name_90 WHERE engine = "chevrolet" AND date = "october 3"
Who is the Driver, when the Engine is Chevrolet, and when the Date is October 3?
CREATE TABLE table_name_90 (driver VARCHAR, engine VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_17323042_11 WHERE high_assists = "Andre Miller (7)"
What was the location and attendance of the game when High Assists were Andre Miller (7)?
CREATE TABLE table_17323042_11 (location_attendance VARCHAR, high_assists VARCHAR)
SELECT date FROM table_name_28 WHERE score = "29-7"
What date was the score 29-7?
CREATE TABLE table_name_28 (date VARCHAR, score VARCHAR)
SELECT "normalised" AS _transliteration FROM table_name_9 WHERE roman_equivalent = "i"
what is the "normalized" transliteration for Roman i
CREATE TABLE table_name_9 (roman_equivalent VARCHAR)
SELECT object_type FROM table_name_81 WHERE ngc_number > 6995 AND right_ascension___j2000__ = "21h01m37.7s"
What Object Type has a 21h01m37.7s Right Ascension (J2000) and 6995 or greater NGC?
CREATE TABLE table_name_81 (object_type VARCHAR, ngc_number VARCHAR, right_ascension___j2000__ VARCHAR)
SELECT Lname FROM FACULTY WHERE Building = "Barton" ORDER BY Lname
Find the last names of faculties in building Barton in alphabetic order.
CREATE TABLE FACULTY (Lname VARCHAR, Building VARCHAR)
SELECT visitor FROM table_name_46 WHERE date = "2006-11-04"
What is the name of the visitor on 2006-11-04?
CREATE TABLE table_name_46 (visitor VARCHAR, date VARCHAR)
SELECT league FROM table_16636344_1 WHERE year = "2010"
What was the team's league in 2010?
CREATE TABLE table_16636344_1 (league VARCHAR, year VARCHAR)
SELECT name FROM table_name_55 WHERE year > 2006 AND floors > 101
What is the name of the building housing more than 101 floors, that was built after 2006?
CREATE TABLE table_name_55 (name VARCHAR, year VARCHAR, floors VARCHAR)
SELECT date FROM table_23285761_8 WHERE score = "W 109–95 (OT)"
Name the date for score w 109–95 (ot)
CREATE TABLE table_23285761_8 (date VARCHAR, score VARCHAR)
SELECT type FROM table_name_8 WHERE transfer_window = "winter" AND nat = "ita"
What type of transfer window is winter in Ita?
CREATE TABLE table_name_8 (type VARCHAR, transfer_window VARCHAR, nat VARCHAR)
SELECT MIN(silver) FROM table_name_51 WHERE bronze < 1
What is the smallest number of silver medals for a nation with fewer than 1 bronze?
CREATE TABLE table_name_51 (silver INTEGER, bronze INTEGER)
SELECT result FROM table_name_14 WHERE competition = "2000 afc asian cup qualification"
Name the result for 2000 afc asian cup qualification
CREATE TABLE table_name_14 (result VARCHAR, competition VARCHAR)
SELECT AVG(round) FROM table_name_36 WHERE player = "john markham"
What was the average round for john markham draft pick?
CREATE TABLE table_name_36 (round INTEGER, player VARCHAR)
SELECT MIN(population__2011_census_) FROM table_2801442_1 WHERE code = "GP"
How many people lived in the district with a code GP in 2011?
CREATE TABLE table_2801442_1 (population__2011_census_ INTEGER, code VARCHAR)
SELECT T2.feature_type_name FROM Other_Available_Features AS T1 JOIN Ref_Feature_Types AS T2 ON T1.feature_type_code = T2.feature_type_code WHERE T1.feature_name = "AirCon"
What is the feature type name of feature AirCon?
CREATE TABLE Other_Available_Features (feature_type_code VARCHAR, feature_name VARCHAR); CREATE TABLE Ref_Feature_Types (feature_type_name VARCHAR, feature_type_code VARCHAR)
SELECT cfl_team FROM table_name_32 WHERE college = "manitoba"
Which cfl team was associated with the college of manitoba?
CREATE TABLE table_name_32 (cfl_team VARCHAR, college VARCHAR)
SELECT director FROM table_name_13 WHERE role = "fred ayres"
Who was the director where the role was Fred Ayres?
CREATE TABLE table_name_13 (director VARCHAR, role VARCHAR)
SELECT copa_libertadores_1996 FROM table_name_10 WHERE supercopa_1995 = "round 1" AND team = "argentinos juniors"
which Copa Libertadores 1996 has round 1 Supercopa 1995 and argentinos juniors team ?
CREATE TABLE table_name_10 (copa_libertadores_1996 VARCHAR, supercopa_1995 VARCHAR, team VARCHAR)
SELECT SUM(attendance) FROM table_name_71 WHERE visitor = "nuggets" AND leading_scorer = "j.r. smith (28)"
How many people were in attendance when the visiting team was the Nuggets and the leading scorer was J.R. Smith (28)?
CREATE TABLE table_name_71 (attendance INTEGER, visitor VARCHAR, leading_scorer VARCHAR)
SELECT name, built_year FROM mill WHERE TYPE = 'Grondzeiler'
What are the names and year of construction for the mills of 'Grondzeiler' type?
CREATE TABLE mill (name VARCHAR, built_year VARCHAR, TYPE VARCHAR)
SELECT college FROM table_name_42 WHERE round = 11 AND position = "wr"
Which College has a Round of 11, and a Position of wr?
CREATE TABLE table_name_42 (college VARCHAR, round VARCHAR, position VARCHAR)
SELECT city, _region FROM table_name_35 WHERE arena = "dalhús"
What is the city and region of the team in the dalhús arena?
CREATE TABLE table_name_35 (city VARCHAR, _region VARCHAR, arena VARCHAR)
SELECT AVG(total_matches) FROM table_name_73 WHERE points__percentage > 33.3 AND year = "2007"
In 2007, what is the average total matches with points % larger than 33.3?
CREATE TABLE table_name_73 (total_matches INTEGER, points__percentage VARCHAR, year VARCHAR)
SELECT Music AS director FROM table_name_7 WHERE year = 1971 AND movie__in_kannada__ = "kalyani"
Who was the music director in 1971 for the movie Kalyani?
CREATE TABLE table_name_7 (Music VARCHAR, year VARCHAR, movie__in_kannada__ VARCHAR)
SELECT language_s_ FROM table_18994724_1 WHERE film_title_used_in_nomination = "Everlasting Moments"
What language was spoken in Everlasting Moments?
CREATE TABLE table_18994724_1 (language_s_ VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT tie_no FROM table_name_21 WHERE away_team = "leicester city"
What was the tie against the away team, Leicester City?
CREATE TABLE table_name_21 (tie_no VARCHAR, away_team VARCHAR)
SELECT MAX(brisbane) FROM table_24291077_8 WHERE melbourne = 276000
What was the rating in Brisbane the week it was 276000 in Melbourne?
CREATE TABLE table_24291077_8 (brisbane INTEGER, melbourne VARCHAR)
SELECT season FROM table_name_7 WHERE name = "jovy sese"
Which season did Jovy Sese play?
CREATE TABLE table_name_7 (season VARCHAR, name VARCHAR)
SELECT time FROM table_name_29 WHERE athlete = "emma twigg"
What is the race time for emma twigg?
CREATE TABLE table_name_29 (time VARCHAR, athlete VARCHAR)
SELECT AVG(poles) FROM table_name_65 WHERE wins = 0 AND position = "nc" AND season < 2004
What is the average Poles, when Wins is 0, when Position is "nc", and when Season is before 2004?
CREATE TABLE table_name_65 (poles INTEGER, season VARCHAR, wins VARCHAR, position VARCHAR)
SELECT score FROM table_name_60 WHERE date = "may 4"
Which Score has a Date of may 4?
CREATE TABLE table_name_60 (score VARCHAR, date VARCHAR)
SELECT conference AS Tournament FROM table_24160890_3 WHERE tournament_venue__city_ = "Madison Square Garden ( New York City, New York )"
When madison square garden ( new york city, new york ) is the tournament venue (city) what is the conference tournament?
CREATE TABLE table_24160890_3 (conference VARCHAR, tournament_venue__city_ VARCHAR)
SELECT AVG(total) FROM table_name_83 WHERE gold < 3 AND silver < 0
What is the average total for countries with under 3 golds and 0 silvers?
CREATE TABLE table_name_83 (total INTEGER, gold VARCHAR, silver VARCHAR)
SELECT MAX(losses) FROM table_14871601_1 WHERE team = "Tacuary"
What is the largest loss for the Tacuary team?
CREATE TABLE table_14871601_1 (losses INTEGER, team VARCHAR)
SELECT name FROM table_name_84 WHERE date = "17 march 1943" AND sunk_by = "u-305"
What is the name of the ship sunk by U-305 on 17 March 1943?
CREATE TABLE table_name_84 (name VARCHAR, date VARCHAR, sunk_by VARCHAR)
SELECT product_name FROM table_name_63 WHERE company_name = "htc corporation"
What is the Product Name, when the Company Name is HTC Corporation?
CREATE TABLE table_name_63 (product_name VARCHAR, company_name VARCHAR)
SELECT year FROM table_29598261_1 WHERE name = "Chris McNamara"
what year is chris mcnamara?
CREATE TABLE table_29598261_1 (year VARCHAR, name VARCHAR)