question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
List the name and number of followers for each user, and sort the results by the number of followers in descending order.
CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR)
SELECT name, followers FROM user_profiles ORDER BY followers DESC
What is the English title of the episode with 1.92 million Hong Kong viewers?
CREATE TABLE table_24856090_1 (english_title VARCHAR, hk_viewers VARCHAR)
SELECT english_title FROM table_24856090_1 WHERE hk_viewers = "1.92 million"
What had the high points when OT had high rebounds?
CREATE TABLE table_name_51 (high_points VARCHAR, high_rebounds VARCHAR)
SELECT high_points FROM table_name_51 WHERE high_rebounds = "ot"
What 2011 GDP (PPP) billions of USD does Israel have?
CREATE TABLE table_2248784_4 (country VARCHAR)
SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_4 WHERE country = "Israel"
What is Venue, when Year is after 2003, and when Tournament is "Hypo-Meeting"?
CREATE TABLE table_name_89 (venue VARCHAR, year VARCHAR, tournament VARCHAR)
SELECT venue FROM table_name_89 WHERE year > 2003 AND tournament = "hypo-meeting"
Who won Miss Universe Philippines when Regina Hahn was second runner-up?
CREATE TABLE table_name_86 (miss_universe_philippines VARCHAR, second_runner_up VARCHAR)
SELECT miss_universe_philippines FROM table_name_86 WHERE second_runner_up = "regina hahn"
Who drove the maserati under 18 laps with an oil leak that had a grid of under 14?
CREATE TABLE table_name_34 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR, laps VARCHAR)
SELECT driver FROM table_name_34 WHERE constructor = "maserati" AND laps < 18 AND grid < 14 AND time_retired = "oil leak"
Find how many school locations have the word 'NY'.
CREATE TABLE university (LOCATION VARCHAR)
SELECT COUNT(*) FROM university WHERE LOCATION LIKE "%NY%"
Who played hte home team when the score was 2:1?
CREATE TABLE table_name_45 (home VARCHAR, score VARCHAR)
SELECT home FROM table_name_45 WHERE score = "2:1"
Which location had a year over 2006?
CREATE TABLE table_name_68 (location VARCHAR, year INTEGER)
SELECT location FROM table_name_68 WHERE year > 2006
what is the college/junior/club team (league) when the round is more than 2 and the player is bert robertsson (d)?
CREATE TABLE table_name_96 (college_junior_club_team__league_ VARCHAR, round VARCHAR, player VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_96 WHERE round > 2 AND player = "bert robertsson (d)"
What is the sum of a grid for driver Patrick Carpentier and less than 103 laps?
CREATE TABLE table_name_58 (grid INTEGER, driver VARCHAR, laps VARCHAR)
SELECT SUM(grid) FROM table_name_58 WHERE driver = "patrick carpentier" AND laps < 103
How many points for the skater from club btsc?
CREATE TABLE table_name_43 (points VARCHAR, club VARCHAR)
SELECT COUNT(points) FROM table_name_43 WHERE club = "btsc"
What is the average round of the player from the college of baylor with a pick less than 28?
CREATE TABLE table_name_18 (round INTEGER, college VARCHAR, pick VARCHAR)
SELECT AVG(round) FROM table_name_18 WHERE college = "baylor" AND pick < 28
What is the Mascot of Brook?
CREATE TABLE table_name_25 (mascot VARCHAR, location VARCHAR)
SELECT mascot FROM table_name_25 WHERE location = "brook"
What is the average attendance when the rank is 5?
CREATE TABLE table_name_90 (avgatt VARCHAR, rank VARCHAR)
SELECT avgatt FROM table_name_90 WHERE rank = "5"
What is the lowest Top-5, when Top-25 is less than 4, and when Cuts made is less than 7?
CREATE TABLE table_name_33 (top_5 INTEGER, top_25 VARCHAR, cuts_made VARCHAR)
SELECT MIN(top_5) FROM table_name_33 WHERE top_25 < 4 AND cuts_made < 7
Which team has a Reg GP of 0, a pick number under 136 with a player named Regan Darby?
CREATE TABLE table_name_85 (team__league_ VARCHAR, player VARCHAR, reg_gp VARCHAR, pick__number VARCHAR)
SELECT team__league_ FROM table_name_85 WHERE reg_gp = 0 AND pick__number < 136 AND player = "regan darby"
When was the record of 0-1 set?
CREATE TABLE table_13258806_2 (date VARCHAR, record VARCHAR)
SELECT date FROM table_13258806_2 WHERE record = "0-1"
What was the minimum vertical measurement if the aspect ratio is 16:9 and scanning is interlaced?
CREATE TABLE table_272313_1 (vertical INTEGER, aspect_ratio VARCHAR, scanning VARCHAR)
SELECT MIN(vertical) FROM table_272313_1 WHERE aspect_ratio = "16:9" AND scanning = "interlaced"
what is the earliest winter olympics when the fis nordic world ski championships is 1976?
CREATE TABLE table_name_39 (winter_olympics INTEGER, fis_nordic_world_ski_championships VARCHAR)
SELECT MIN(winter_olympics) FROM table_name_39 WHERE fis_nordic_world_ski_championships = "1976"
What was the date of the Collingwood away game?
CREATE TABLE table_name_38 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_38 WHERE away_team = "collingwood"
What is 1st Leg, when Team 1 is "Makedonija"?
CREATE TABLE table_name_52 (team_1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_52 WHERE team_1 = "makedonija"
How many time does the platelet count occur when prothrombin time and bleeding time are prolonged?
CREATE TABLE table_221653_1 (platelet_count VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)
SELECT COUNT(platelet_count) FROM table_221653_1 WHERE prothrombin_time = "Prolonged" AND bleeding_time = "Prolonged"
When Keey has 58.1% what % does Bush have?
CREATE TABLE table_name_39 (bush_percentage VARCHAR, kerry_percentage VARCHAR)
SELECT bush_percentage FROM table_name_39 WHERE kerry_percentage = "58.1%"
Which GDP per capita (US$) (2004) has a Literacy (2003) of 90%, and an Area (km²) of 1247689.5?
CREATE TABLE table_name_53 (gdp_per_capita__us INTEGER, literacy__2003_ VARCHAR, area__km²_ VARCHAR)
SELECT AVG(gdp_per_capita__us) AS $___2004_ FROM table_name_53 WHERE literacy__2003_ = "90%" AND area__km²_ = 1247689.5
what player went to ul-monroe
CREATE TABLE table_name_7 (player VARCHAR, school VARCHAR)
SELECT player FROM table_name_7 WHERE school = "ul-monroe"
who is the winner when the trofeo fast team is carrera jeans-vagabond in stage 5?
CREATE TABLE table_name_55 (winner VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR)
SELECT winner FROM table_name_55 WHERE trofeo_fast_team = "carrera jeans-vagabond" AND stage = "5"
Show the names of companies in the banking or retailing industry?
CREATE TABLE company (Name VARCHAR, Industry VARCHAR)
SELECT Name FROM company WHERE Industry = "Banking" OR Industry = "Retailing"
Name the score for madison square garden 18,828
CREATE TABLE table_22893781_6 (score VARCHAR, location_attendance VARCHAR)
SELECT score FROM table_22893781_6 WHERE location_attendance = "Madison Square Garden 18,828"
What were grid 7's laps?
CREATE TABLE table_name_72 (laps INTEGER, grid VARCHAR)
SELECT MIN(laps) FROM table_name_72 WHERE grid = 7
What cargo was contained in a ship size of aframax?
CREATE TABLE table_name_40 (cargo VARCHAR, ship_size VARCHAR)
SELECT cargo FROM table_name_40 WHERE ship_size = "aframax"
What is the date of the race at Truro?
CREATE TABLE table_name_32 (date VARCHAR, track VARCHAR)
SELECT date FROM table_name_32 WHERE track = "truro"
For grants with both documents described as 'Regular' and documents described as 'Initial Application', list its start date.
CREATE TABLE Grants (grant_start_date VARCHAR, grant_id VARCHAR); CREATE TABLE Document_Types (document_type_code VARCHAR, document_description VARCHAR); CREATE TABLE Documents (grant_id VARCHAR, document_type_code VARCHAR)
SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Regular' INTERSECT SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id JOI...
what is the maximum ties played where player is josip palada category:articles with hcards
CREATE TABLE table_10294071_1 (ties_played INTEGER, player VARCHAR)
SELECT MAX(ties_played) FROM table_10294071_1 WHERE player = "Josip Palada Category:Articles with hCards"
What's the number of the horse whose trainer is Kim Bailey?
CREATE TABLE table_20095300_1 (number INTEGER, trainer VARCHAR)
SELECT MAX(number) FROM table_20095300_1 WHERE trainer = "Kim Bailey"
What character did actor Damien Richardson play?
CREATE TABLE table_name_50 (character VARCHAR, actor_actress VARCHAR)
SELECT character FROM table_name_50 WHERE actor_actress = "damien richardson"
Who is the candidate that was first elected in 1914?
CREATE TABLE table_1341973_11 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341973_11 WHERE first_elected = 1914
Who is the manager of FK Andijan?
CREATE TABLE table_25527255_2 (manager VARCHAR, team VARCHAR)
SELECT manager FROM table_25527255_2 WHERE team = "FK Andijan"
What is the fewest number of silver medals won by Canada with fewer than 3 total medals?
CREATE TABLE table_name_87 (silver INTEGER, nation VARCHAR, total VARCHAR)
SELECT MIN(silver) FROM table_name_87 WHERE nation = "canada" AND total < 3
what is the venue when the competition is friendly on 26 may 1999?
CREATE TABLE table_name_37 (venue VARCHAR, competition VARCHAR, date VARCHAR)
SELECT venue FROM table_name_37 WHERE competition = "friendly" AND date = "26 may 1999"
Who was number 9 that had a number 7 of Joana and a Final of Pedro?
CREATE TABLE table_name_96 (no9 VARCHAR, no7 VARCHAR, final VARCHAR)
SELECT no9 FROM table_name_96 WHERE no7 = "joana" AND final = "pedro"
Which Week has a Result of w 20-13?
CREATE TABLE table_name_20 (week INTEGER, result VARCHAR)
SELECT AVG(week) FROM table_name_20 WHERE result = "w 20-13"
Who is the president from the Union for a Popular Movement party that represents the Hautes-Alpes department?
CREATE TABLE table_name_36 (président VARCHAR, party VARCHAR, départment__or_collectivity_ VARCHAR)
SELECT président FROM table_name_36 WHERE party = "union for a popular movement" AND départment__or_collectivity_ = "hautes-alpes"
What is Game, when Road Team is "Syracuse", and when Result is "109-82"?
CREATE TABLE table_name_77 (game VARCHAR, road_team VARCHAR, result VARCHAR)
SELECT game FROM table_name_77 WHERE road_team = "syracuse" AND result = "109-82"
who is the opponent when the surface is clay, the outcome is winner and the championship is estoril on 15 april 1996?
CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR, championship VARCHAR, surface VARCHAR, outcome VARCHAR)
SELECT opponent FROM table_name_93 WHERE surface = "clay" AND outcome = "winner" AND championship = "estoril" AND date = "15 april 1996"
Which Record has a Home of Montreal Canadiens and a Date of April 22?
CREATE TABLE table_name_49 (record VARCHAR, home VARCHAR, date VARCHAR)
SELECT record FROM table_name_49 WHERE home = "montreal canadiens" AND date = "april 22"
Which Byes have an Against larger than 1018, and a Wimmera FL of horsham diggers?
CREATE TABLE table_name_56 (byes INTEGER, against VARCHAR, wimmera_fl VARCHAR)
SELECT MIN(byes) FROM table_name_56 WHERE against > 1018 AND wimmera_fl = "horsham diggers"
Attendance of 36,796 had what score?
CREATE TABLE table_name_46 (score VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_46 WHERE attendance = "36,796"
What TV network is the series aistrų žemė aired on?
CREATE TABLE table_name_21 (tv_network_s_ VARCHAR, alternate_title_translation VARCHAR)
SELECT tv_network_s_ FROM table_name_21 WHERE alternate_title_translation = "aistrų žemė"
What event (Extra) in 2002 did the competitor compete in and place 8th?
CREATE TABLE table_name_80 (extra VARCHAR, year VARCHAR, result VARCHAR)
SELECT extra FROM table_name_80 WHERE year = 2002 AND result = "8th"
What circuit is the Sprint Cup series championship?
CREATE TABLE table_name_29 (circuit VARCHAR, championship VARCHAR)
SELECT circuit FROM table_name_29 WHERE championship = "sprint cup series"
Which Artist has the Label of Columbia and the Standard number of COCC-72073?
CREATE TABLE table_name_86 (artist VARCHAR, label VARCHAR, standard_number VARCHAR)
SELECT artist FROM table_name_86 WHERE label = "columbia" AND standard_number = "cocc-72073"
What is Date, when Outcome is "Runner Up", and when Opponent is "Lu Jiaxiang"?
CREATE TABLE table_name_91 (date VARCHAR, outcome VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_91 WHERE outcome = "runner up" AND opponent = "lu jiaxiang"
What's the total number of rounds with a win result at the sf 5: stadium event?
CREATE TABLE table_name_65 (round VARCHAR, res VARCHAR, event VARCHAR)
SELECT COUNT(round) FROM table_name_65 WHERE res = "win" AND event = "sf 5: stadium"
Round of 1r, and an away result of 7–1 is what season?
CREATE TABLE table_name_65 (season VARCHAR, round VARCHAR, away_result VARCHAR)
SELECT season FROM table_name_65 WHERE round = "1r" AND away_result = "7–1"
Which circuit did Alberto Ascari set the fastest lap time with a Ferrari?
CREATE TABLE table_name_86 (circuit VARCHAR, constructor VARCHAR, fastest_lap VARCHAR)
SELECT circuit FROM table_name_86 WHERE constructor = "ferrari" AND fastest_lap = "alberto ascari"
On what date was the time of 16:24.12 achieved?
CREATE TABLE table_name_36 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_36 WHERE time = "16:24.12"
What is Votes (%), when Episode is "1x03"?
CREATE TABLE table_name_14 (votes___percentage_ VARCHAR, episode VARCHAR)
SELECT votes___percentage_ FROM table_name_14 WHERE episode = "1x03"
How many bonus points are there when points for is 385?
CREATE TABLE table_17510803_2 (bonus_points VARCHAR, points_for VARCHAR)
SELECT bonus_points FROM table_17510803_2 WHERE points_for = "385"
Who was in the South in the 2004-05 season?
CREATE TABLE table_name_92 (south VARCHAR, season VARCHAR)
SELECT south FROM table_name_92 WHERE season = "2004-05"
What was the score of the game with a loss of Mercedes (0-1)?
CREATE TABLE table_name_47 (score VARCHAR, loss VARCHAR)
SELECT score FROM table_name_47 WHERE loss = "mercedes (0-1)"
What's the order number of the song originally performed by Rickie Lee Jones?
CREATE TABLE table_12310814_1 (order__number VARCHAR, original_artist VARCHAR)
SELECT order__number FROM table_12310814_1 WHERE original_artist = "Rickie Lee Jones"
What Ben-Tahir has a 6 Liscumb and 3 Libweshya?
CREATE TABLE table_name_82 (ben_tahir VARCHAR, liscumb VARCHAR, libweshya VARCHAR)
SELECT ben_tahir FROM table_name_82 WHERE liscumb = "6" AND libweshya = "3"
Find the names of schools that have more than one donator with donation amount above 8.5.
CREATE TABLE school (School_name VARCHAR, school_id VARCHAR); CREATE TABLE endowment (school_id VARCHAR, amount INTEGER)
SELECT T2.School_name FROM endowment AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T1.amount > 8.5 GROUP BY T1.school_id HAVING COUNT(*) > 1
How many Games have a Drawn larger than 0, and a Lost of 1?
CREATE TABLE table_name_94 (games VARCHAR, drawn VARCHAR, lost VARCHAR)
SELECT COUNT(games) FROM table_name_94 WHERE drawn > 0 AND lost = 1
In what Tournament was the Score of 3–6, 6–3, 7–6 in a match played on a hard Surface?
CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_78 WHERE surface = "hard" AND score = "3–6, 6–3, 7–6"
Which Wins have a Year of 1963, and a Class of 50cc?
CREATE TABLE table_name_54 (wins INTEGER, year VARCHAR, class VARCHAR)
SELECT AVG(wins) FROM table_name_54 WHERE year = 1963 AND class = "50cc"
Who had the most points and how many did they have on April 22?
CREATE TABLE table_27700530_15 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_27700530_15 WHERE date = "April 22"
What is the highest pick of the player from texas a&i with an overall less than 28?
CREATE TABLE table_name_13 (pick INTEGER, college VARCHAR, overall VARCHAR)
SELECT MAX(pick) FROM table_name_13 WHERE college = "texas a&i" AND overall < 28
How many strokes off par was the winner in 1978?
CREATE TABLE table_name_90 (to_par VARCHAR, year_s__won VARCHAR)
SELECT to_par FROM table_name_90 WHERE year_s__won = "1978"
What is the Wins of the Top-25 of 1 and 7 Events?
CREATE TABLE table_name_66 (wins VARCHAR, top_25 VARCHAR, events VARCHAR)
SELECT wins FROM table_name_66 WHERE top_25 = 1 AND events = 7
What is the max fps of a camera with mpix larger than 8.4 and frame size of 4k 16:9?
CREATE TABLE table_name_5 (max_fps VARCHAR, mpix VARCHAR, frame_size VARCHAR)
SELECT COUNT(max_fps) FROM table_name_5 WHERE mpix > 8.4 AND frame_size = "4k 16:9"
What is the Set 2 with a Date that is jun 29?
CREATE TABLE table_name_98 (set_2 VARCHAR, date VARCHAR)
SELECT set_2 FROM table_name_98 WHERE date = "jun 29"
What was the score on August 8?
CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_82 WHERE date = "august 8"
What is the name of the owner of rock 97.7?
CREATE TABLE table_name_38 (owner VARCHAR, branding VARCHAR)
SELECT owner FROM table_name_38 WHERE branding = "rock 97.7"
What record has loss as the res., 1 for the round, and akira maeda as the opponent?
CREATE TABLE table_name_9 (record VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR)
SELECT record FROM table_name_9 WHERE res = "loss" AND round = "1" AND opponent = "akira maeda"
What are the additional major sponsors which correspond to the additional color black and a year 1984?
CREATE TABLE table_name_58 (additional_major_sponsor_s_ VARCHAR, additional_colour_s_ VARCHAR, year VARCHAR)
SELECT additional_major_sponsor_s_ FROM table_name_58 WHERE additional_colour_s_ = "black" AND year = 1984
What was the result on October 1, 1989?
CREATE TABLE table_name_15 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_15 WHERE date = "october 1, 1989"
What was the operator of the ensemble from Yorkshire?
CREATE TABLE table_name_89 (operator VARCHAR, region VARCHAR)
SELECT operator FROM table_name_89 WHERE region = "yorkshire"
What's the white of E93 King's Indian Defence when Kasparov was black, moves were greater than 19, and happened before 2000?
CREATE TABLE table_name_80 (white VARCHAR, opening VARCHAR, year VARCHAR, moves VARCHAR, black VARCHAR)
SELECT white FROM table_name_80 WHERE moves > 19 AND black = "kasparov" AND year < 2000 AND opening = "e93 king's indian defence"
For the team with 3:42.162 on day 2, what was the behind?
CREATE TABLE table_name_72 (behind VARCHAR, day_2 VARCHAR)
SELECT behind FROM table_name_72 WHERE day_2 = "3:42.162"
What is the average goals against when there are more than 42 played?
CREATE TABLE table_name_55 (goals_against INTEGER, played INTEGER)
SELECT AVG(goals_against) FROM table_name_55 WHERE played > 42
How many finalists were there when the years won was 2008 and the won % was greater than 33?
CREATE TABLE table_name_47 (finalists INTEGER, years_won VARCHAR, _percentage_won VARCHAR)
SELECT SUM(finalists) FROM table_name_47 WHERE years_won = "2008" AND _percentage_won > 33
what is the method for round 1 and the opponent is bobby mcmaster?
CREATE TABLE table_name_97 (method VARCHAR, round VARCHAR, opponent VARCHAR)
SELECT method FROM table_name_97 WHERE round = 1 AND opponent = "bobby mcmaster"
What is the total number of silver medals of the nation with more than 16 total medals?
CREATE TABLE table_name_40 (silver VARCHAR, total INTEGER)
SELECT COUNT(silver) FROM table_name_40 WHERE total > 16
What is the highest production number released on 1955-04-02 with i. freleng as the director?
CREATE TABLE table_name_66 (production_number INTEGER, director VARCHAR, release_date VARCHAR)
SELECT MAX(production_number) FROM table_name_66 WHERE director = "i. freleng" AND release_date = "1955-04-02"
Name the population for 2002 being ada
CREATE TABLE table_2562572_5 (population__2002_ INTEGER, urban_settlement VARCHAR)
SELECT MIN(population__2002_) FROM table_2562572_5 WHERE urban_settlement = "Ada"
Who was the opponent on November 11, 1951?
CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_18 WHERE date = "november 11, 1951"
How many total gold medals did India receive?
CREATE TABLE table_name_10 (gold VARCHAR, nation VARCHAR)
SELECT gold FROM table_name_10 WHERE nation = "india"
What was the results on September 24, 1995?
CREATE TABLE table_name_11 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_11 WHERE date = "september 24, 1995"
Name the minimum total for ireland
CREATE TABLE table_1456056_1 (total INTEGER, country VARCHAR)
SELECT MIN(total) FROM table_1456056_1 WHERE country = "Ireland"
Please give me the title of Season 2, episode 1.
CREATE TABLE table_12451376_2 (title VARCHAR, season_2_ep__number VARCHAR)
SELECT title FROM table_12451376_2 WHERE season_2_ep__number = 1
what is the margin of victory for the waste management phoenix open tournament?
CREATE TABLE table_name_69 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_69 WHERE tournament = "waste management phoenix open"
How many positions have points against less than 28, americano-sp as the team, with a played greater than 8?
CREATE TABLE table_name_7 (position VARCHAR, played VARCHAR, against VARCHAR, team VARCHAR)
SELECT COUNT(position) FROM table_name_7 WHERE against < 28 AND team = "americano-sp" AND played > 8
what is the total series percent that has total attempted less than 49, and a percent made of 0.777
CREATE TABLE table_name_63 (series_percent VARCHAR, total_attempted VARCHAR, percent_made VARCHAR)
SELECT COUNT(series_percent) FROM table_name_63 WHERE total_attempted < 49 AND percent_made = 0.777
what is the tournament on august 17, 2008?
CREATE TABLE table_name_14 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_14 WHERE date = "august 17, 2008"
Name the laps for rank of 14 and start of 16
CREATE TABLE table_name_67 (laps VARCHAR, rank VARCHAR, start VARCHAR)
SELECT laps FROM table_name_67 WHERE rank = "14" AND start = "16"
What Country is Player Sam Snead with a To par of less than 5 from?
CREATE TABLE table_name_26 (country VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT country FROM table_name_26 WHERE to_par < 5 AND player = "sam snead"
Who is the constructor for the car driven by George Heath?
CREATE TABLE table_18893428_1 (constructor VARCHAR, driver VARCHAR)
SELECT constructor FROM table_18893428_1 WHERE driver = "George Heath"