combined_text
stringlengths
106
1.05k
###question:Which team had a driver with a finish position of 7?###answer:SELECT team FROM table_name_85 WHERE fin_pos = "7"###context:CREATE TABLE table_name_85 (team VARCHAR, fin_pos VARCHAR)
###question:What was the time of the driver with a finish position of 19?###answer:SELECT time_retired FROM table_name_13 WHERE fin_pos = "19"###context:CREATE TABLE table_name_13 (time_retired VARCHAR, fin_pos VARCHAR)
###question:What were the number of laps led by the driver with a finish position of 14?###answer:SELECT laps AS Led FROM table_name_38 WHERE fin_pos = "14"###context:CREATE TABLE table_name_38 (laps VARCHAR, fin_pos VARCHAR)
###question:Which team had a finish position of 8?###answer:SELECT team FROM table_name_90 WHERE fin_pos = "8"###context:CREATE TABLE table_name_90 (team VARCHAR, fin_pos VARCHAR)
###question:For the 27 arrow match event, what's the sum of all scores for that event?###answer:SELECT SUM(score) FROM table_name_63 WHERE event = "27 arrow match"###context:CREATE TABLE table_name_63 (score INTEGER, event VARCHAR)
###question:Which event had a score of over 673 points?###answer:SELECT event FROM table_name_72 WHERE score > 673###context:CREATE TABLE table_name_72 (event VARCHAR, score INTEGER)
###question:What is the total number of appearances in the premier league when there were 10 appearances at UEFA and less than 4 at league cup?###answer:SELECT COUNT(premier_league) FROM table_name_53 WHERE UEfa_cup = 10 AND league_cup < 4###context:CREATE TABLE table_name_53 (premier_league VARCHAR, UEfa_cup VARCHAR, ...
###question:What is the highest total number of appearances when there were less than 4 at the FA cup?###answer:SELECT MAX(total) FROM table_name_53 WHERE fa_cup < 4###context:CREATE TABLE table_name_53 (total INTEGER, fa_cup INTEGER)
###question:What player had less than 6 appearances at the FA cup, 33 at the premier league, and more than 5 at the UEFA cup?###answer:SELECT player FROM table_name_62 WHERE fa_cup < 6 AND premier_league = 33 AND UEfa_cup > 5###context:CREATE TABLE table_name_62 (player VARCHAR, UEfa_cup VARCHAR, fa_cup VARCHAR, premie...
###question:What is the sum of the appearances at the league cup for the defender who had less than 10 appearances at the UEFA cup?###answer:SELECT SUM(league_cup) FROM table_name_29 WHERE position = "defender" AND UEfa_cup < 10###context:CREATE TABLE table_name_29 (league_cup INTEGER, position VARCHAR, UEfa_cup VARCHA...
###question:What's the target of the antibody rituximab?###answer:SELECT target FROM table_name_90 WHERE antibody = "rituximab"###context:CREATE TABLE table_name_90 (target VARCHAR, antibody VARCHAR)
###question:What's the target for the brand mylotarg?###answer:SELECT target FROM table_name_96 WHERE brand_name = "mylotarg"###context:CREATE TABLE table_name_96 (target VARCHAR, brand_name VARCHAR)
###question:What's the type for the brand herceptin with an approval date of before 2006?###answer:SELECT type FROM table_name_5 WHERE approval_date < 2006 AND brand_name = "herceptin"###context:CREATE TABLE table_name_5 (type VARCHAR, approval_date VARCHAR, brand_name VARCHAR)
###question:What is Position, when Overall is less than 590, and when Round is 3?###answer:SELECT position FROM table_name_6 WHERE overall < 590 AND round = 3###context:CREATE TABLE table_name_6 (position VARCHAR, overall VARCHAR, round VARCHAR)
###question:What is Player, when MLB Team is "Florida Marlins", and when Round is less than 15?###answer:SELECT player FROM table_name_58 WHERE mlb_team = "florida marlins" AND round < 15###context:CREATE TABLE table_name_58 (player VARCHAR, mlb_team VARCHAR, round VARCHAR)
###question:What is the lowest Overall, when Player is "Dan Jennings", and when Round is greater than 9?###answer:SELECT MIN(overall) FROM table_name_23 WHERE player = "dan jennings" AND round > 9###context:CREATE TABLE table_name_23 (overall INTEGER, player VARCHAR, round VARCHAR)
###question:What is the total number of Round, when Position is 2B?###answer:SELECT COUNT(round) FROM table_name_77 WHERE position = "2b"###context:CREATE TABLE table_name_77 (round VARCHAR, position VARCHAR)
###question:What are the highest points for Justin Lofton when his top 10 is lower than 5?###answer:SELECT MAX(points) FROM table_name_14 WHERE driver = "justin lofton" AND top_10 < 5###context:CREATE TABLE table_name_14 (points INTEGER, driver VARCHAR, top_10 VARCHAR)
###question:What is Frank Kimmel's lowest top 5 with more than 0 wins and fewer than 14 top 10s?###answer:SELECT MIN(top_5) FROM table_name_66 WHERE wins > 0 AND driver = "frank kimmel" AND top_10 < 14###context:CREATE TABLE table_name_66 (top_5 INTEGER, top_10 VARCHAR, wins VARCHAR, driver VARCHAR)
###question:What is the lowest top 10 with fewer than 4 wins, fewer than 3260 points and more than 0 for top 5?###answer:SELECT MIN(top_10) FROM table_name_29 WHERE wins < 4 AND points < 3260 AND top_5 > 0###context:CREATE TABLE table_name_29 (top_10 INTEGER, top_5 VARCHAR, wins VARCHAR, points VARCHAR)
###question:When the mark is 7.35, what's the lowest Lane found?###answer:SELECT MIN(lane) FROM table_name_32 WHERE mark = "7.35"###context:CREATE TABLE table_name_32 (lane INTEGER, mark VARCHAR)
###question:What's the lowest lane found for a mark of 8.09 pb?###answer:SELECT MIN(lane) FROM table_name_68 WHERE mark = "8.09 pb"###context:CREATE TABLE table_name_68 (lane INTEGER, mark VARCHAR)
###question:What's the sum of all of ivet lalova's Heat stats?###answer:SELECT SUM(heat) FROM table_name_17 WHERE name = "ivet lalova"###context:CREATE TABLE table_name_17 (heat INTEGER, name VARCHAR)
###question:What's the total number of Heat recorded for the british virgin islands?###answer:SELECT COUNT(heat) FROM table_name_5 WHERE country = "british virgin islands"###context:CREATE TABLE table_name_5 (heat VARCHAR, country VARCHAR)
###question:When the lane is under 2 and the name is virgen benavides with a mark of 7.29, what's the total number of Heat found?###answer:SELECT COUNT(heat) FROM table_name_14 WHERE mark = "7.29" AND name = "virgen benavides" AND lane < 2###context:CREATE TABLE table_name_14 (heat VARCHAR, lane VARCHAR, mark VARCHAR, ...
###question:What's the Time for the Competition of european cup and has a Venue of Moscow?###answer:SELECT time FROM table_name_87 WHERE competition = "european cup" AND venue = "moscow"###context:CREATE TABLE table_name_87 (time VARCHAR, competition VARCHAR, venue VARCHAR)
###question:What's the Time for an Event of 4x100 m relay and has a Venue of Frankfurt?###answer:SELECT time FROM table_name_17 WHERE event = "4x100 m relay" AND venue = "frankfurt"###context:CREATE TABLE table_name_17 (time VARCHAR, event VARCHAR, venue VARCHAR)
###question:What Competition has an Event of 4x100 m relay and has the Time of 38.89?###answer:SELECT competition FROM table_name_77 WHERE event = "4x100 m relay" AND time = "38.89"###context:CREATE TABLE table_name_77 (competition VARCHAR, event VARCHAR, time VARCHAR)
###question:What's the lowest Year with a Venue of casablanca and has the Time of 20.63w?###answer:SELECT MIN(year) FROM table_name_71 WHERE venue = "casablanca" AND time = "20.63w"###context:CREATE TABLE table_name_71 (year INTEGER, venue VARCHAR, time VARCHAR)
###question:What was the College/junior/club team of the player with the united states nationality?###answer:SELECT college_junior_club_team FROM table_name_91 WHERE nationality = "united states"###context:CREATE TABLE table_name_91 (college_junior_club_team VARCHAR, nationality VARCHAR)
###question:What was the lowest pick number for a united states player picked before round 7?###answer:SELECT MIN(pick) FROM table_name_91 WHERE round > 7 AND nationality = "united states"###context:CREATE TABLE table_name_91 (pick INTEGER, round VARCHAR, nationality VARCHAR)
###question:What country was the player with the score line 69-71-72-69=281 from?###answer:SELECT country FROM table_name_6 WHERE score = 69 - 71 - 72 - 69 = 281###context:CREATE TABLE table_name_6 (country VARCHAR, score VARCHAR)
###question:What was the score of the player from South Africa?###answer:SELECT score FROM table_name_86 WHERE country = "south africa"###context:CREATE TABLE table_name_86 (score VARCHAR, country VARCHAR)
###question:What country did the player with the score line 73-74-72-64=283 from?###answer:SELECT country FROM table_name_65 WHERE score = 73 - 74 - 72 - 64 = 283###context:CREATE TABLE table_name_65 (country VARCHAR, score VARCHAR)
###question:Who won Pro Stock Motorcycle the year Tom Martino won Pro Stock?###answer:SELECT pro_stock AS Motorcycle FROM table_name_60 WHERE pro_stock = "tom martino"###context:CREATE TABLE table_name_60 (pro_stock VARCHAR)
###question:Who won Funny Car in 2012?###answer:SELECT funny_car FROM table_name_64 WHERE year = 2012###context:CREATE TABLE table_name_64 (funny_car VARCHAR, year VARCHAR)
###question:Who won Funny Car when Jim Yates won Pro Stock, in years after 1996?###answer:SELECT funny_car FROM table_name_57 WHERE pro_stock = "jim yates" AND year > 1996###context:CREATE TABLE table_name_57 (funny_car VARCHAR, pro_stock VARCHAR, year VARCHAR)
###question:Who won Pro Stock the year Tony Schumacher won Top Fuel and Tony Pedregon won Funny Car?###answer:SELECT pro_stock FROM table_name_83 WHERE top_fuel = "tony schumacher" AND funny_car = "tony pedregon"###context:CREATE TABLE table_name_83 (pro_stock VARCHAR, top_fuel VARCHAR, funny_car VARCHAR)
###question:In which year did John Force win Funny Car and Mike Dunn win in Top Fuel?###answer:SELECT year FROM table_name_65 WHERE funny_car = "john force" AND top_fuel = "mike dunn"###context:CREATE TABLE table_name_65 (year VARCHAR, funny_car VARCHAR, top_fuel VARCHAR)
###question:What is the total number of races in the 2006 season with 0 poles and more than 0 podiums?###answer:SELECT COUNT(races) FROM table_name_54 WHERE poles = 0 AND season = "2006" AND podiums > 0###context:CREATE TABLE table_name_54 (races VARCHAR, podiums VARCHAR, poles VARCHAR, season VARCHAR)
###question:What is the highest number of the fastest laps when there were 0 poles, more than 2 podiums, and more than 15 races?###answer:SELECT MAX(fastest_laps) FROM table_name_9 WHERE poles = 0 AND races > 15 AND podiums > 2###context:CREATE TABLE table_name_9 (fastest_laps INTEGER, podiums VARCHAR, poles VARCHAR, r...
###question:What is the total number of races when there was more than 1 pole, and the fastest number of laps was less than 4?###answer:SELECT SUM(races) FROM table_name_8 WHERE poles > 1 AND fastest_laps < 4###context:CREATE TABLE table_name_8 (races INTEGER, poles VARCHAR, fastest_laps VARCHAR)
###question:What was the average number of fastest laps with less than 0 poles?###answer:SELECT AVG(fastest_laps) FROM table_name_5 WHERE poles < 0###context:CREATE TABLE table_name_5 (fastest_laps INTEGER, poles INTEGER)
###question:What is the smallest number of poles when the fastest laps are less than 0?###answer:SELECT MIN(poles) FROM table_name_52 WHERE fastest_laps < 0###context:CREATE TABLE table_name_52 (poles INTEGER, fastest_laps INTEGER)
###question:What is the total number of wins in the 2007 season when the fastest laps is 0, there are less than 0 podiums, and there are less than 16 races?###answer:SELECT SUM(wins) FROM table_name_80 WHERE fastest_laps = 0 AND races < 16 AND season = "2007" AND podiums < 0###context:CREATE TABLE table_name_80 (wins I...
###question:What surface did hayley ericksen play on?###answer:SELECT surface FROM table_name_85 WHERE partner = "hayley ericksen"###context:CREATE TABLE table_name_85 (surface VARCHAR, partner VARCHAR)
###question:Who were the opponents on a hard surface with a score of 6-4, 7-6(2)?###answer:SELECT opponents_in_the_final FROM table_name_23 WHERE surface = "hard" AND score = "6-4, 7-6(2)"###context:CREATE TABLE table_name_23 (opponents_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)
###question:What was hayley ericksen's score?###answer:SELECT score FROM table_name_97 WHERE partner = "hayley ericksen"###context:CREATE TABLE table_name_97 (score VARCHAR, partner VARCHAR)
###question:Who won the Silver the Year Katie Curtis Unknown won the Bronze?###answer:SELECT silver FROM table_name_28 WHERE bronze = "katie curtis unknown"###context:CREATE TABLE table_name_28 (silver VARCHAR, bronze VARCHAR)
###question:Round that greg huntington went in?###answer:SELECT round FROM table_name_54 WHERE name = "greg huntington"###context:CREATE TABLE table_name_54 (round VARCHAR, name VARCHAR)
###question:Total overall from penn state?###answer:SELECT SUM(overall) FROM table_name_16 WHERE college = "penn state"###context:CREATE TABLE table_name_16 (overall INTEGER, college VARCHAR)
###question:How many seasons did Pat Chambers coach?###answer:SELECT COUNT(seasons) FROM table_name_2 WHERE coach = "pat chambers"###context:CREATE TABLE table_name_2 (seasons VARCHAR, coach VARCHAR)
###question:What was the to par that goes with the score 68-74-69=211?###answer:SELECT to_par FROM table_name_70 WHERE score = 68 - 74 - 69 = 211###context:CREATE TABLE table_name_70 (to_par VARCHAR, score VARCHAR)
###question:What country is Paul Stankowski from?###answer:SELECT country FROM table_name_21 WHERE player = "paul stankowski"###context:CREATE TABLE table_name_21 (country VARCHAR, player VARCHAR)
###question:What place goes with the score of 70-66-65=201?###answer:SELECT place FROM table_name_90 WHERE score = 70 - 66 - 65 = 201###context:CREATE TABLE table_name_90 (place VARCHAR, score VARCHAR)
###question:When Fred Funk had a to par of E, what was the score?###answer:SELECT score FROM table_name_95 WHERE to_par = "e" AND player = "fred funk"###context:CREATE TABLE table_name_95 (score VARCHAR, to_par VARCHAR, player VARCHAR)
###question:Where is the location where Scott Junk was the opponent?###answer:SELECT location FROM table_name_89 WHERE opponent = "scott junk"###context:CREATE TABLE table_name_89 (location VARCHAR, opponent VARCHAR)
###question:what is the score on 14 december 1974 and the away team is crystal palace?###answer:SELECT score FROM table_name_69 WHERE date = "14 december 1974" AND away_team = "crystal palace"###context:CREATE TABLE table_name_69 (score VARCHAR, date VARCHAR, away_team VARCHAR)
###question:what is the date when the away team is crystal palace?###answer:SELECT date FROM table_name_94 WHERE away_team = "crystal palace"###context:CREATE TABLE table_name_94 (date VARCHAR, away_team VARCHAR)
###question:What was the Tie Number of the Bradford City away team?###answer:SELECT tie_no FROM table_name_7 WHERE away_team = "bradford city"###context:CREATE TABLE table_name_7 (tie_no VARCHAR, away_team VARCHAR)
###question:Who was the home team that had a replay of Tie Number and played against the Bolton Wanderers?###answer:SELECT home_team FROM table_name_81 WHERE tie_no = "replay" AND away_team = "bolton wanderers"###context:CREATE TABLE table_name_81 (home_team VARCHAR, tie_no VARCHAR, away_team VARCHAR)
###question:What date has a Tie Number of 4?###answer:SELECT date FROM table_name_92 WHERE tie_no = "4"###context:CREATE TABLE table_name_92 (date VARCHAR, tie_no VARCHAR)
###question:What is the average money ($) that Tom Weiskopf made?###answer:SELECT AVG(money___) AS $__ FROM table_name_54 WHERE player = "tom weiskopf"###context:CREATE TABLE table_name_54 (money___ INTEGER, player VARCHAR)
###question:What place did the golfer from the United States come in with a To Par of +2, and a score of 73-74-71-72=290?###answer:SELECT place FROM table_name_43 WHERE country = "united states" AND to_par = "+2" AND score = 73 - 74 - 71 - 72 = 290###context:CREATE TABLE table_name_43 (place VARCHAR, country VARCHAR, t...
###question:For a long scale of one million, what is the power notion?###answer:SELECT power_notation FROM table_name_35 WHERE long_scale = "one million"###context:CREATE TABLE table_name_35 (power_notation VARCHAR, long_scale VARCHAR)
###question:For a power notation of 10 12, what is the long scale?###answer:SELECT long_scale FROM table_name_7 WHERE power_notation = "10 12"###context:CREATE TABLE table_name_7 (long_scale VARCHAR, power_notation VARCHAR)
###question:For a short scale of one quadrillion a thousand trillion, what is the Long scale?###answer:SELECT long_scale FROM table_name_94 WHERE short_scale = "one quadrillion a thousand trillion"###context:CREATE TABLE table_name_94 (long_scale VARCHAR, short_scale VARCHAR)
###question:what is the employee (real name) when the pick # is higher than 10 and the brand (to) is raw?###answer:SELECT employee__real_name_ FROM table_name_9 WHERE pick__number > 10 AND brand__to_ = "raw"###context:CREATE TABLE table_name_9 (employee__real_name_ VARCHAR, pick__number VARCHAR, brand__to_ VARCHAR)
###question:Who was the opposing team when the scorer was ronaldinho 90+3'?###answer:SELECT opponent_team FROM table_name_37 WHERE scorers = "ronaldinho 90+3'"###context:CREATE TABLE table_name_37 (opponent_team VARCHAR, scorers VARCHAR)
###question:Who was the opposing team when the scorers were jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'?###answer:SELECT opponent_team FROM table_name_84 WHERE scorers = "jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'"###context:CREATE TABLE table_name_84 (opponent_team VARCHAR, scorers VARCHAR)
###question:What was the score when Altrincham was home?###answer:SELECT score FROM table_name_26 WHERE home_team = "altrincham"###context:CREATE TABLE table_name_26 (score VARCHAR, home_team VARCHAR)
###question:How many goals against when the draws are fewer than 3?###answer:SELECT MAX(goals_against) FROM table_name_20 WHERE drawn < 3###context:CREATE TABLE table_name_20 (goals_against INTEGER, drawn INTEGER)
###question:How many goals when the points 1 is 38 and the played number is less than 42?###answer:SELECT SUM(goals_for) FROM table_name_24 WHERE points_1 = 38 AND played < 42###context:CREATE TABLE table_name_24 (goals_for INTEGER, points_1 VARCHAR, played VARCHAR)
###question:What is the fewest goals for when goal difference is +10 and goals against is more than 61?###answer:SELECT MIN(goals_for) FROM table_name_20 WHERE goal_difference = "+10" AND goals_against > 61###context:CREATE TABLE table_name_20 (goals_for INTEGER, goal_difference VARCHAR, goals_against VARCHAR)
###question:What is the fewest goals for when goals against is 75 and drawn is smaller than 11?###answer:SELECT MIN(goals_for) FROM table_name_35 WHERE goals_against = 75 AND drawn < 11###context:CREATE TABLE table_name_35 (goals_for INTEGER, goals_against VARCHAR, drawn VARCHAR)
###question:What is the highest goals for the position after 10, a goal difference less than -24, and played more than 30 times?###answer:SELECT MAX(goals_for) FROM table_name_46 WHERE position > 10 AND goal_difference < -24 AND played > 30###context:CREATE TABLE table_name_46 (goals_for INTEGER, played VARCHAR, positi...
###question:What is the lowest goals for more than 30 games played?###answer:SELECT MIN(goals_for) FROM table_name_88 WHERE played > 30###context:CREATE TABLE table_name_88 (goals_for INTEGER, played INTEGER)
###question:What is the highest amount of goals in the position after 8, 12 losses, and played less than 30 games?###answer:SELECT MAX(goals_for) FROM table_name_71 WHERE position > 8 AND losses = 12 AND played < 30###context:CREATE TABLE table_name_71 (goals_for INTEGER, played VARCHAR, position VARCHAR, losses VARCHA...
###question:What is the total number of losses for the over 30 games played?###answer:SELECT COUNT(losses) FROM table_name_50 WHERE played > 30###context:CREATE TABLE table_name_50 (losses VARCHAR, played INTEGER)
###question:What is the total number of losses and draws less than 7, points larger than 26, 60 goals, and a position before 4?###answer:SELECT COUNT(losses) FROM table_name_68 WHERE draws < 7 AND points > 26 AND goals_for = 60 AND position < 4###context:CREATE TABLE table_name_68 (losses VARCHAR, position VARCHAR, goa...
###question:What is the highest total for bronze with a gold larger than 0, a silver smaller than 5, and a total of 15?###answer:SELECT MAX(bronze) FROM table_name_84 WHERE gold > 0 AND total = 15 AND silver < 5###context:CREATE TABLE table_name_84 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)
###question:What is Score, when High Points is "Dwight Howard (25)"?###answer:SELECT score FROM table_name_36 WHERE high_points = "dwight howard (25)"###context:CREATE TABLE table_name_36 (score VARCHAR, high_points VARCHAR)
###question:What is Score, when Team is "Washington"?###answer:SELECT score FROM table_name_81 WHERE team = "washington"###context:CREATE TABLE table_name_81 (score VARCHAR, team VARCHAR)
###question:What is Record, when Location Attendance is "Pepsi Center 19,749"?###answer:SELECT record FROM table_name_97 WHERE location_attendance = "pepsi center 19,749"###context:CREATE TABLE table_name_97 (record VARCHAR, location_attendance VARCHAR)
###question:What is Record, when Game is "36"?###answer:SELECT record FROM table_name_24 WHERE game = 36###context:CREATE TABLE table_name_24 (record VARCHAR, game VARCHAR)
###question:What is Date, when Winning Score is −14 (68-68-67-71=274)?###answer:SELECT date FROM table_name_38 WHERE winning_score = −14(68 - 68 - 67 - 71 = 274)###context:CREATE TABLE table_name_38 (date VARCHAR, winning_score VARCHAR)
###question:What is the Margin of Victory, when Tournament is Mercedes Championships (3)?###answer:SELECT margin_of_victory FROM table_name_24 WHERE tournament = "mercedes championships (3)"###context:CREATE TABLE table_name_24 (margin_of_victory VARCHAR, tournament VARCHAR)
###question:What is Date, when Tournament, is Greenbrier Classic?###answer:SELECT date FROM table_name_83 WHERE tournament = "greenbrier classic"###context:CREATE TABLE table_name_83 (date VARCHAR, tournament VARCHAR)
###question:What is Runner(s)-Up when Margin of Victory is 6 Strokes?###answer:SELECT runner_s__up FROM table_name_87 WHERE margin_of_victory = "6 strokes"###context:CREATE TABLE table_name_87 (runner_s__up VARCHAR, margin_of_victory VARCHAR)
###question:What is Date, when Runner(s)-Up is Jonathan Kaye?###answer:SELECT date FROM table_name_18 WHERE runner_s__up = "jonathan kaye"###context:CREATE TABLE table_name_18 (date VARCHAR, runner_s__up VARCHAR)
###question:What is the year that nahete colles was named?###answer:SELECT MAX(year_named) FROM table_name_1 WHERE name = "nahete colles"###context:CREATE TABLE table_name_1 (year_named INTEGER, name VARCHAR)
###question:What year was the geological feature with a latitude of 76.0n and a diameter larger than 548 km was named?###answer:SELECT MAX(year_named) FROM table_name_78 WHERE latitude = "76.0n" AND diameter__km_ > 548###context:CREATE TABLE table_name_78 (year_named INTEGER, latitude VARCHAR, diameter__km_ VARCHAR)
###question:What is the diameter in km of t'ien hu colles?###answer:SELECT diameter__km_ FROM table_name_62 WHERE name = "t'ien hu colles"###context:CREATE TABLE table_name_62 (diameter__km_ VARCHAR, name VARCHAR)
###question:Which team has driven 134 laps?###answer:SELECT team FROM table_name_22 WHERE laps = 134###context:CREATE TABLE table_name_22 (team VARCHAR, laps VARCHAR)
###question:In what class is the laps greater than 134 and the position is 4th?###answer:SELECT class FROM table_name_74 WHERE laps > 134 AND pos = "4th"###context:CREATE TABLE table_name_74 (class VARCHAR, laps VARCHAR, pos VARCHAR)
###question:What title did Mentuhotep IV have?###answer:SELECT title FROM table_name_11 WHERE name = "mentuhotep iv"###context:CREATE TABLE table_name_11 (title VARCHAR, name VARCHAR)
###question:What is the title of Amenemhat II?###answer:SELECT title FROM table_name_78 WHERE name = "amenemhat ii"###context:CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR)
###question:What is the title of Senusret I?###answer:SELECT title FROM table_name_78 WHERE name = "senusret i"###context:CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR)
###question:What is the title of Amenemhat I?###answer:SELECT title FROM table_name_57 WHERE name = "amenemhat i"###context:CREATE TABLE table_name_57 (title VARCHAR, name VARCHAR)
###question:What is the Record when the round was 5, time was 5:00, and the opponent was Torrance Taylor###answer:SELECT record FROM table_name_35 WHERE round = 5 AND time = "5:00" AND opponent = "torrance taylor"###context:CREATE TABLE table_name_35 (record VARCHAR, opponent VARCHAR, round VARCHAR, time VARCHAR)