text
stringlengths
114
1.06k
### question: What was the regular season from year 2012? ### answer: SELECT regular_season FROM table_15409403_1 WHERE year = 2012 ### context: CREATE TABLE table_15409403_1 (regular_season VARCHAR, year VARCHAR)
### question: Which teams had a difference of 8 between goals scored and goals conceeded ### answer: SELECT team FROM table_15420044_1 WHERE difference = "8" ### context: CREATE TABLE table_15420044_1 (team VARCHAR, difference VARCHAR)
### question: Which teams had 10 goals scored against them ### answer: SELECT team FROM table_15420044_1 WHERE against = 10 ### context: CREATE TABLE table_15420044_1 (team VARCHAR, against VARCHAR)
### question: What is the original air date for episode 17 in the season? ### answer: SELECT original_air_date FROM table_15431251_1 WHERE no_in_season = 17 ### context: CREATE TABLE table_15431251_1 (original_air_date VARCHAR, no_in_season VARCHAR)
### question: What is the original air date for the episode directed by Peter Woeste? ### answer: SELECT original_air_date FROM table_15431251_1 WHERE directed_by = "Peter Woeste" ### context: CREATE TABLE table_15431251_1 (original_air_date VARCHAR, directed_by VARCHAR)
### question: What is the title for episode number 7 in the season? ### answer: SELECT COUNT(title) FROM table_15431251_1 WHERE no_in_season = 7 ### context: CREATE TABLE table_15431251_1 (title VARCHAR, no_in_season VARCHAR)
### question: Name the total number of number disc for jimmy kaufman ### answer: SELECT COUNT(no_disc) FROM table_15430606_1 WHERE directed_by = "Jimmy Kaufman" ### context: CREATE TABLE table_15430606_1 (no_disc VARCHAR, directed_by VARCHAR)
### question: Name the minimum number disc for number in series for 14 ### answer: SELECT MIN(no_disc) FROM table_15430606_1 WHERE no_in_series = "14" ### context: CREATE TABLE table_15430606_1 (no_disc INTEGER, no_in_series VARCHAR)
### question: Name the maximum number of disc for bill gereghty ### answer: SELECT MAX(no_disc) FROM table_15430606_1 WHERE directed_by = "Bill Gereghty" ### context: CREATE TABLE table_15430606_1 (no_disc INTEGER, directed_by VARCHAR)
### question: Name the total number of length minutes for number in series for 17 ### answer: SELECT COUNT(length__minutes_) FROM table_15430606_1 WHERE no_in_series = "17" ### context: CREATE TABLE table_15430606_1 (length__minutes_ VARCHAR, no_in_series VARCHAR)
### question: What is the best finish where the scoring rank is 97? ### answer: SELECT best_finish FROM table_15431122_2 WHERE scoring_rank = "97" ### context: CREATE TABLE table_15431122_2 (best_finish VARCHAR, scoring_rank VARCHAR)
### question: What is the minimum number of wins? ### answer: SELECT MIN(wins) FROM table_15431122_2 ### context: CREATE TABLE table_15431122_2 (wins INTEGER)
### question: How many different second members were there when John rudhale was first member? ### answer: SELECT COUNT(second_member) FROM table_15451122_2 WHERE first_member = "John Rudhale" ### context: CREATE TABLE table_15451122_2 (second_member VARCHAR, first_member VARCHAR)
### question: What date was parliament assembled when John rudhale was first member? ### answer: SELECT assembled FROM table_15451122_2 WHERE first_member = "John Rudhale" ### context: CREATE TABLE table_15451122_2 (assembled VARCHAR, first_member VARCHAR)
### question: Name the school/club team when season is 2009-2011 ### answer: SELECT school_club_team FROM table_15463188_7 WHERE season = "2009-2011" ### context: CREATE TABLE table_15463188_7 (school_club_team VARCHAR, season VARCHAR)
### question: Name the name for san beda ### answer: SELECT name FROM table_15463188_7 WHERE school_club_team = "San Beda" ### context: CREATE TABLE table_15463188_7 (name VARCHAR, school_club_team VARCHAR)
### question: Name the position for san beda ### answer: SELECT position FROM table_15463188_7 WHERE school_club_team = "San Beda" ### context: CREATE TABLE table_15463188_7 (position VARCHAR, school_club_team VARCHAR)
### question: Name the name of the state ### answer: SELECT name FROM table_15463188_7 WHERE school_club_team = "State" ### context: CREATE TABLE table_15463188_7 (name VARCHAR, school_club_team VARCHAR)
### question: Namethe school team for season 2008 ### answer: SELECT school_club_team FROM table_15463188_7 WHERE season = "2008" ### context: CREATE TABLE table_15463188_7 (school_club_team VARCHAR, season VARCHAR)
### question: Nametheh school team for norman gonzales ### answer: SELECT school_club_team FROM table_15463188_7 WHERE name = "Norman Gonzales" ### context: CREATE TABLE table_15463188_7 (school_club_team VARCHAR, name VARCHAR)
### question: Name the points for pontrhydyfen rfc ### answer: SELECT points FROM table_15467476_2 WHERE club = "Pontrhydyfen RFC" ### context: CREATE TABLE table_15467476_2 (points VARCHAR, club VARCHAR)
### question: Name the try bonus and tries for 30 ### answer: SELECT try_bonus FROM table_15467476_2 WHERE tries_for = "30" ### context: CREATE TABLE table_15467476_2 (try_bonus VARCHAR, tries_for VARCHAR)
### question: Name the points for where lost is 4 ### answer: SELECT COUNT(points_for) FROM table_15467476_2 WHERE lost = "4" ### context: CREATE TABLE table_15467476_2 (points_for VARCHAR, lost VARCHAR)
### question: Name the number when acquisition via far eastern ### answer: SELECT number FROM table_15463188_16 WHERE acquisition_via = "Far Eastern" ### context: CREATE TABLE table_15463188_16 (number VARCHAR, acquisition_via VARCHAR)
### question: Name the season when the number is 9 ### answer: SELECT season FROM table_15463188_16 WHERE number = "9" ### context: CREATE TABLE table_15463188_16 (season VARCHAR, number VARCHAR)
### question: Name the name for visayas ### answer: SELECT name FROM table_15463188_16 WHERE school_club_team = "Visayas" ### context: CREATE TABLE table_15463188_16 (name VARCHAR, school_club_team VARCHAR)
### question: Name the school/club team for 9 ### answer: SELECT school_club_team FROM table_15463188_16 WHERE number = "9" ### context: CREATE TABLE table_15463188_16 (school_club_team VARCHAR, number VARCHAR)
### question: What are all the schools that use the colors maroon and white ### answer: SELECT school FROM table_15475116_1 WHERE colors = "Maroon and White" ### context: CREATE TABLE table_15475116_1 (school VARCHAR, colors VARCHAR)
### question: Middletown High School uses which colors ### answer: SELECT colors FROM table_15475116_1 WHERE school = "Middletown High school" ### context: CREATE TABLE table_15475116_1 (colors VARCHAR, school VARCHAR)
### question: What league does the team with the nickname Cavaliers belong to ### answer: SELECT league FROM table_15475116_1 WHERE nickname = "Cavaliers" ### context: CREATE TABLE table_15475116_1 (league VARCHAR, nickname VARCHAR)
### question: In what division will you find the team nicknamed the Silver Eagles ### answer: SELECT division FROM table_15475116_1 WHERE nickname = "Silver Eagles" ### context: CREATE TABLE table_15475116_1 (division VARCHAR, nickname VARCHAR)
### question: What league does Delaware Military Academy belong to ### answer: SELECT league FROM table_15475116_1 WHERE school = "Delaware Military Academy" ### context: CREATE TABLE table_15475116_1 (league VARCHAR, school VARCHAR)
### question: Name the number of districts for december 1799 ### answer: SELECT COUNT(district) FROM table_15572443_1 WHERE election_date = "December 1799" ### context: CREATE TABLE table_15572443_1 (district VARCHAR, election_date VARCHAR)
### question: Name the vacator for took seat being january 29, 1813 ### answer: SELECT vacator FROM table_15572443_1 WHERE took_seat = "January 29, 1813" ### context: CREATE TABLE table_15572443_1 (vacator VARCHAR, took_seat VARCHAR)
### question: Name the most number of s eva ### answer: SELECT MAX(number_of_s_eva) FROM table_1558077_8 ### context: CREATE TABLE table_1558077_8 (number_of_s_eva INTEGER)
### question: Name the total number of luna blastoff date for apollo 11 ### answer: SELECT COUNT(lunar_blastoff_date) FROM table_1558077_8 WHERE mission_name = "Apollo 11" ### context: CREATE TABLE table_1558077_8 (lunar_blastoff_date VARCHAR, mission_name VARCHAR)
### question: Name the mission name for 21 november 1969 ### answer: SELECT mission_name FROM table_1558077_8 WHERE lunar_blastoff_date = "21 November 1969" ### context: CREATE TABLE table_1558077_8 (mission_name VARCHAR, lunar_blastoff_date VARCHAR)
### question: Name the lunar landing site for 19 november 1969 ### answer: SELECT lunar_landing_site FROM table_1558077_8 WHERE lunar_landing_date = "19 November 1969" ### context: CREATE TABLE table_1558077_8 (lunar_landing_site VARCHAR, lunar_landing_date VARCHAR)
### question: Name the mission name for ocean of storms ### answer: SELECT mission_name FROM table_1558077_8 WHERE lunar_landing_site = "Ocean of Storms" ### context: CREATE TABLE table_1558077_8 (mission_name VARCHAR, lunar_landing_site VARCHAR)
### question: What award did team 679 win? ### answer: SELECT award_name FROM table_15584199_2 WHERE team_number = 679 ### context: CREATE TABLE table_15584199_2 (award_name VARCHAR, team_number VARCHAR)
### question: Which number belonged to the school team from Arizona? ### answer: SELECT no FROM table_15621965_17 WHERE school_club_team = "Arizona" ### context: CREATE TABLE table_15621965_17 (no VARCHAR, school_club_team VARCHAR)
### question: What is the latest number of the guard position from the Wake Forest school team? ### answer: SELECT MAX(no) FROM table_15621965_17 WHERE position = "Guard" AND school_club_team = "Wake Forest" ### context: CREATE TABLE table_15621965_17 (no INTEGER, position VARCHAR, school_club_team VARCHAR)
### question: List all years in Orlando where Jeryl Sasser was a player. ### answer: SELECT years_in_orlando FROM table_15621965_17 WHERE player = "Jeryl Sasser" ### context: CREATE TABLE table_15621965_17 (years_in_orlando VARCHAR, player VARCHAR)
### question: WHAT WAS THE NUMBER OF THE ONLY FORWARD-CENTER TO MAKE THE ROSTER? ### answer: SELECT MIN(no) FROM table_15621965_18 WHERE position = "Forward-Center" ### context: CREATE TABLE table_15621965_18 (no INTEGER, position VARCHAR)
### question: WHAT WAS THE JERSEY NUMBER OF THE ROSTER PLAYER FROM OKLAHOMA STATE WHO PLAYED GUARD? ### answer: SELECT no FROM table_15621965_18 WHERE position = "Guard" AND school_club_team = "Oklahoma State" ### context: CREATE TABLE table_15621965_18 (no VARCHAR, position VARCHAR, school_club_team VARCHAR)
### question: WHO IS THE PLAYER(S) ON THE ROSTER FROM SCHOOL/CLUB TEAM ARIZONA? ### answer: SELECT player FROM table_15621965_18 WHERE school_club_team = "Arizona" ### context: CREATE TABLE table_15621965_18 (player VARCHAR, school_club_team VARCHAR)
### question: What is the fleet size of the airline which has a callsign of cool red? ### answer: SELECT MIN(fleet_size) FROM table_15637071_1 WHERE callsign = "COOL RED" ### context: CREATE TABLE table_15637071_1 (fleet_size INTEGER, callsign VARCHAR)
### question: How large is the fleet size of the airline with the IATA code of 5j? ### answer: SELECT COUNT(fleet_size) FROM table_15637071_1 WHERE iata = "5J" ### context: CREATE TABLE table_15637071_1 (fleet_size VARCHAR, iata VARCHAR)
### question: Which year did the Angeles City based airline begin operations? ### answer: SELECT commenced_operations FROM table_15637071_1 WHERE headquarters = "Angeles City" ### context: CREATE TABLE table_15637071_1 (commenced_operations VARCHAR, headquarters VARCHAR)
### question: When did the oldest airline start operations? ### answer: SELECT MIN(commenced_operations) FROM table_15637071_1 ### context: CREATE TABLE table_15637071_1 (commenced_operations INTEGER)
### question: Where is the headquarters of the airline which has the ICAO code of AAU? ### answer: SELECT headquarters FROM table_15637071_1 WHERE icao = "AAU" ### context: CREATE TABLE table_15637071_1 (headquarters VARCHAR, icao VARCHAR)
### question: How much uranium did Russia use in 2006 to 2008? ### answer: SELECT uranium_required_2006_08 FROM table_15624586_2 WHERE country = "Russia" ### context: CREATE TABLE table_15624586_2 (uranium_required_2006_08 VARCHAR, country VARCHAR)
### question: Which country mines 24.0% of the world demand of uranium? ### answer: SELECT indigenous_mining_production_2006 FROM table_15624586_2 WHERE _percentage_of_world_demand = "24.0%" ### context: CREATE TABLE table_15624586_2 (indigenous_mining_production_2006 VARCHAR, _percentage_of_world_demand VARCHAR)
### question: What is the deficit (-surplus) of the country who use 5.2% of the world demand of uranium? ### answer: SELECT deficit___surplus_ FROM table_15624586_2 WHERE _percentage_of_world_demand = "5.2%" ### context: CREATE TABLE table_15624586_2 (deficit___surplus_ VARCHAR, _percentage_of_world_demand VARCHAR)
### question: What is the indigenous mining production of the country that uses 3.4% of the world demand? ### answer: SELECT indigenous_mining_production_2006 FROM table_15624586_2 WHERE _percentage_of_world_demand = "3.4%" ### context: CREATE TABLE table_15624586_2 (indigenous_mining_production_2006 VARCHAR, _percentage_of_world_demand VARCHAR)
### question: What is the deficit (-surplus) of France? ### answer: SELECT deficit___surplus_ FROM table_15624586_2 WHERE country = "France" ### context: CREATE TABLE table_15624586_2 (deficit___surplus_ VARCHAR, country VARCHAR)
### question: Name the pictorials when the interview subject is steve jobs ### answer: SELECT pictorials FROM table_1566848_6 WHERE interview_subject = "Steve Jobs" ### context: CREATE TABLE table_1566848_6 (pictorials VARCHAR, interview_subject VARCHAR)
### question: Name the 20 questions when centerfold model is cherie witter ### answer: SELECT 20 AS _questions FROM table_1566848_6 WHERE centerfold_model = "Cherie Witter" ### context: CREATE TABLE table_1566848_6 (centerfold_model VARCHAR)
### question: Name the number of pictorials for 5-85 ### answer: SELECT COUNT(pictorials) FROM table_1566848_6 WHERE date = "5-85" ### context: CREATE TABLE table_1566848_6 (pictorials VARCHAR, date VARCHAR)
### question: Name the centerfold model when interview subject is steve jobs ### answer: SELECT centerfold_model FROM table_1566848_6 WHERE interview_subject = "Steve Jobs" ### context: CREATE TABLE table_1566848_6 (centerfold_model VARCHAR, interview_subject VARCHAR)
### question: Which date contained Aubrey O'Day as the cover model? ### answer: SELECT date FROM table_1566852_10 WHERE cover_model = "Aubrey O'Day" ### context: CREATE TABLE table_1566852_10 (date VARCHAR, cover_model VARCHAR)
### question: Who were the cover models in the edition that included Benicio Del Toro as the interview subject? ### answer: SELECT cover_model FROM table_1566852_10 WHERE interview_subject = "Benicio del Toro" ### context: CREATE TABLE table_1566852_10 (cover_model VARCHAR, interview_subject VARCHAR)
### question: How many cover models were on the edition that featured Jennifer Pershing as the centerfold? ### answer: SELECT COUNT(cover_model) FROM table_1566852_10 WHERE centerfold_model = "Jennifer Pershing" ### context: CREATE TABLE table_1566852_10 (cover_model VARCHAR, centerfold_model VARCHAR)
### question: What season number corresponds to series number 102? ### answer: SELECT MAX(season__number) FROM table_15717093_1 WHERE series__number = 102 ### context: CREATE TABLE table_15717093_1 (season__number INTEGER, series__number VARCHAR)
### question: What was the title when there were 14.39 million viewers? ### answer: SELECT title FROM table_15717093_1 WHERE us_viewers__millions_ = "14.39" ### context: CREATE TABLE table_15717093_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
### question: Who was the writer when there were 15.85 million US viewers? ### answer: SELECT written_by FROM table_15717093_1 WHERE us_viewers__millions_ = "15.85" ### context: CREATE TABLE table_15717093_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
### question: How many years did notre dame participate? ### answer: SELECT MAX(years_participated) FROM table_1571238_2 WHERE team = "Notre Dame" ### context: CREATE TABLE table_1571238_2 (years_participated INTEGER, team VARCHAR)
### question: When colgate is the team how many times did they place fourth? ### answer: SELECT COUNT(fourth_place) FROM table_1571238_2 WHERE team = "Colgate" ### context: CREATE TABLE table_1571238_2 (fourth_place VARCHAR, team VARCHAR)
### question: When the team is lake superior state how many times did they place fourth? ### answer: SELECT MIN(fourth_place) FROM table_1571238_2 WHERE team = "Lake Superior State" ### context: CREATE TABLE table_1571238_2 (fourth_place INTEGER, team VARCHAR)
### question: When the team is yale what is max amount of times they placed fourth? ### answer: SELECT MAX(fourth_place) FROM table_1571238_2 WHERE team = "Yale" ### context: CREATE TABLE table_1571238_2 (fourth_place INTEGER, team VARCHAR)
### question: When the team is Toronto how many times did they place third? ### answer: SELECT COUNT(third_place) FROM table_1571238_2 WHERE team = "Toronto" ### context: CREATE TABLE table_1571238_2 (third_place VARCHAR, team VARCHAR)
### question: What is the current streak against TCU? ### answer: SELECT current_streak FROM table_15740666_4 WHERE kansas_state_vs = "TCU" ### context: CREATE TABLE table_15740666_4 (current_streak VARCHAR, kansas_state_vs VARCHAR)
### question: What is the at Manhattan record against TCU? ### answer: SELECT at_manhattan FROM table_15740666_4 WHERE kansas_state_vs = "TCU" ### context: CREATE TABLE table_15740666_4 (at_manhattan VARCHAR, kansas_state_vs VARCHAR)
### question: What is the airdate when the director is george spenton-foster ### answer: SELECT airdate FROM table_15739098_1 WHERE director = "George Spenton-Foster" ### context: CREATE TABLE table_15739098_1 (airdate VARCHAR, director VARCHAR)
### question: Name the msot episode that was adapted by leon griffiths ### answer: SELECT MAX(episode) FROM table_15739098_1 WHERE adapted_by = "Leon Griffiths" ### context: CREATE TABLE table_15739098_1 (episode INTEGER, adapted_by VARCHAR)
### question: Name the number of episodes for alan nourse ### answer: SELECT COUNT(episode) FROM table_15739098_1 WHERE story = "Alan Nourse" ### context: CREATE TABLE table_15739098_1 (episode VARCHAR, story VARCHAR)
### question: Which viewers have the language of troff (typesetter runoff) , groff (gnu runoff)? ### answer: SELECT viewer FROM table_1574968_1 WHERE language = "troff (typesetter runoff) , groff (GNU runoff)" ### context: CREATE TABLE table_1574968_1 (viewer VARCHAR, language VARCHAR)
### question: Who is the creator when the view happens to gddm, afp viewer? ### answer: SELECT creator FROM table_1574968_1 WHERE viewer = "GDDM, AFP viewer" ### context: CREATE TABLE table_1574968_1 (creator VARCHAR, viewer VARCHAR)
### question: WHERE THE THEME WAS "YEAR THEY WERE BORN," WHAT THE TOTAL NUMBER OF RESULTS? ### answer: SELECT COUNT(result) FROM table_15778392_1 WHERE theme = "Year They Were Born" ### context: CREATE TABLE table_15778392_1 (result VARCHAR, theme VARCHAR)
### question: WHAT IS THE RESULT FOR THE SONG WHERE THE ORIGINAL ARTIST IS BETTY EVERETT? ### answer: SELECT result FROM table_15778392_1 WHERE original_artist = "Betty Everett" ### context: CREATE TABLE table_15778392_1 (result VARCHAR, original_artist VARCHAR)
### question: WHAT WAS HER SONG CHOICE WHEN THE WEEK WAS TOP 10? ### answer: SELECT song_choice FROM table_15778392_1 WHERE week__number = "Top 10" ### context: CREATE TABLE table_15778392_1 (song_choice VARCHAR, week__number VARCHAR)
### question: WHERE THE WEEK NUMBER WAS TOP 8, WHAT WAS THE THEME? ### answer: SELECT theme FROM table_15778392_1 WHERE week__number = "Top 8" ### context: CREATE TABLE table_15778392_1 (theme VARCHAR, week__number VARCHAR)
### question: What is the location and what is the attendance of game 38? ### answer: SELECT location_attendance FROM table_15780049_6 WHERE game = 38 ### context: CREATE TABLE table_15780049_6 (location_attendance VARCHAR, game VARCHAR)
### question: What was the games score on January 11? ### answer: SELECT score FROM table_15780049_6 WHERE date = "January 11" ### context: CREATE TABLE table_15780049_6 (score VARCHAR, date VARCHAR)
### question: What is the score of game 33? ### answer: SELECT score FROM table_15780049_6 WHERE game = 33 ### context: CREATE TABLE table_15780049_6 (score VARCHAR, game VARCHAR)
### question: Who had the most assist when the opponent was Cleveland? ### answer: SELECT high_assists FROM table_15780049_6 WHERE team = "Cleveland" ### context: CREATE TABLE table_15780049_6 (high_assists VARCHAR, team VARCHAR)
### question: What was the score of the game played on January 19? ### answer: SELECT score FROM table_15780049_6 WHERE date = "January 19" ### context: CREATE TABLE table_15780049_6 (score VARCHAR, date VARCHAR)
### question: What is the Raptors' record against New Jersey? ### answer: SELECT record FROM table_15780718_9 WHERE team = "New Jersey" ### context: CREATE TABLE table_15780718_9 (record VARCHAR, team VARCHAR)
### question: Name for the high rebounds when score is w 105–91 (ot) ### answer: SELECT high_rebounds FROM table_15780718_6 WHERE score = "W 105–91 (OT)" ### context: CREATE TABLE table_15780718_6 (high_rebounds VARCHAR, score VARCHAR)
### question: What is the order number for the theme of Mariah Carey? ### answer: SELECT order__number FROM table_15796100_1 WHERE theme = "Mariah Carey" ### context: CREATE TABLE table_15796100_1 (order__number VARCHAR, theme VARCHAR)
### question: Who is the original artist for the theme "Year they were born?" ### answer: SELECT original_artist FROM table_15796100_1 WHERE theme = "Year They Were Born" ### context: CREATE TABLE table_15796100_1 (original_artist VARCHAR, theme VARCHAR)
### question: What theme name has the original artist of Dolly Parton? ### answer: SELECT theme FROM table_15796100_1 WHERE original_artist = "Dolly Parton" ### context: CREATE TABLE table_15796100_1 (theme VARCHAR, original_artist VARCHAR)
### question: How many themes have the original artist of Judy Garland? ### answer: SELECT COUNT(theme) FROM table_15796100_1 WHERE original_artist = "Judy Garland" ### context: CREATE TABLE table_15796100_1 (theme VARCHAR, original_artist VARCHAR)
### question: What is the original airdate when the season number is 4? ### answer: SELECT original_air_date FROM table_15824796_5 WHERE season__number = 4 ### context: CREATE TABLE table_15824796_5 (original_air_date VARCHAR, season__number VARCHAR)
### question: What is the smallest number of European Parliament sets when the international affiliation is global greens, egp? ### answer: SELECT MIN(european_parliament_seats) FROM table_158282_1 WHERE international_affiliation = "Global Greens, EGP" ### context: CREATE TABLE table_158282_1 (european_parliament_seats INTEGER, international_affiliation VARCHAR)
### question: How many categories of Senate Seats does Emile Roemer have? ### answer: SELECT COUNT(senate_seats) FROM table_158282_1 WHERE political_leader = "Emile Roemer" ### context: CREATE TABLE table_158282_1 (senate_seats VARCHAR, political_leader VARCHAR)
### question: Name the least road wins ### answer: SELECT MIN(road_wins) FROM table_1585112_2 ### context: CREATE TABLE table_1585112_2 (road_wins INTEGER)
### question: Name the maximum mum l is less than 6.0 ### answer: SELECT MAX(num) FROM table_1585112_2 WHERE l < 6.0 ### context: CREATE TABLE table_1585112_2 (num INTEGER, l INTEGER)
### question: What is the highest value for race? ### answer: SELECT MAX(races) FROM table_15852257_1 ### context: CREATE TABLE table_15852257_1 (races INTEGER)
### question: Which podiums have a final placing of 10th? ### answer: SELECT podiums FROM table_15852257_1 WHERE final_placing = "10th" ### context: CREATE TABLE table_15852257_1 (podiums VARCHAR, final_placing VARCHAR)