combined_text
stringlengths
106
1.05k
###question:What seasons had a finale on May 25, 2004?###answer:SELECT season FROM table_175980_2 WHERE finale = "May 25, 2004"###context:CREATE TABLE table_175980_2 (season VARCHAR, finale VARCHAR)
###question:What seasons had a ranking of #47?###answer:SELECT season FROM table_175980_2 WHERE ranking = "#47"###context:CREATE TABLE table_175980_2 (season VARCHAR, ranking VARCHAR)
###question:What are all values for viewers for 1st season?###answer:SELECT viewers__in_millions_ FROM table_175980_2 WHERE season = "1st"###context:CREATE TABLE table_175980_2 (viewers__in_millions_ VARCHAR, season VARCHAR)
###question:What is the withdraw date for secr no. 771?###answer:SELECT date_withdrawn FROM table_17607663_1 WHERE secr_no = 771###context:CREATE TABLE table_17607663_1 (date_withdrawn VARCHAR, secr_no VARCHAR)
###question:Who is the builder for br no. 31779?###answer:SELECT builder FROM table_17607663_1 WHERE br_no = 31779###context:CREATE TABLE table_17607663_1 (builder VARCHAR, br_no VARCHAR)
###question:what ist he country where the loan club is fulham?###answer:SELECT country FROM table_17596418_5 WHERE loan_club = "Fulham"###context:CREATE TABLE table_17596418_5 (country VARCHAR, loan_club VARCHAR)
###question:what ist he total number of ages where the start date is 6 november?###answer:SELECT COUNT(age) FROM table_17596418_5 WHERE started = "6 November"###context:CREATE TABLE table_17596418_5 (age VARCHAR, started VARCHAR)
###question:What was the name of eipsode 618?###answer:SELECT title FROM table_17624965_1 WHERE production_code = 618###context:CREATE TABLE table_17624965_1 (title VARCHAR, production_code VARCHAR)
###question:How many episodes did Alison Maclean direct?###answer:SELECT COUNT(written_by) FROM table_17624965_1 WHERE directed_by = "Alison Maclean"###context:CREATE TABLE table_17624965_1 (written_by VARCHAR, directed_by VARCHAR)
###question:Name the high points for may 29###answer:SELECT high_points FROM table_17622423_12 WHERE date = "May 29"###context:CREATE TABLE table_17622423_12 (high_points VARCHAR, date VARCHAR)
###question:Name the date for series 2-2###answer:SELECT date FROM table_17622423_12 WHERE series = "2-2"###context:CREATE TABLE table_17622423_12 (date VARCHAR, series VARCHAR)
###question:Name the high assists for may 21###answer:SELECT high_assists FROM table_17622423_12 WHERE date = "May 21"###context:CREATE TABLE table_17622423_12 (high_assists VARCHAR, date VARCHAR)
###question:How many different play-by-play announcers also had pregame analysis by Darren Flutie, Eric Tillman and Greg Frers?###answer:SELECT COUNT(play_by_play) FROM table_17628022_2 WHERE pregame_analysts = "Darren Flutie, Eric Tillman and Greg Frers"###context:CREATE TABLE table_17628022_2 (play_by_play VARCHAR, p...
###question:Who did the play-by-play when the pregame host was Brian Williams and the sideline reporters were Steve Armitage and Brenda Irving?###answer:SELECT play_by_play FROM table_17628022_2 WHERE pregame_host = "Brian Williams" AND sideline_reporters = "Steve Armitage and Brenda Irving"###context:CREATE TABLE tabl...
###question:Who were the pregame hosts when the sideline reporters were Steve Armitage and Brenda Irving?###answer:SELECT pregame_host FROM table_17628022_2 WHERE sideline_reporters = "Steve Armitage and Brenda Irving"###context:CREATE TABLE table_17628022_2 (pregame_host VARCHAR, sideline_reporters VARCHAR)
###question:Who did pregame analysis in 2002?###answer:SELECT pregame_analysts FROM table_17628022_2 WHERE year = 2002###context:CREATE TABLE table_17628022_2 (pregame_analysts VARCHAR, year VARCHAR)
###question:Name the state for lake county###answer:SELECT state FROM table_1762887_1 WHERE county = "Lake county"###context:CREATE TABLE table_1762887_1 (state VARCHAR, county VARCHAR)
###question:What is the lowest season?###answer:SELECT MIN(season) FROM table_17632217_1###context:CREATE TABLE table_17632217_1 (season INTEGER)
###question:How many values for number of clubs have Shandong as the runner-up?###answer:SELECT COUNT(number_of_clubs) FROM table_17632217_1 WHERE runners_up = "Shandong"###context:CREATE TABLE table_17632217_1 (number_of_clubs VARCHAR, runners_up VARCHAR)
###question:How many total wins with Shanghai as runner-up?###answer:SELECT COUNT(total_wins) FROM table_17632217_1 WHERE runners_up = "Shanghai"###context:CREATE TABLE table_17632217_1 (total_wins VARCHAR, runners_up VARCHAR)
###question:Name the club for when tries for is 32###answer:SELECT club FROM table_17625749_1 WHERE tries_for = "32"###context:CREATE TABLE table_17625749_1 (club VARCHAR, tries_for VARCHAR)
###question:Name the number of lost where tries for is 109###answer:SELECT COUNT(lost) FROM table_17625749_1 WHERE tries_for = "109"###context:CREATE TABLE table_17625749_1 (lost VARCHAR, tries_for VARCHAR)
###question:Name the won when tries against is 72###answer:SELECT won FROM table_17625749_1 WHERE tries_against = "72"###context:CREATE TABLE table_17625749_1 (won VARCHAR, tries_against VARCHAR)
###question:Name the points aginst when drawn is 1 and points is 51###answer:SELECT points_against FROM table_17625749_1 WHERE drawn = "1" AND points = "51"###context:CREATE TABLE table_17625749_1 (points_against VARCHAR, drawn VARCHAR, points VARCHAR)
###question:Name the original air date for number in season being 1###answer:SELECT original_air_date FROM table_17625876_1 WHERE no_in_season = 1###context:CREATE TABLE table_17625876_1 (original_air_date VARCHAR, no_in_season VARCHAR)
###question:How many were won when 5 were lost? ###answer:SELECT won FROM table_17625749_3 WHERE lost = "5"###context:CREATE TABLE table_17625749_3 (won VARCHAR, lost VARCHAR)
###question:How many were drawn when 13 were lost? ###answer:SELECT drawn FROM table_17625749_3 WHERE lost = "13"###context:CREATE TABLE table_17625749_3 (drawn VARCHAR, lost VARCHAR)
###question:How many points are there for 63 tries against? ###answer:SELECT points_for FROM table_17625749_3 WHERE tries_against = "63"###context:CREATE TABLE table_17625749_3 (points_for VARCHAR, tries_against VARCHAR)
###question:What is the try bonus when the tries against are 17? ###answer:SELECT try_bonus FROM table_17625749_3 WHERE tries_against = "17"###context:CREATE TABLE table_17625749_3 (try_bonus VARCHAR, tries_against VARCHAR)
###question:How many tries for are there when 11 were won? ###answer:SELECT tries_for FROM table_17625749_3 WHERE won = "11"###context:CREATE TABLE table_17625749_3 (tries_for VARCHAR, won VARCHAR)
###question:How many points categories are there when the losing bonus is 2 and points for are 642?###answer:SELECT COUNT(points) FROM table_17625749_3 WHERE losing_bonus = "2" AND points_for = "642"###context:CREATE TABLE table_17625749_3 (points VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)
###question:How many people wrote the episode that had 6.34 million viewers?###answer:SELECT COUNT(written_by) FROM table_17641206_2 WHERE viewership = "6.34 million"###context:CREATE TABLE table_17641206_2 (written_by VARCHAR, viewership VARCHAR)
###question:What was the title of the episode with 5.04 million viewers?###answer:SELECT original_title FROM table_17641206_4 WHERE viewership = "5.04 million"###context:CREATE TABLE table_17641206_4 (original_title VARCHAR, viewership VARCHAR)
###question:What was the first airdate with a viewership of 4.77 million?###answer:SELECT original_airdate FROM table_17641206_4 WHERE viewership = "4.77 million"###context:CREATE TABLE table_17641206_4 (original_airdate VARCHAR, viewership VARCHAR)
###question:How many episodes of 30 minutes were written by John Sullivan?###answer:SELECT COUNT(duration) FROM table_17641206_4 WHERE written_by = "John Sullivan"###context:CREATE TABLE table_17641206_4 (duration VARCHAR, written_by VARCHAR)
###question:Who was the director when the writer was John Sullivan?###answer:SELECT directed_by FROM table_17641206_4 WHERE written_by = "John Sullivan"###context:CREATE TABLE table_17641206_4 (directed_by VARCHAR, written_by VARCHAR)
###question:What are the movies that are written and dircted by john sullivan with the airdate of 15january2009.###answer:SELECT directed_by FROM table_17641206_8 WHERE written_by = "John Sullivan" AND original_airdate = "15January2009"###context:CREATE TABLE table_17641206_8 (directed_by VARCHAR, written_by VARCHAR,...
###question:How many episodes aired on 22january2009###answer:SELECT COUNT(episode) FROM table_17641206_8 WHERE original_airdate = "22January2009"###context:CREATE TABLE table_17641206_8 (episode VARCHAR, original_airdate VARCHAR)
###question:Name the least transfers out when transfers is 21###answer:SELECT MIN(transfers_out) FROM table_17650725_1 WHERE total_transfers = 21###context:CREATE TABLE table_17650725_1 (transfers_out INTEGER, total_transfers VARCHAR)
###question:Name the least total transfers for romania###answer:SELECT MIN(total_transfers) FROM table_17650725_1 WHERE country = "Romania"###context:CREATE TABLE table_17650725_1 (total_transfers INTEGER, country VARCHAR)
###question:Name the least internal transfers###answer:SELECT MIN(internal_transfers) FROM table_17650725_1###context:CREATE TABLE table_17650725_1 (internal_transfers INTEGER)
###question:How many status are there for Moncton?###answer:SELECT COUNT(status) FROM table_176529_2 WHERE official_name = "Moncton"###context:CREATE TABLE table_176529_2 (status VARCHAR, official_name VARCHAR)
###question:What is the census ranking of the location with population of 959?###answer:SELECT census_ranking FROM table_176529_2 WHERE population = 959###context:CREATE TABLE table_176529_2 (census_ranking VARCHAR, population VARCHAR)
###question:What is the name of the place with 582.20 square km area?###answer:SELECT official_name FROM table_176529_2 WHERE area_km_2 = "582.20"###context:CREATE TABLE table_176529_2 (official_name VARCHAR, area_km_2 VARCHAR)
###question:What is the name of the place where area is 578.28 square km?###answer:SELECT official_name FROM table_176529_2 WHERE area_km_2 = "578.28"###context:CREATE TABLE table_176529_2 (official_name VARCHAR, area_km_2 VARCHAR)
###question:If the points is 20, what was the team name?###answer:SELECT team FROM table_17693171_1 WHERE points = "20"###context:CREATE TABLE table_17693171_1 (team VARCHAR, points VARCHAR)
###question:What is the time/retired if the driver is Marco Andretti?###answer:SELECT time_retired FROM table_17693171_1 WHERE driver = "Marco Andretti"###context:CREATE TABLE table_17693171_1 (time_retired VARCHAR, driver VARCHAR)
###question:If the laps is 191, what is the maximum laps led?###answer:SELECT MAX(laps) AS Led FROM table_17693171_1 WHERE laps = 191###context:CREATE TABLE table_17693171_1 (laps INTEGER)
###question:What is the time/retired if the driver is Ed Carpenter?###answer:SELECT time_retired FROM table_17693171_1 WHERE driver = "Ed Carpenter"###context:CREATE TABLE table_17693171_1 (time_retired VARCHAR, driver VARCHAR)
###question:If the time/retired is +1 lap, what is the amount of maximum laps?###answer:SELECT MAX(laps) FROM table_17693171_1 WHERE time_retired = "+1 lap"###context:CREATE TABLE table_17693171_1 (laps INTEGER, time_retired VARCHAR)
###question:If the driver is Milka Duno, what is the name of the team?###answer:SELECT team FROM table_17693171_1 WHERE driver = "Milka Duno"###context:CREATE TABLE table_17693171_1 (team VARCHAR, driver VARCHAR)
###question:How many stages were won by Robbie McEwen?###answer:SELECT COUNT(stage) FROM table_17672470_19 WHERE winner = "Robbie McEwen"###context:CREATE TABLE table_17672470_19 (stage VARCHAR, winner VARCHAR)
###question:How many car numbers were listed for Rusty Wallace?###answer:SELECT COUNT(car__number) FROM table_1769428_2 WHERE winning_driver = "Rusty Wallace"###context:CREATE TABLE table_1769428_2 (car__number VARCHAR, winning_driver VARCHAR)
###question:In what season did Rusty Wallace win?###answer:SELECT MAX(season) FROM table_1769428_2 WHERE winning_driver = "Rusty Wallace"###context:CREATE TABLE table_1769428_2 (season INTEGER, winning_driver VARCHAR)
###question:What was the represented team on June 27?###answer:SELECT team FROM table_1769428_2 WHERE date = "June 27"###context:CREATE TABLE table_1769428_2 (team VARCHAR, date VARCHAR)
###question:Who was the winning driver for Hendrick Motorsports in a Chevrolet Impala SS?###answer:SELECT winning_driver FROM table_1769428_2 WHERE team = "Hendrick Motorsports" AND make = "Chevrolet Impala SS"###context:CREATE TABLE table_1769428_2 (winning_driver VARCHAR, team VARCHAR, make VARCHAR)
###question:When 45 is the goals for and 10 is the drawn what is the lost?###answer:SELECT lost FROM table_17718005_2 WHERE drawn = 10 AND goals_for = 45###context:CREATE TABLE table_17718005_2 (lost VARCHAR, drawn VARCHAR, goals_for VARCHAR)
###question:When +10 is the goal difference what is the goals for?###answer:SELECT goals_for FROM table_17718005_2 WHERE goal_difference = "+10"###context:CREATE TABLE table_17718005_2 (goals_for VARCHAR, goal_difference VARCHAR)
###question:When ellesmere port & neston is the team what are the points 1?###answer:SELECT points_1 FROM table_17718005_2 WHERE team = "Ellesmere Port & Neston"###context:CREATE TABLE table_17718005_2 (points_1 VARCHAR, team VARCHAR)
###question:When 2005 is the season how many drivers are there?###answer:SELECT COUNT(driver) FROM table_1771753_3 WHERE season = "2005"###context:CREATE TABLE table_1771753_3 (driver VARCHAR, season VARCHAR)
###question:When tony kanaan is the driver what is the average speed miles per hour?###answer:SELECT average_speed__mph_ FROM table_1771753_3 WHERE driver = "Tony Kanaan"###context:CREATE TABLE table_1771753_3 (average_speed__mph_ VARCHAR, driver VARCHAR)
###question:When 169.182 is the average speed miles per hour what is the chassis?###answer:SELECT chassis FROM table_1771753_3 WHERE average_speed__mph_ = "169.182"###context:CREATE TABLE table_1771753_3 (chassis VARCHAR, average_speed__mph_ VARCHAR)
###question:When 1:34:01 is the race time what is the miles in kilometers?###answer:SELECT miles__km_ FROM table_1771753_3 WHERE race_time = "1:34:01"###context:CREATE TABLE table_1771753_3 (miles__km_ VARCHAR, race_time VARCHAR)
###question:When 228 is the lap and chip ganassi racing is the team what is the race time?###answer:SELECT race_time FROM table_1771753_3 WHERE team = "Chip Ganassi Racing" AND laps = "228"###context:CREATE TABLE table_1771753_3 (race_time VARCHAR, team VARCHAR, laps VARCHAR)
###question:What tie number featured Chelsea as the home team?###answer:SELECT MIN(tie_no) FROM table_17736890_5 WHERE home_team = "Chelsea"###context:CREATE TABLE table_17736890_5 (tie_no INTEGER, home_team VARCHAR)
###question:In what tie were Leeds United the away team?###answer:SELECT MAX(tie_no) FROM table_17736890_5 WHERE away_team = "Leeds United"###context:CREATE TABLE table_17736890_5 (tie_no INTEGER, away_team VARCHAR)
###question:Who was the home team when Burnley were the away team?###answer:SELECT home_team FROM table_17736890_5 WHERE away_team = "Burnley"###context:CREATE TABLE table_17736890_5 (home_team VARCHAR, away_team VARCHAR)
###question:what is the lowest year represented?###answer:SELECT MIN(year) FROM table_177273_2###context:CREATE TABLE table_177273_2 (year INTEGER)
###question:What was the score when Françoise Dürr was partner?###answer:SELECT score FROM table_177273_2 WHERE partner = "Françoise Dürr"###context:CREATE TABLE table_177273_2 (score VARCHAR, partner VARCHAR)
###question:What was the outcome in 1975?###answer:SELECT outcome FROM table_177273_2 WHERE year = 1975###context:CREATE TABLE table_177273_2 (outcome VARCHAR, year VARCHAR)
###question:On what surface was the game played with a score of 6–4, 6–4?###answer:SELECT surface FROM table_177273_2 WHERE score = "6–4, 6–4"###context:CREATE TABLE table_177273_2 (surface VARCHAR, score VARCHAR)
###question:What is the year of appearance for the Prince Albert Raiders? ###answer:SELECT years_of_appearance FROM table_17751942_4 WHERE team = "Prince Albert Raiders"###context:CREATE TABLE table_17751942_4 (years_of_appearance VARCHAR, team VARCHAR)
###question:How many wins do the Erie Otters have? ###answer:SELECT wins FROM table_17751942_4 WHERE team = "Erie Otters"###context:CREATE TABLE table_17751942_4 (wins VARCHAR, team VARCHAR)
###question:What is the final win percentage of the Sault Ste. Marie Greyhounds? ###answer:SELECT final_win__percentage FROM table_17751942_4 WHERE team = "Sault Ste. Marie Greyhounds"###context:CREATE TABLE table_17751942_4 (final_win__percentage VARCHAR, team VARCHAR)
###question:What is the total number of semi-final losses for the Kitchener Rangers? ###answer:SELECT MAX(Semi) - final_losses FROM table_17751942_4 WHERE team = "Kitchener Rangers"###context:CREATE TABLE table_17751942_4 (final_losses VARCHAR, Semi INTEGER, team VARCHAR)
###question:How many wins do the Red Deer Rebels have? ###answer:SELECT MAX(wins) FROM table_17751942_4 WHERE team = "Red Deer Rebels"###context:CREATE TABLE table_17751942_4 (wins INTEGER, team VARCHAR)
###question:What is the record for November 26, 1961?###answer:SELECT record FROM table_17765888_1 WHERE date = "November 26, 1961"###context:CREATE TABLE table_17765888_1 (record VARCHAR, date VARCHAR)
###question:What was the game site against the Dallas Texans?###answer:SELECT game_site FROM table_17765888_1 WHERE opponent = "Dallas Texans"###context:CREATE TABLE table_17765888_1 (game_site VARCHAR, opponent VARCHAR)
###question:In how many years was Tom Fleming the final television commentator? ###answer:SELECT COUNT(year_s_) FROM table_17766232_7 WHERE final_television_commentator = "Tom Fleming"###context:CREATE TABLE table_17766232_7 (year_s_ VARCHAR, final_television_commentator VARCHAR)
###question:What was the latest year that Colin Berry was the spokesperson? ###answer:SELECT MAX(year_s_) FROM table_17766232_7 WHERE spokesperson = "Colin Berry"###context:CREATE TABLE table_17766232_7 (year_s_ INTEGER, spokesperson VARCHAR)
###question:Who was the semi-final television commentator when the spokesperson was Colin Berry and the final television commentator was Pete Murray?###answer:SELECT semi_final_television_commentator FROM table_17766232_7 WHERE spokesperson = "Colin Berry" AND final_television_commentator = "Pete Murray"###context:CREA...
###question:Who was the radio commentator when the final television commentator was John Dunn? ###answer:SELECT radio_commentator FROM table_17766232_7 WHERE final_television_commentator = "John Dunn"###context:CREATE TABLE table_17766232_7 (radio_commentator VARCHAR, final_television_commentator VARCHAR)
###question:What is the latest year that the final television commentator was David Jacobs? ###answer:SELECT MAX(year_s_) FROM table_17766232_7 WHERE final_television_commentator = "David Jacobs"###context:CREATE TABLE table_17766232_7 (year_s_ INTEGER, final_television_commentator VARCHAR)
###question:What was their record when the attendance at the game was 14489?###answer:SELECT record FROM table_17765264_1 WHERE attendance = 14489###context:CREATE TABLE table_17765264_1 (record VARCHAR, attendance VARCHAR)
###question:When did they play at the Cotton Bowl?###answer:SELECT date FROM table_17765264_1 WHERE game_site = "Cotton Bowl"###context:CREATE TABLE table_17765264_1 (date VARCHAR, game_site VARCHAR)
###question:What is the percentage of this constellation abbreviated as 'nor'?###answer:SELECT per­cent­age FROM table_177766_1 WHERE abbre­viation = "Nor"###context:CREATE TABLE table_177766_1 (per­cent­age VARCHAR, abbre­viation VARCHAR)
###question:This constellation, abbreviated as 'oph' has how many right ascension (in hm)?###answer:SELECT COUNT(right_ascension__hm_) FROM table_177766_1 WHERE abbre­viation = "Oph"###context:CREATE TABLE table_177766_1 (right_ascension__hm_ VARCHAR, abbre­viation VARCHAR)
###question:What is the name of this constellation with an area of 245.375 sq. deg.?###answer:SELECT constellation FROM table_177766_1 WHERE area__sqdeg_ = "245.375"###context:CREATE TABLE table_177766_1 (constellation VARCHAR, area__sqdeg_ VARCHAR)
###question:This constellation with a ranking of 51 has how many percentages on record?###answer:SELECT COUNT(per) AS ­cent­age FROM table_177766_1 WHERE rank = 51###context:CREATE TABLE table_177766_1 (per VARCHAR, rank VARCHAR)
###question:What is the percentage of this constellation with an area of 248.885 sq. deg.?###answer:SELECT per­cent­age FROM table_177766_1 WHERE area__sqdeg_ = "248.885"###context:CREATE TABLE table_177766_1 (per­cent­age VARCHAR, area__sqdeg_ VARCHAR)
###question:Name the broadcast date for 6.4 million viewers for the archive of 16mm t/r###answer:SELECT broadcast_date FROM table_1776943_1 WHERE viewers__in_millions_ = "6.4" AND archive = "16mm t/r"###context:CREATE TABLE table_1776943_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR, archive VARCHAR)
###question:Name the archive where run time 24:04###answer:SELECT archive FROM table_1776943_1 WHERE run_time = "24:04"###context:CREATE TABLE table_1776943_1 (archive VARCHAR, run_time VARCHAR)
###question:On November 1, 1964, where was the game site?###answer:SELECT game_site FROM table_17781394_1 WHERE date = "November 1, 1964"###context:CREATE TABLE table_17781394_1 (game_site VARCHAR, date VARCHAR)
###question:How many people attended the Week 8 game when Denver played Buffalo?###answer:SELECT attendance FROM table_17778417_1 WHERE week = 8###context:CREATE TABLE table_17778417_1 (attendance VARCHAR, week VARCHAR)
###question:How many times did the Denver Broncos face the Dallas Texans this season?###answer:SELECT COUNT(record) FROM table_17778417_1 WHERE opponent = "Dallas Texans"###context:CREATE TABLE table_17778417_1 (record VARCHAR, opponent VARCHAR)
###question:What year was the winning race time 1:55:13?###answer:SELECT MAX(year) FROM table_17801022_1 WHERE race_time = "1:55:13"###context:CREATE TABLE table_17801022_1 (year INTEGER, race_time VARCHAR)
###question:For races with an average speed of 113.835 mph, what are the winning race times?###answer:SELECT race_time FROM table_17801022_1 WHERE average_speed__mph_ = "113.835"###context:CREATE TABLE table_17801022_1 (race_time VARCHAR, average_speed__mph_ VARCHAR)
###question:What manufacturer won the race on November 2?###answer:SELECT manufacturer FROM table_17801022_1 WHERE date = "November 2"###context:CREATE TABLE table_17801022_1 (manufacturer VARCHAR, date VARCHAR)
###question:What date did Jamie McMurray win the race?###answer:SELECT date FROM table_17801022_1 WHERE driver = "Jamie McMurray"###context:CREATE TABLE table_17801022_1 (date VARCHAR, driver VARCHAR)
###question:What was the date of the race with a winning time of 1:55:13?###answer:SELECT date FROM table_17801022_1 WHERE race_time = "1:55:13"###context:CREATE TABLE table_17801022_1 (date VARCHAR, race_time VARCHAR)