question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Incumbent Tim Holden belonged to what party?
CREATE TABLE table_1341453_40 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341453_40 WHERE incumbent = "Tim Holden"
What is the try bonus for Ruthin RFC?
CREATE TABLE table_14058433_3 (try_bonus VARCHAR, club VARCHAR)
SELECT try_bonus FROM table_14058433_3 WHERE club = "Ruthin RFC"
What station on the network is tv3?
CREATE TABLE table_160728_4 (network VARCHAR, station VARCHAR)
SELECT network FROM table_160728_4 WHERE station = "TV3"
Which Runner(s)-up has a Winning score of –9 (71-68-72-68=279)?
CREATE TABLE table_name_71 (runner_s__up VARCHAR, winning_score VARCHAR)
SELECT runner_s__up FROM table_name_71 WHERE winning_score = –9(71 - 68 - 72 - 68 = 279)
What is the D43 associated with a D41 of r 16?
CREATE TABLE table_name_92 (d_43 VARCHAR, d_41 VARCHAR)
SELECT d_43 FROM table_name_92 WHERE d_41 = "r 16"
What U15 3rd Quad has a U15 2nd Quad of ACGS?
CREATE TABLE table_name_89 (u15_3rd_quad VARCHAR, u15_2nd_quad VARCHAR)
SELECT u15_3rd_quad FROM table_name_89 WHERE u15_2nd_quad = "acgs"
Which rider was on the 600cc Yamaha team?
CREATE TABLE table_name_44 (rider VARCHAR, team VARCHAR)
SELECT rider FROM table_name_44 WHERE team = "600cc yamaha"
What is the lowest Game, when December is greater than 13, and when Score is "5 - 0"?
CREATE TABLE table_name_22 (game INTEGER, december VARCHAR, score VARCHAR)
SELECT MIN(game) FROM table_name_22 WHERE december > 13 AND score = "5 - 0"
What song was chosen for the episode with the top 8?
CREATE TABLE table_name_72 (song_choice VARCHAR, episode VARCHAR)
SELECT song_choice FROM table_name_72 WHERE episode = "top 8"
Which December is the lowest one that has Points of 52?
CREATE TABLE table_name_96 (december INTEGER, points VARCHAR)
SELECT MIN(december) FROM table_name_96 WHERE points = 52
Tell me the affiliation for mls team of metrostars and pick number of 26
CREATE TABLE table_name_28 (affiliation VARCHAR, mls_team VARCHAR, pick__number VARCHAR)
SELECT affiliation FROM table_name_28 WHERE mls_team = "metrostars" AND pick__number = 26
List the main industry with highest total market value and its number of companies.
CREATE TABLE company (main_industry VARCHAR, market_value INTEGER)
SELECT main_industry, COUNT(*) FROM company GROUP BY main_industry ORDER BY SUM(market_value) DESC LIMIT 1
Who's the Fifth District with a Second District of paul leidig?
CREATE TABLE table_name_23 (fifth_district VARCHAR, second_district VARCHAR)
SELECT fifth_district FROM table_name_23 WHERE second_district = "paul leidig"
When troy is the regular season winner what is the conference tournament?
CREATE TABLE table_24160890_3 (conference VARCHAR, regular_season_winner VARCHAR)
SELECT conference AS Tournament FROM table_24160890_3 WHERE regular_season_winner = "Troy"
What open cup did they play in when they finished 2nd, northeast in the reg. season?
CREATE TABLE table_name_21 (open_cup VARCHAR, reg_season VARCHAR)
SELECT open_cup FROM table_name_21 WHERE reg_season = "2nd, northeast"
How many clubs does "Linda Smith" belong to?
CREATE TABLE student (stuid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubid VARCHAR)
SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = "Linda" AND t3.lname = "Smith"
What is the acceleration 0-100km/h that was produced in 2002-2006?
CREATE TABLE table_1857216_1 (acceleration_0_100km_h__0_62mph_ VARCHAR, production VARCHAR)
SELECT acceleration_0_100km_h__0_62mph_ FROM table_1857216_1 WHERE production = "2002-2006"
How many Games has a Team of chicago?
CREATE TABLE table_name_55 (game VARCHAR, team VARCHAR)
SELECT COUNT(game) FROM table_name_55 WHERE team = "chicago"
What is the average number of starts when the money list rank is 108 and the rank in the top 25 is greater than 4?
CREATE TABLE table_name_58 (starts INTEGER, money_list_rank VARCHAR, top_25 VARCHAR)
SELECT AVG(starts) FROM table_name_58 WHERE money_list_rank = "108" AND top_25 > 4
What was Kerry's lowest number of votes where Other received 0.8% and Kerry 70.4%?
CREATE TABLE table_name_65 (kerry__number INTEGER, others__percentage VARCHAR, kerry__percentage VARCHAR)
SELECT MIN(kerry__number) FROM table_name_65 WHERE others__percentage = "0.8%" AND kerry__percentage = "70.4%"
What is the men's nickname at the school that has the lady wildcats women's nickname?
CREATE TABLE table_10577579_3 (men’s_nickname VARCHAR, women’s_nickname VARCHAR)
SELECT men’s_nickname FROM table_10577579_3 WHERE women’s_nickname = "Lady Wildcats"
Who was the man of the match when they lost 2-4?
CREATE TABLE table_17120964_7 (man_of_the_match VARCHAR, result VARCHAR)
SELECT man_of_the_match FROM table_17120964_7 WHERE result = "Lost 2-4"
Who held the same position in 2014 that Danielle Button held in 2013?
CREATE TABLE table_name_49 (Id VARCHAR)
SELECT 2014 FROM table_name_49 WHERE 2013 = "danielle button"
What is the lowest Against, when Venue is "Twickenham , London", when Status is "Six Nations", and when Opposing Teams is "France"?
CREATE TABLE table_name_78 (against INTEGER, opposing_teams VARCHAR, venue VARCHAR, status VARCHAR)
SELECT MIN(against) FROM table_name_78 WHERE venue = "twickenham , london" AND status = "six nations" AND opposing_teams = "france"
What venue did the away team Collingwood play at?
CREATE TABLE table_name_42 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_42 WHERE away_team = "collingwood"
What is the rank when there was less than 1 gold, 0 bronze, and more than 1 total?
CREATE TABLE table_name_23 (rank INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT SUM(rank) FROM table_name_23 WHERE gold < 1 AND bronze = 0 AND total > 1
Who was the heir when the monarch was Wareru?
CREATE TABLE table_26460435_5 (heir VARCHAR, monarch VARCHAR)
SELECT heir FROM table_26460435_5 WHERE monarch = "Wareru"
What round was Corey Cowick picked?
CREATE TABLE table_name_8 (round INTEGER, player VARCHAR)
SELECT AVG(round) FROM table_name_8 WHERE player = "corey cowick"
Who was the opponent in the game in which Austin Daye (16) did the most high points?
CREATE TABLE table_27755603_2 (team VARCHAR, high_points VARCHAR)
SELECT team FROM table_27755603_2 WHERE high_points = "Austin Daye (16)"
Who was the away team when Manchester United played at home on 10 February 1951?
CREATE TABLE table_name_91 (away_team VARCHAR, date VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_91 WHERE date = "10 february 1951" AND home_team = "manchester united"
Find the last name of female (sex is F) students in the descending order of age.
CREATE TABLE STUDENT (LName VARCHAR, Sex VARCHAR, Age VARCHAR)
SELECT LName FROM STUDENT WHERE Sex = "F" ORDER BY Age DESC
Which membership card has more than 5 members?
CREATE TABLE member (Membership_card VARCHAR)
SELECT Membership_card FROM member GROUP BY Membership_card HAVING COUNT(*) > 5
What Rodger Corser Episode has a Rank of senior sergeant?
CREATE TABLE table_name_31 (episodes VARCHAR, rank VARCHAR, actor_actress VARCHAR)
SELECT episodes FROM table_name_31 WHERE rank = "senior sergeant" AND actor_actress = "rodger corser"
How many times was tues 24 aug 19' 19.83 117.110mph?
CREATE TABLE table_26986076_2 (rank VARCHAR, tues_24_aug VARCHAR)
SELECT COUNT(rank) FROM table_26986076_2 WHERE tues_24_aug = "19' 19.83 117.110mph"
What is the games lost when games played was 2, year was earlier than 1999, and points for was 24?
CREATE TABLE table_name_73 (games_lost___tests__ VARCHAR, points_for___tests__ VARCHAR, games_played___tests__ VARCHAR, year_s_ VARCHAR)
SELECT games_lost___tests__ FROM table_name_73 WHERE games_played___tests__ = "2" AND year_s_ < 1999 AND points_for___tests__ = "24"
What was the highest crowd size at Windy Hill?
CREATE TABLE table_name_50 (crowd INTEGER, venue VARCHAR)
SELECT MAX(crowd) FROM table_name_50 WHERE venue = "windy hill"
What is Result, when Date is "April 3"?
CREATE TABLE table_name_54 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_54 WHERE date = "april 3"
What's the year with a score of 305?
CREATE TABLE table_name_60 (year INTEGER, total_score VARCHAR)
SELECT MIN(year) FROM table_name_60 WHERE total_score = "305"
What is the Surface when Todd Woodbridge was the runner-up, and a Date of 24 february 1997?
CREATE TABLE table_name_77 (surface VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT surface FROM table_name_77 WHERE outcome = "runner-up" AND date = "24 february 1997"
What is the total number of 4th place that has 3 appearances for 3, and a more than 0 silver medals, and no gold medals?
CREATE TABLE table_name_27 (gold_medals VARCHAR, appearances VARCHAR, silver_medals VARCHAR)
SELECT COUNT(4 AS th_place) FROM table_name_27 WHERE appearances = 3 AND silver_medals > 0 AND gold_medals < 0
What university is kwaku nyamekye affiliated with?
CREATE TABLE table_25518547_4 (affiliation VARCHAR, player VARCHAR)
SELECT affiliation FROM table_25518547_4 WHERE player = "Kwaku Nyamekye"
Which game site has a recap as the match report for week 7?
CREATE TABLE table_name_84 (game_site VARCHAR, match_report VARCHAR, week VARCHAR)
SELECT game_site FROM table_name_84 WHERE match_report = "recap" AND week = 7
What is John Flatters' nationality?
CREATE TABLE table_name_10 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_10 WHERE player = "john flatters"
Who has a Jump 2 of 7.06, and what is this person's Jump 3?
CREATE TABLE table_name_80 (jump_3 VARCHAR, jump_2 VARCHAR)
SELECT jump_3 FROM table_name_80 WHERE jump_2 = "7.06"
What is the title of the first episode of the season that begin on february 27, 1954?
CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR)
SELECT title FROM table_15824796_3 WHERE original_air_date = "February 27, 1954"
What was the away score for Carlton?
CREATE TABLE table_name_41 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_41 WHERE away_team = "carlton"
What batting partners batted for pakistan?
CREATE TABLE table_1670921_2 (batting_partners VARCHAR, batting_team VARCHAR)
SELECT batting_partners FROM table_1670921_2 WHERE batting_team = "Pakistan"
Which NFL team picked Patrick Collins?
CREATE TABLE table_name_30 (nfl_team VARCHAR, player VARCHAR)
SELECT nfl_team FROM table_name_30 WHERE player = "patrick collins"
Which Gold has a Rank of 7, a Nation of italy, and a Silver smaller than 0?
CREATE TABLE table_name_40 (gold VARCHAR, silver VARCHAR, rank VARCHAR, nation VARCHAR)
SELECT COUNT(gold) FROM table_name_40 WHERE rank = "7" AND nation = "italy" AND silver < 0
Who was playing when the score was 5–7, 6–7 (4–7)?
CREATE TABLE table_2186447_1 (opponents VARCHAR, score VARCHAR)
SELECT opponents FROM table_2186447_1 WHERE score = "5–7, 6–7 (4–7)"
Find the last names of the teachers that teach fifth grade.
CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (lastname VARCHAR, classroom VARCHAR)
SELECT DISTINCT T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 5
That is the value for Try bonus when the value for Points is 418?
CREATE TABLE table_name_82 (try_bonus VARCHAR, points_for VARCHAR)
SELECT try_bonus FROM table_name_82 WHERE points_for = "418"
what is the image quality when the multiple sessions is x, the authentication is ✓ and the date is may 15, 2007?
CREATE TABLE table_name_32 (image_quality VARCHAR, date VARCHAR, multiple_sessions VARCHAR, authentication VARCHAR)
SELECT image_quality FROM table_name_32 WHERE multiple_sessions = "x" AND authentication = "✓" AND date = "may 15, 2007"
At what tournament was the Score 5–7, 7–5, 6–4?
CREATE TABLE table_name_54 (tournament VARCHAR, score_in_final VARCHAR)
SELECT tournament FROM table_name_54 WHERE score_in_final = "5–7, 7–5, 6–4"
how many records were made on the game that ended with score w 121–119 (ot)
CREATE TABLE table_17190012_7 (record VARCHAR, score VARCHAR)
SELECT COUNT(record) FROM table_17190012_7 WHERE score = "W 121–119 (OT)"
What is the average number of gold medals won among participants that won less than 13 silver, less than 8 bronze, and more than 18 medals overall?
CREATE TABLE table_name_99 (gold INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR)
SELECT AVG(gold) FROM table_name_99 WHERE silver < 13 AND total > 18 AND bronze < 8
What was the score of the game that took place on october 22, 1976?
CREATE TABLE table_name_53 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_53 WHERE date = "october 22, 1976"
Which Team has a round 1 CONMEBOL 1995?
CREATE TABLE table_name_28 (team VARCHAR, conmebol_1995 VARCHAR)
SELECT team FROM table_name_28 WHERE conmebol_1995 = "round 1"
What is the Score that has an Attendance of 4 679?
CREATE TABLE table_name_52 (score VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_52 WHERE attendance = "4 679"
How many different results are there for the battles?
CREATE TABLE battle (RESULT VARCHAR)
SELECT COUNT(DISTINCT RESULT) FROM battle
Before 1987, what is the Entrant with bmw straight-4 (t/c) as Engine and a great than 2 Pts?
CREATE TABLE table_name_12 (entrant VARCHAR, pts VARCHAR, year VARCHAR, engine VARCHAR)
SELECT entrant FROM table_name_12 WHERE year < 1987 AND engine = "bmw straight-4 (t/c)" AND pts > 2
Name the engine for years before 1990 and chassis of eurobrun er189
CREATE TABLE table_name_57 (engine VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT engine FROM table_name_57 WHERE year < 1990 AND chassis = "eurobrun er189"
List the names of hosts who did not serve as a host of any party in our record.
CREATE TABLE HOST (Name VARCHAR, Host_ID VARCHAR); CREATE TABLE party_host (Name VARCHAR, Host_ID VARCHAR)
SELECT Name FROM HOST WHERE NOT Host_ID IN (SELECT Host_ID FROM party_host)
What is the average finish that has 24 as the start, with a year after 1987?
CREATE TABLE table_name_89 (finish INTEGER, start VARCHAR, year VARCHAR)
SELECT AVG(finish) FROM table_name_89 WHERE start = 24 AND year > 1987
Where did Essendon play as the away team?
CREATE TABLE table_name_69 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_69 WHERE away_team = "essendon"
What is the broadcast date of the episode with run time 25:12?
CREATE TABLE table_1785117_1 (broadcast_date VARCHAR, run_time VARCHAR)
SELECT broadcast_date FROM table_1785117_1 WHERE run_time = "25:12"
When the home team was Shrewsbury town, what was the score?
CREATE TABLE table_name_54 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_54 WHERE home_team = "shrewsbury town"
What primary sponsor has the owner Rick Hendrick and their crew chief is Alan Gustafson?
CREATE TABLE table_name_50 (primary_sponsor_s_ VARCHAR, owner_s_ VARCHAR, crew_chief VARCHAR)
SELECT primary_sponsor_s_ FROM table_name_50 WHERE owner_s_ = "rick hendrick" AND crew_chief = "alan gustafson"
Can you tell me the Club that has the Lost of 19?
CREATE TABLE table_name_34 (club VARCHAR, lost VARCHAR)
SELECT club FROM table_name_34 WHERE lost = "19"
What is the least number of seasons in top division?
CREATE TABLE table_11250_4 (number_of_seasons_in_top_division INTEGER)
SELECT MIN(number_of_seasons_in_top_division) FROM table_11250_4
Which Driver and passenger have a bike number of less than 4 with zabel -vmc equipment?
CREATE TABLE table_name_9 (driver___passenger VARCHAR, bike_no VARCHAR, equipment VARCHAR)
SELECT driver___passenger FROM table_name_9 WHERE bike_no < 4 AND equipment = "zabel -vmc"
who was running in the section pennsylvania 5
CREATE TABLE table_2668378_13 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_2668378_13 WHERE district = "Pennsylvania 5"
Name the location attendance for austin daye , tracy mcgrady , tayshaun prince (20)
CREATE TABLE table_27755603_8 (location_attendance VARCHAR, high_points VARCHAR)
SELECT location_attendance FROM table_27755603_8 WHERE high_points = "Austin Daye , Tracy McGrady , Tayshaun Prince (20)"
What is the maximum acres in Castledermot?
CREATE TABLE table_28802165_1 (s_acre INTEGER, civil_parish VARCHAR)
SELECT MAX(s_acre) FROM table_28802165_1 WHERE civil_parish = "Castledermot"
Who is the runner-up from Milwaukee?
CREATE TABLE table_name_27 (runner_up VARCHAR, city VARCHAR)
SELECT runner_up FROM table_name_27 WHERE city = "milwaukee"
What is the % similarity to C7orf38 of the animal whose % identity to C7orf38 is 81?
CREATE TABLE table_26957063_3 (_percentage_similarity_to_c7orf38 INTEGER, _percentage_identity_to_c7orf38 VARCHAR)
SELECT MAX(_percentage_similarity_to_c7orf38) FROM table_26957063_3 WHERE _percentage_identity_to_c7orf38 = 81
What was the order # of the theme Male Singers?
CREATE TABLE table_27616663_1 (order__number VARCHAR, theme VARCHAR)
SELECT order__number FROM table_27616663_1 WHERE theme = "Male Singers"
How many times was the rank (night) 11?
CREATE TABLE table_11253290_2 (viewers__millions_ VARCHAR, rank__night_ VARCHAR)
SELECT COUNT(viewers__millions_) FROM table_11253290_2 WHERE rank__night_ = 11
Show each county along with the number of schools and total enrollment in each county.
CREATE TABLE school (county VARCHAR, enrollment INTEGER)
SELECT county, COUNT(*), SUM(enrollment) FROM school GROUP BY county
Who played FBS where the result was L, 62-3?
CREATE TABLE table_26240481_1 (fbs_opponent VARCHAR, result VARCHAR)
SELECT fbs_opponent FROM table_26240481_1 WHERE result = "L, 62-3"
What is the smallest amount sampled of product 蒙牛牌嬰幼兒配方乳粉 ?
CREATE TABLE table_18943444_1 (samples_taken INTEGER, product VARCHAR)
SELECT MIN(samples_taken) FROM table_18943444_1 WHERE product = "蒙牛牌嬰幼兒配方乳粉"
Which Time/Retired has a Manufacturer of yamaha, and a Rider of garry mccoy?
CREATE TABLE table_name_88 (time_retired VARCHAR, manufacturer VARCHAR, rider VARCHAR)
SELECT time_retired FROM table_name_88 WHERE manufacturer = "yamaha" AND rider = "garry mccoy"
What is the Suffix of the intensive and valency change of 0?
CREATE TABLE table_name_21 (suffix VARCHAR, valency_change VARCHAR, type VARCHAR)
SELECT suffix FROM table_name_21 WHERE valency_change = "0" AND type = "intensive"
Which date has a Race Leader of hermann buse ( ger ), and a Stage of 5?
CREATE TABLE table_name_83 (date VARCHAR, race_leader VARCHAR, stage VARCHAR)
SELECT date FROM table_name_83 WHERE race_leader = "hermann buse ( ger )" AND stage = "5"
What Call sign shows an ERP W of 80?
CREATE TABLE table_name_93 (call_sign VARCHAR, erp_w VARCHAR)
SELECT call_sign FROM table_name_93 WHERE erp_w = 80
Craig Parry with a score of 68-68=136 is in what place?
CREATE TABLE table_name_83 (place VARCHAR, player VARCHAR, score VARCHAR)
SELECT place FROM table_name_83 WHERE score = 68 - 68 = 136 AND player = "craig parry"
what is the place when the draw is less than 12 and the artist is quartissimo feat. martina?
CREATE TABLE table_name_60 (place INTEGER, draw VARCHAR, artist VARCHAR)
SELECT SUM(place) FROM table_name_60 WHERE draw < 12 AND artist = "quartissimo feat. martina"
What is Opponent, when Game is "37"?
CREATE TABLE table_name_9 (opponent VARCHAR, game VARCHAR)
SELECT opponent FROM table_name_9 WHERE game = 37
Name the number of womens doubles for 2011 rio de janeiro
CREATE TABLE table_28138035_4 (womens_doubles VARCHAR, year_location VARCHAR)
SELECT COUNT(womens_doubles) FROM table_28138035_4 WHERE year_location = "2011 Rio de Janeiro"
Name the last time for club of newell's old boys
CREATE TABLE table_name_11 (last_title VARCHAR, club VARCHAR)
SELECT last_title FROM table_name_11 WHERE club = "newell's old boys"
What tournament has an opponent gan teik chai lin woon fui?
CREATE TABLE table_name_77 (tournament VARCHAR, opponent VARCHAR)
SELECT tournament FROM table_name_77 WHERE opponent = "gan teik chai lin woon fui"
What is the To par of the Player wtih Year(s) won of 1983?
CREATE TABLE table_name_11 (to_par INTEGER, year_s__won VARCHAR)
SELECT AVG(to_par) FROM table_name_11 WHERE year_s__won = "1983"
On what date was the Ed Remaster CD and TOCT-24365 Catalog released?
CREATE TABLE table_name_88 (date VARCHAR, format VARCHAR, catalog VARCHAR)
SELECT date FROM table_name_88 WHERE format = "ed remaster cd" AND catalog = "toct-24365"
On October 1, 1995 with Dora Djilianova as a partner, what was the outcome of the match?
CREATE TABLE table_name_74 (outcome VARCHAR, partner VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_74 WHERE partner = "dora djilianova" AND date = "october 1, 1995"
When was the stokers' training ship launched?
CREATE TABLE table_24496403_1 (launched VARCHAR, disposition VARCHAR)
SELECT launched FROM table_24496403_1 WHERE disposition = "Stokers' training ship"
Which year has brm v12 as the engine?
CREATE TABLE table_name_19 (year VARCHAR, engine VARCHAR)
SELECT year FROM table_name_19 WHERE engine = "brm v12"
What is the channel with a 03:40 time?
CREATE TABLE table_name_51 (channel VARCHAR, time VARCHAR)
SELECT channel FROM table_name_51 WHERE time = "03:40"
What type is the school located in Macon, Georgia?
CREATE TABLE table_1973842_1 (type VARCHAR, location VARCHAR)
SELECT type FROM table_1973842_1 WHERE location = "Macon, Georgia"
What is the result on 29 September 2007?
CREATE TABLE table_name_39 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_39 WHERE date = "29 september 2007"
When the team is newman/haas racing and the grid size is 3, what's the time/retired?
CREATE TABLE table_name_8 (time_retired VARCHAR, team VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_8 WHERE team = "newman/haas racing" AND grid = 3