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