question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Which award took place after 2009?
CREATE TABLE table_name_88 (award VARCHAR, year INTEGER)
SELECT award FROM table_name_88 WHERE year > 2009
What year had the category of best international newcomer?
CREATE TABLE table_name_53 (year VARCHAR, category VARCHAR)
SELECT COUNT(year) FROM table_name_53 WHERE category = "best international newcomer"
Which Player has an Opposition of clare?
CREATE TABLE table_name_11 (player VARCHAR, opposition VARCHAR)
SELECT player FROM table_name_11 WHERE opposition = "clare"
Which Total has a Player of matt ruth?
CREATE TABLE table_name_40 (total VARCHAR, player VARCHAR)
SELECT total FROM table_name_40 WHERE player = "matt ruth"
Which Rank has a Player of matt ruth?
CREATE TABLE table_name_62 (rank INTEGER, player VARCHAR)
SELECT SUM(rank) FROM table_name_62 WHERE player = "matt ruth"
How many byes were there recorded with 0 draws?
CREATE TABLE table_name_27 (byes INTEGER, draws INTEGER)
SELECT SUM(byes) FROM table_name_27 WHERE draws < 0
How many draws occured with a record of 10 losses, and 6 wins?
CREATE TABLE table_name_38 (draws VARCHAR, losses VARCHAR, wins VARCHAR)
SELECT COUNT(draws) FROM table_name_38 WHERE losses = 10 AND wins > 6
How many byes were there with an Against of 1655 and more than 10 wins?
CREATE TABLE table_name_51 (byes INTEGER, against VARCHAR, wins VARCHAR)
SELECT MIN(byes) FROM table_name_51 WHERE against = 1655 AND wins > 10
What was the against were there were less than 3 byes?
CREATE TABLE table_name_93 (against INTEGER, byes INTEGER)
SELECT AVG(against) FROM table_name_93 WHERE byes < 3
What's the general classification of Ignatas Konovalovas when the mountains classification was Stefano Garzelli and points classification was Danilo Di Luca?
CREATE TABLE table_name_36 (general_classification VARCHAR, winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR)
SELECT general_classification FROM table_name_36 WHERE mountains_classification = "stefano garzelli" AND points_classification = "danilo di luca" AND winner = "ignatas konovalovas"
What's the mountains classification when the points classification is Alessandro Petacchi and the general classification is Danilo Di Luca?
CREATE TABLE table_name_26 (mountains_classification VARCHAR, points_classification VARCHAR, general_classification VARCHAR)
SELECT mountains_classification FROM table_name_26 WHERE points_classification = "alessandro petacchi" AND general_classification = "danilo di luca"
Who was the winner of Stage 9 when then general classification was Danilo Di Luca?
CREATE TABLE table_name_60 (winner VARCHAR, general_classification VARCHAR, stage VARCHAR)
SELECT winner FROM table_name_60 WHERE general_classification = "danilo di luca" AND stage = "9"
What is the stage of winner Carlos Sastre when the general classification was Denis Menchov?
CREATE TABLE table_name_21 (stage VARCHAR, general_classification VARCHAR, winner VARCHAR)
SELECT stage FROM table_name_21 WHERE general_classification = "denis menchov" AND winner = "carlos sastre"
What's the points classification of Stage 18 when the general classification was Denis Menchov?
CREATE TABLE table_name_46 (points_classification VARCHAR, general_classification VARCHAR, stage VARCHAR)
SELECT points_classification FROM table_name_46 WHERE general_classification = "denis menchov" AND stage = "18"
What's the mountains classification of winner Carlos Sastre when the general classification is Denis Menchov?
CREATE TABLE table_name_15 (mountains_classification VARCHAR, general_classification VARCHAR, winner VARCHAR)
SELECT mountains_classification FROM table_name_15 WHERE general_classification = "denis menchov" AND winner = "carlos sastre"
Who is team 1 with an agg of 2-5?
CREATE TABLE table_name_1 (team_1 VARCHAR, agg VARCHAR)
SELECT team_1 FROM table_name_1 WHERE agg = "2-5"
Who was the director of the episode Rebel Rabbit?
CREATE TABLE table_name_90 (director VARCHAR, title VARCHAR)
SELECT director FROM table_name_90 WHERE title = "rebel rabbit"
How many years have claudia beni as the artist?
CREATE TABLE table_name_3 (year INTEGER, artist VARCHAR)
SELECT SUM(year) FROM table_name_3 WHERE artist = "claudia beni"
What song has filipa sousa as an artist?
CREATE TABLE table_name_94 (song VARCHAR, artist VARCHAR)
SELECT song FROM table_name_94 WHERE artist = "filipa sousa"
How many rounds have a Surface of wintry asphalt?
CREATE TABLE table_name_24 (round VARCHAR, surface VARCHAR)
SELECT COUNT(round) FROM table_name_24 WHERE surface = "wintry asphalt"
Which Surface has a Support Category of jwrc/pwrc, and a Round larger than 5?
CREATE TABLE table_name_21 (surface VARCHAR, support_category VARCHAR, round VARCHAR)
SELECT surface FROM table_name_21 WHERE support_category = "jwrc/pwrc" AND round > 5
Which Rally Name has a Surface of asphalt and gravel?
CREATE TABLE table_name_17 (rally_name VARCHAR, surface VARCHAR)
SELECT rally_name FROM table_name_17 WHERE surface = "asphalt and gravel"
Which dates have a Rally HQ of kingscliff?
CREATE TABLE table_name_6 (dates VARCHAR, rally_hq VARCHAR)
SELECT dates FROM table_name_6 WHERE rally_hq = "kingscliff"
Which Round has a Rally HQ of salou?
CREATE TABLE table_name_80 (round INTEGER, rally_hq VARCHAR)
SELECT MIN(round) FROM table_name_80 WHERE rally_hq = "salou"
Who were the Opponents on December 18, 2005?
CREATE TABLE table_name_31 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_31 WHERE date = "december 18, 2005"
Which Coach has a Runner-up of northeastern and a Score of 6–3?
CREATE TABLE table_name_82 (coach VARCHAR, runner_up VARCHAR, score VARCHAR)
SELECT coach FROM table_name_82 WHERE runner_up = "northeastern" AND score = "6–3"
Name the Score of the Year larger than 2004 and a Runner-up of northeastern?
CREATE TABLE table_name_43 (score VARCHAR, year VARCHAR, runner_up VARCHAR)
SELECT score FROM table_name_43 WHERE year > 2004 AND runner_up = "northeastern"
Name the Runner-up of a Year in 1963?
CREATE TABLE table_name_18 (runner_up VARCHAR, year VARCHAR)
SELECT runner_up FROM table_name_18 WHERE year = 1963
Name the highest Year with a Score of 4–1?
CREATE TABLE table_name_71 (year INTEGER, score VARCHAR)
SELECT MAX(year) FROM table_name_71 WHERE score = "4–1"
Which Start has a Qual of 207.590?
CREATE TABLE table_name_55 (start VARCHAR, qual VARCHAR)
SELECT start FROM table_name_55 WHERE qual = "207.590"
Which Year has a Rank of 25?
CREATE TABLE table_name_64 (year VARCHAR, rank VARCHAR)
SELECT year FROM table_name_64 WHERE rank = "25"
Which Laps have a Finish of 15?
CREATE TABLE table_name_30 (laps VARCHAR, finish VARCHAR)
SELECT laps FROM table_name_30 WHERE finish = "15"
Which Qual has Laps smaller than 195, and a Rank of 25?
CREATE TABLE table_name_74 (qual VARCHAR, laps VARCHAR, rank VARCHAR)
SELECT qual FROM table_name_74 WHERE laps < 195 AND rank = "25"
Which Rank has a Finish of 8?
CREATE TABLE table_name_11 (rank VARCHAR, finish VARCHAR)
SELECT rank FROM table_name_11 WHERE finish = "8"
Which Rank has a Heat larger than 7?
CREATE TABLE table_name_58 (rank INTEGER, heat INTEGER)
SELECT MAX(rank) FROM table_name_58 WHERE heat > 7
Which Heat has a Nation of australia, and a Rank larger than 7?
CREATE TABLE table_name_36 (heat INTEGER, nation VARCHAR, rank VARCHAR)
SELECT MAX(heat) FROM table_name_36 WHERE nation = "australia" AND rank > 7
What is the average number of podiums for drivers with under 12 finishes and under 1 start?
CREATE TABLE table_name_24 (podiums INTEGER, finishes VARCHAR, starts VARCHAR)
SELECT AVG(podiums) FROM table_name_24 WHERE finishes < 12 AND starts < 1
What is the number of wins associated with 1 point, more than 1 start, and under 7 finishes?
CREATE TABLE table_name_68 (wins VARCHAR, points VARCHAR, finishes VARCHAR, starts VARCHAR)
SELECT wins FROM table_name_68 WHERE finishes < 7 AND starts > 1 AND points = 1
What is the number of finishes associated with 13 starts, more than 169 points, and 96 stage wins?
CREATE TABLE table_name_12 (finishes VARCHAR, stage_wins VARCHAR, starts VARCHAR, points VARCHAR)
SELECT finishes FROM table_name_12 WHERE starts = 13 AND points > 169 AND stage_wins = 96
Who directed the episode with production code 40811-005?
CREATE TABLE table_name_7 (director VARCHAR, prod_code VARCHAR)
SELECT director FROM table_name_7 WHERE prod_code = "40811-005"
What is the title of the episode with production code 40811-002?
CREATE TABLE table_name_87 (title VARCHAR, prod_code VARCHAR)
SELECT title FROM table_name_87 WHERE prod_code = "40811-002"
what is the tournament when the score is 2-6, 4-6?
CREATE TABLE table_name_1 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_1 WHERE score = "2-6, 4-6"
what is the outcome on april 24, 1988?
CREATE TABLE table_name_20 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_20 WHERE date = "april 24, 1988"
What is the date when the tournament is san diego and the opponent is ann grossman?
CREATE TABLE table_name_92 (date VARCHAR, tournament VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_92 WHERE tournament = "san diego" AND opponent = "ann grossman"
what is the outcome when the tournament is san diego and the opponent is ann grossman?
CREATE TABLE table_name_40 (outcome VARCHAR, tournament VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_name_40 WHERE tournament = "san diego" AND opponent = "ann grossman"
what is the score when the opponent is ann grossman?
CREATE TABLE table_name_79 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_79 WHERE opponent = "ann grossman"
what is the outcome when the tournament is tokyo?
CREATE TABLE table_name_83 (outcome VARCHAR, tournament VARCHAR)
SELECT outcome FROM table_name_83 WHERE tournament = "tokyo"
In what Year was the 32nd Ceremony with winner William A. Horning in the Film North by Northwest?
CREATE TABLE table_name_87 (year VARCHAR, film VARCHAR, ceremony VARCHAR, name VARCHAR)
SELECT year FROM table_name_87 WHERE ceremony = "32nd" AND name = "william a. horning" AND film = "north by northwest"
In what Year was the Film Your National Gallery winner?
CREATE TABLE table_name_70 (year VARCHAR, film VARCHAR)
SELECT year FROM table_name_70 WHERE film = "your national gallery"
What is the Film with winner Jerome Kern in the 19th Ceremony?
CREATE TABLE table_name_47 (film VARCHAR, ceremony VARCHAR, name VARCHAR)
SELECT film FROM table_name_47 WHERE ceremony = "19th" AND name = "jerome kern"
What is the Academy Award for the Film Educating Peter?
CREATE TABLE table_name_34 (academy_award VARCHAR, film VARCHAR)
SELECT academy_award FROM table_name_34 WHERE film = "educating peter"
Which Number of electorates (2009) has 188 Constituents?
CREATE TABLE table_name_93 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR)
SELECT number_of_electorates__2009_ FROM table_name_93 WHERE constituency_number = "188"
Who is the runner(s)-up with a winning score of βˆ’5 (72-71-68=211)?
CREATE TABLE table_name_48 (runner_s__up VARCHAR, winning_score VARCHAR)
SELECT runner_s__up FROM table_name_48 WHERE winning_score = βˆ’5(72 - 71 - 68 = 211)
What date was there a playoff on the margin of victory during the Shirley Englehorn Invitational?
CREATE TABLE table_name_36 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_36 WHERE margin_of_victory = "playoff" AND tournament = "shirley englehorn invitational"
Who is the runner(s)-up for the Lady Carling Open with 3 strokes margin of victory?
CREATE TABLE table_name_10 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
SELECT runner_s__up FROM table_name_10 WHERE margin_of_victory = "3 strokes" AND tournament = "lady carling open"
What is the attendance in a week larter than 4, on December 6, 1992?
CREATE TABLE table_name_80 (attendance VARCHAR, week VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_80 WHERE week > 4 AND date = "december 6, 1992"
What week has a Date of October 4, 1992?
CREATE TABLE table_name_78 (week INTEGER, date VARCHAR)
SELECT SUM(week) FROM table_name_78 WHERE date = "october 4, 1992"
What is the date when the result was l 37-3?
CREATE TABLE table_name_77 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_77 WHERE result = "l 37-3"
What is the attendance when the opponent was the Houston Oilers?
CREATE TABLE table_name_47 (attendance VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_47 WHERE opponent = "houston oilers"
Which Lane has a Reaction Time smaller than 0.199, and a Country of united states, and a Name of muna lee, and a Time larger than 22.01?
CREATE TABLE table_name_3 (lane INTEGER, time VARCHAR, name VARCHAR, reaction_time VARCHAR, country VARCHAR)
SELECT MAX(lane) FROM table_name_3 WHERE reaction_time < 0.199 AND country = "united states" AND name = "muna lee" AND time > 22.01
How many Lanes have a Country of jamaica, and a Name of kerron stewart, and a Time larger than 22?
CREATE TABLE table_name_46 (lane INTEGER, time VARCHAR, country VARCHAR, name VARCHAR)
SELECT SUM(lane) FROM table_name_46 WHERE country = "jamaica" AND name = "kerron stewart" AND time > 22
How many Times have a Reaction Time larger than 0.17500000000000002, and a Lane of 3?
CREATE TABLE table_name_62 (time VARCHAR, reaction_time VARCHAR, lane VARCHAR)
SELECT COUNT(time) FROM table_name_62 WHERE reaction_time > 0.17500000000000002 AND lane = 3
Which Lane has a Country of united states, and a Time smaller than 22.01, and a Reaction Time smaller than 0.193?
CREATE TABLE table_name_95 (lane INTEGER, reaction_time VARCHAR, country VARCHAR, time VARCHAR)
SELECT MIN(lane) FROM table_name_95 WHERE country = "united states" AND time < 22.01 AND reaction_time < 0.193
What's the ladder position when team is less than 10 and the Finals qualifications were DNQ?
CREATE TABLE table_name_75 (final_ladder_position VARCHAR, finals_qualification VARCHAR, teams VARCHAR)
SELECT final_ladder_position FROM table_name_75 WHERE finals_qualification = "dnq" AND teams < 10
What is the total teams during the 2012-13 season?
CREATE TABLE table_name_19 (teams INTEGER, season VARCHAR)
SELECT SUM(teams) FROM table_name_19 WHERE season = "2012-13"
What's the ACL qualification when the minor ladder position is 5th and the finals qualifications were DNQ?
CREATE TABLE table_name_11 (acl_qualification VARCHAR, finals_qualification VARCHAR, minor_ladder_position VARCHAR)
SELECT acl_qualification FROM table_name_11 WHERE finals_qualification = "dnq" AND minor_ladder_position = "5th"
What's the finals qualification during the 2009-10 season?
CREATE TABLE table_name_88 (finals_qualification VARCHAR, season VARCHAR)
SELECT finals_qualification FROM table_name_88 WHERE season = "2009-10"
Name the the average Lib Dem with Conservative smaller than 0?
CREATE TABLE table_name_87 (lib_dem INTEGER, conservative INTEGER)
SELECT AVG(lib_dem) FROM table_name_87 WHERE conservative < 0
Name the lowest Green with a Year larger than 2010, and a Labour larger than 29? Question 3
CREATE TABLE table_name_82 (green INTEGER, year VARCHAR, labour VARCHAR)
SELECT MIN(green) FROM table_name_82 WHERE year > 2010 AND labour > 29
Name the average Independent with a Green larger than 7, and a Conservative smaller than 0?
CREATE TABLE table_name_35 (independent INTEGER, green VARCHAR, conservative VARCHAR)
SELECT AVG(independent) FROM table_name_35 WHERE green > 7 AND conservative < 0
Name the highest Labour with Lib Dem larger than 21?
CREATE TABLE table_name_86 (labour INTEGER, lib_dem INTEGER)
SELECT MAX(labour) FROM table_name_86 WHERE lib_dem > 21
What is the score in the final of the tournament with a clay surface on 18 April 2011?
CREATE TABLE table_name_88 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)
SELECT score_in_the_final FROM table_name_88 WHERE surface = "clay" AND date = "18 april 2011"
What is the score in the final of the tournament with a hard surface?
CREATE TABLE table_name_8 (score_in_the_final VARCHAR, surface VARCHAR)
SELECT score_in_the_final FROM table_name_8 WHERE surface = "hard"
Who is the opponent in the final on 24 November 2008?
CREATE TABLE table_name_43 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_43 WHERE date = "24 november 2008"
What is the Opponent at the game with an Attendance of 64,900 in Week prior to 15 with a Result of L 38-31?
CREATE TABLE table_name_86 (opponent VARCHAR, result VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_86 WHERE week < 15 AND attendance = "64,900" AND result = "l 38-31"
What is the Week of the game with an Attendance of 64,900 and a Result of L 34-13?
CREATE TABLE table_name_83 (week INTEGER, attendance VARCHAR, result VARCHAR)
SELECT MAX(week) FROM table_name_83 WHERE attendance = "64,900" AND result = "l 34-13"
What is the Week of the game against Minnesota Vikings?
CREATE TABLE table_name_10 (week INTEGER, opponent VARCHAR)
SELECT MAX(week) FROM table_name_10 WHERE opponent = "minnesota vikings"
What is the Week of the game against Seattle Seahawks?
CREATE TABLE table_name_30 (week INTEGER, opponent VARCHAR)
SELECT AVG(week) FROM table_name_30 WHERE opponent = "seattle seahawks"
Which Total Goals have an FA Cup Goals of 0, and an FA Cup Apps of 3, and a Position of fw?
CREATE TABLE table_name_92 (total_goals INTEGER, position VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)
SELECT AVG(total_goals) FROM table_name_92 WHERE fa_cup_goals = 0 AND fa_cup_apps = "3" AND position = "fw"
What year was Caroline Medina Miss Fire (3rd Runner-up)?
CREATE TABLE table_name_21 (year INTEGER, miss_fire__3rd_runner_up_ VARCHAR)
SELECT AVG(year) FROM table_name_21 WHERE miss_fire__3rd_runner_up_ = "caroline medina"
Who won Miss Air (1st Runner-up) when Catherine Untalan was Miss Water (2nd Runner-up) earlier than 2007?
CREATE TABLE table_name_35 (miss_air__1st_runner_up_ VARCHAR, year VARCHAR, miss_water__2nd_runner_up_ VARCHAR)
SELECT miss_air__1st_runner_up_ FROM table_name_35 WHERE year < 2007 AND miss_water__2nd_runner_up_ = "catherine untalan"
what is the name when the sr no is less than 74 and floors is more than 36?
CREATE TABLE table_name_61 (name VARCHAR, sr_no VARCHAR, floors VARCHAR)
SELECT name FROM table_name_61 WHERE sr_no < 74 AND floors > 36
how many times is the building type residential and the locale yashodham?
CREATE TABLE table_name_22 (sr_no VARCHAR, building_type VARCHAR, locale VARCHAR)
SELECT COUNT(sr_no) FROM table_name_22 WHERE building_type = "residential" AND locale = "yashodham"
what is the least floors when the building type is residential and the sr no is 8?
CREATE TABLE table_name_79 (floors INTEGER, building_type VARCHAR, sr_no VARCHAR)
SELECT MIN(floors) FROM table_name_79 WHERE building_type = "residential" AND sr_no = 8
what is the height when the locale is nepean sea road, floors is more than 30 and sr no is 58?
CREATE TABLE table_name_99 (height VARCHAR, sr_no VARCHAR, locale VARCHAR, floors VARCHAR)
SELECT height FROM table_name_99 WHERE locale = "nepean sea road" AND floors > 30 AND sr_no = 58
what is the name that had 46 floors?
CREATE TABLE table_name_47 (name VARCHAR, floors VARCHAR)
SELECT name FROM table_name_47 WHERE floors = 46
Which player from A-League 39 (110) has the highest games per goal?
CREATE TABLE table_name_34 (games_per_goal INTEGER, a_league VARCHAR)
SELECT MAX(games_per_goal) FROM table_name_34 WHERE a_league = "39 (110)"
What player had a finals score of 0 (10)?
CREATE TABLE table_name_5 (name VARCHAR, finals VARCHAR)
SELECT name FROM table_name_5 WHERE finals = "0 (10)"
Which player has a total of 8 (24)?
CREATE TABLE table_name_8 (name VARCHAR, total VARCHAR)
SELECT name FROM table_name_8 WHERE total = "8 (24)"
What's the week when the result was W 38-24 and attendance was less than 43,449?
CREATE TABLE table_name_33 (week INTEGER, result VARCHAR, attendance VARCHAR)
SELECT SUM(week) FROM table_name_33 WHERE result = "w 38-24" AND attendance < 43 OFFSET 449
What round had a time of 0:39?
CREATE TABLE table_name_21 (round INTEGER, time VARCHAR)
SELECT MIN(round) FROM table_name_21 WHERE time = "0:39"
What was the location of the competition with a Rank-Final of 1st and a Score-Qualifying under 28.975?
CREATE TABLE table_name_95 (location VARCHAR, rank_final VARCHAR, score_qualifying VARCHAR)
SELECT location FROM table_name_95 WHERE rank_final = "1st" AND score_qualifying < 28.975
What competition had a Rank-Qualifying of 1st and a ball apparatus?
CREATE TABLE table_name_94 (competition_description VARCHAR, rank_qualifying VARCHAR, apparatus VARCHAR)
SELECT competition_description FROM table_name_94 WHERE rank_qualifying = "1st" AND apparatus = "ball"
What is the date for the ship Afrika, with nationality Great Britain?
CREATE TABLE table_name_73 (date VARCHAR, nationality VARCHAR, ship VARCHAR)
SELECT date FROM table_name_73 WHERE nationality = "great britain" AND ship = "afrika"
What is the highest tonnage for a ship from Great Britain named Newton Ash?
CREATE TABLE table_name_13 (tonnage INTEGER, nationality VARCHAR, ship VARCHAR)
SELECT MAX(tonnage) FROM table_name_13 WHERE nationality = "great britain" AND ship = "newton ash"
What was the nationality of the ship named Toward?
CREATE TABLE table_name_91 (nationality VARCHAR, ship VARCHAR)
SELECT nationality FROM table_name_91 WHERE ship = "toward"
What was the nationality of the sunk ship named Rinos?
CREATE TABLE table_name_52 (nationality VARCHAR, fate VARCHAR, ship VARCHAR)
SELECT nationality FROM table_name_52 WHERE fate = "sunk" AND ship = "rinos"
What is the Comp of the Shooter with a Score of 489.5?
CREATE TABLE table_name_3 (comp VARCHAR, score VARCHAR)
SELECT comp FROM table_name_3 WHERE score = "489.5"
What is the Date of Shooter New Targets from 1989's record?
CREATE TABLE table_name_39 (date VARCHAR, shooter VARCHAR)
SELECT date FROM table_name_39 WHERE shooter = "new targets from 1989"
What is the average total value for Spain?
CREATE TABLE table_name_58 (total INTEGER, nation VARCHAR)
SELECT AVG(total) FROM table_name_58 WHERE nation = "spain"