question
stringlengths
17
201
answer
stringlengths
21
400
context
stringlengths
32
286
What was the result of the 1990 world cup qualifying competition?
SELECT result FROM table_name_55 WHERE competition = "1990 world cup qualifying"
CREATE TABLE table_name_55 (result VARCHAR, competition VARCHAR)
What is the lowest Loss for the player named total that has a long greater than 55?
SELECT MIN(loss) FROM table_name_95 WHERE name = "total" AND long > 55
CREATE TABLE table_name_95 (loss INTEGER, name VARCHAR, long VARCHAR)
Which country had a cad 4011 catalogue #?
SELECT country FROM table_name_66 WHERE catalogue__number = "cad 4011"
CREATE TABLE table_name_66 (country VARCHAR, catalogue__number VARCHAR)
What is the home of the team with Carlos Boozer (27) as the leading scorer?
SELECT home FROM table_name_1 WHERE leading_scorer = "carlos boozer (27)"
CREATE TABLE table_name_1 (home VARCHAR, leading_scorer VARCHAR)
Which is the earliest founded day school to have entered the competition after 1958?
SELECT MIN(founded) FROM table_name_64 WHERE day_boarding = "day" AND year_entered_competition > 1958
CREATE TABLE table_name_64 (founded INTEGER, day_boarding VARCHAR, year_entered_competition VARCHAR)
How many rewards are there for air date October 6, 2005?
SELECT reward FROM table_1893276_2 WHERE air_date = "October 6, 2005"
CREATE TABLE table_1893276_2 (reward VARCHAR, air_date VARCHAR)
What university was Kevan George affiliated with?
SELECT affiliation FROM table_29836557_2 WHERE player = "Kevan George"
CREATE TABLE table_29836557_2 (affiliation VARCHAR, player VARCHAR)
What is the minimum enrollment of the cyclones?
SELECT MIN(enrollment) FROM table_20190834_1 WHERE team_name = "Cyclones"
CREATE TABLE table_20190834_1 (enrollment INTEGER, team_name VARCHAR)
How many caps have a Date of Birth (Age) of 15 july 1981?
SELECT COUNT(caps) FROM table_name_49 WHERE date_of_birth__age_ = "15 july 1981"
CREATE TABLE table_name_49 (caps VARCHAR, date_of_birth__age_ VARCHAR)
What is the country of the player who has a total larger than 300?
SELECT country FROM table_name_70 WHERE total > 300
CREATE TABLE table_name_70 (country VARCHAR, total INTEGER)
Can you tell me the County that has the Year Joined of 1964, and the Location of montezuma?
SELECT county FROM table_name_24 WHERE year_joined = 1964 AND location = "montezuma"
CREATE TABLE table_name_24 (county VARCHAR, year_joined VARCHAR, location VARCHAR)
What was the lowest crowd size when Carlton was the away team.
SELECT MIN(crowd) FROM table_name_65 WHERE away_team = "carlton"
CREATE TABLE table_name_65 (crowd INTEGER, away_team VARCHAR)
What is the urban sub-area with an East Dunbartonshire council area and a population of 19,020?
SELECT urban_sub_area FROM table_name_70 WHERE council_area = "east dunbartonshire" AND population = "19,020"
CREATE TABLE table_name_70 (urban_sub_area VARCHAR, council_area VARCHAR, population VARCHAR)
What is the position of the player from Glades Day School?
SELECT position FROM table_name_59 WHERE school = "glades day school"
CREATE TABLE table_name_59 (position VARCHAR, school VARCHAR)
What Elimination number is listed againt Eliminated by Sonjay Dutt?
SELECT elimination FROM table_name_87 WHERE eliminated_by = "sonjay dutt"
CREATE TABLE table_name_87 (elimination VARCHAR, eliminated_by VARCHAR)
What is the sum of byes for losses larger than 14 for a Portland DFL of westerns?
SELECT SUM(byes) FROM table_name_11 WHERE portland_dfl = "westerns" AND losses > 14
CREATE TABLE table_name_11 (byes INTEGER, portland_dfl VARCHAR, losses VARCHAR)
What is the Venue when the result was 2-1?
SELECT venue FROM table_name_60 WHERE result = "2-1"
CREATE TABLE table_name_60 (venue VARCHAR, result VARCHAR)
Name the total number of founded for yankton
SELECT COUNT(founded) FROM table_2076557_2 WHERE location_s_ = "Yankton"
CREATE TABLE table_2076557_2 (founded VARCHAR, location_s_ VARCHAR)
What is the tyre with a 56 chassis?
SELECT tyre FROM table_name_99 WHERE chassis = "56"
CREATE TABLE table_name_99 (tyre VARCHAR, chassis VARCHAR)
Who was No. 5 when No. 6 Mason and No. 10 Jackson?
SELECT no_5 FROM table_name_17 WHERE no_6 = "mason" AND no_10 = "jackson"
CREATE TABLE table_name_17 (no_5 VARCHAR, no_6 VARCHAR, no_10 VARCHAR)
Which Class has a Weight of 203?
SELECT class FROM table_name_57 WHERE weight = 203
CREATE TABLE table_name_57 (class VARCHAR, weight VARCHAR)
What is the number of blank ends when the stolen ends were 17 and Jennifer Jones was skipped with a more than 83 shot pct?
SELECT COUNT(blank_ends) FROM table_name_57 WHERE stolen_ends = 17 AND skip = "jennifer jones" AND shot_pct > 83
CREATE TABLE table_name_57 (blank_ends VARCHAR, shot_pct VARCHAR, stolen_ends VARCHAR, skip VARCHAR)
what is the total when the rank is 7 and gold is more than 0?
SELECT AVG(total) FROM table_name_41 WHERE rank = "7" AND gold > 0
CREATE TABLE table_name_41 (total INTEGER, rank VARCHAR, gold VARCHAR)
What is the record of the match at 6:00?
SELECT record FROM table_name_84 WHERE time = "6:00"
CREATE TABLE table_name_84 (record VARCHAR, time VARCHAR)
Which network has more than 31.4 channels with a 4:3 aspect?
SELECT network FROM table_name_69 WHERE aspect = "4:3" AND channel > 31.4
CREATE TABLE table_name_69 (network VARCHAR, aspect VARCHAR, channel VARCHAR)
What is the high earnings for players with 34 events and over 2 wins?
SELECT MAX(earnings___) AS $__ FROM table_name_90 WHERE events = 34 AND wins > 2
CREATE TABLE table_name_90 (earnings___ INTEGER, events VARCHAR, wins VARCHAR)
Which Partial thromboplastin time has a Prothrombin time of prolonged and a Condition of factor v deficiency?
SELECT partial_thromboplastin_time FROM table_name_76 WHERE prothrombin_time = "prolonged" AND condition = "factor v deficiency"
CREATE TABLE table_name_76 (partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, condition VARCHAR)
Name the condition for partial thromboplastin time of prolonged and platelet count of unaffected with bleeding time of prolonged
SELECT condition FROM table_name_41 WHERE partial_thromboplastin_time = "prolonged" AND platelet_count = "unaffected" AND bleeding_time = "prolonged"
CREATE TABLE table_name_41 (condition VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)
What is the amount of Draws for the game that had a score of 45+7 and a position below 3?
SELECT COUNT(draws) FROM table_name_29 WHERE points = "45+7" AND position < 3
CREATE TABLE table_name_29 (draws VARCHAR, points VARCHAR, position VARCHAR)
What is the bronze number for the nation with less than 0 gold?
SELECT MIN(bronze) FROM table_name_53 WHERE gold < 0
CREATE TABLE table_name_53 (bronze INTEGER, gold INTEGER)
which country has miss universe Hungary as former pageant?
SELECT country_territory FROM table_14308895_2 WHERE former_pageant = "Miss Universe Hungary"
CREATE TABLE table_14308895_2 (country_territory VARCHAR, former_pageant VARCHAR)
What was the dominant religion (2002) of the Mala Remeta settlement?
SELECT dominant_religion__2002_ FROM table_2562572_50 WHERE settlement = "Mala Remeta"
CREATE TABLE table_2562572_50 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)
What is the average tourism receipts in millions of US dollars in 2011 with less than 1.141 million of 2011 tourist arrivals and more than 1,449 tourism receipts in 2011 US dollars per arrival?
SELECT AVG(tourism_receipts__2011___millions_of_us) AS $_ FROM table_name_41 WHERE tourist_arrivals__2011___millions_ < 1.141 AND tourism_receipts__2011___us$_per_arrival_ > 1 OFFSET 449
CREATE TABLE table_name_41 (tourism_receipts__2011___millions_of_us INTEGER, tourist_arrivals__2011___millions_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR)
How long is the total lesson time taught by staff with first name as Janessa and last name as Sawayn?
SELECT SUM(lesson_time) FROM Lessons AS T1 JOIN Staff AS T2 ON T1.staff_id = T2.staff_id WHERE T2.first_name = "Janessa" AND T2.last_name = "Sawayn"
CREATE TABLE Lessons (staff_id VARCHAR); CREATE TABLE Staff (staff_id VARCHAR, first_name VARCHAR, last_name VARCHAR)
What is the least score for interview with a preliminaries score less than 9.4, evening gown score less than 9.55, and swimsuit score more than 9.18 in New York?
SELECT MIN(interview) FROM table_name_79 WHERE preliminaries < 9.4 AND evening_gown < 9.55 AND country = "new york" AND swimsuit > 9.18
CREATE TABLE table_name_79 (interview INTEGER, swimsuit VARCHAR, country VARCHAR, preliminaries VARCHAR, evening_gown VARCHAR)
what is the result when the opponent is blackburn rovers?
SELECT result FROM table_name_39 WHERE opponent = "blackburn rovers"
CREATE TABLE table_name_39 (result VARCHAR, opponent VARCHAR)
Which catalogue has a formate of "CD Remastered with 3 bonus tracks"?
SELECT catalogue FROM table_name_39 WHERE format = "cd remastered with 3 bonus tracks"
CREATE TABLE table_name_39 (catalogue VARCHAR, format VARCHAR)
Who won the points classification when the teams classification winner was Lampre-Farnese?
SELECT points_classification_klasyfikacja_punktowa FROM table_28092844_16 WHERE teams_classification = "Lampre-Farnese"
CREATE TABLE table_28092844_16 (points_classification_klasyfikacja_punktowa VARCHAR, teams_classification VARCHAR)
Who had highest assists in game against Utah?
SELECT high_assists FROM table_28768469_5 WHERE team = "Utah"
CREATE TABLE table_28768469_5 (high_assists VARCHAR, team VARCHAR)
What's hale irwin's average rank?
SELECT AVG(rank) FROM table_name_7 WHERE player = "hale irwin"
CREATE TABLE table_name_7 (rank INTEGER, player VARCHAR)
Which attendance has 9 as the tie no.?
SELECT attendance FROM table_name_43 WHERE tie_no = 9
CREATE TABLE table_name_43 (attendance VARCHAR, tie_no VARCHAR)
Name the surface for score of 7–6(4), 6–1
SELECT surface FROM table_name_71 WHERE score = "7–6(4), 6–1"
CREATE TABLE table_name_71 (surface VARCHAR, score VARCHAR)
What is the customer id with most number of cards, and how many does he have?
SELECT customer_id, COUNT(*) FROM Customers_cards GROUP BY customer_id ORDER BY COUNT(*) DESC LIMIT 1
CREATE TABLE Customers_cards (customer_id VARCHAR)
What engine was introduced in 1935?
SELECT engine FROM table_name_66 WHERE introduced = "1935"
CREATE TABLE table_name_66 (engine VARCHAR, introduced VARCHAR)
For the location of quezon city , metro manila what is the athletic nickname?
SELECT athletic_nickname FROM table_22171978_1 WHERE location = "Quezon City , Metro Manila"
CREATE TABLE table_22171978_1 (athletic_nickname VARCHAR, location VARCHAR)
What city is fuhlsbüttel airport in?
SELECT city FROM table_name_1 WHERE airport = "fuhlsbüttel airport"
CREATE TABLE table_name_1 (city VARCHAR, airport VARCHAR)
What are the names of those who made less than 3 wins in 15 matches?
SELECT name FROM table_name_90 WHERE wins < 3 AND matches < 15
CREATE TABLE table_name_90 (name VARCHAR, wins VARCHAR, matches VARCHAR)
What is rank of the year 1956?
SELECT rank FROM table_name_63 WHERE year = "1956"
CREATE TABLE table_name_63 (rank VARCHAR, year VARCHAR)
What is the episode # of the episode that originally aired on January 21, 2001?
SELECT episode__number FROM table_name_95 WHERE original_airdate = "january 21, 2001"
CREATE TABLE table_name_95 (episode__number VARCHAR, original_airdate VARCHAR)
What is the total number of games played of the club with less than 40 goals scored, 9 losses, 39 goals conceded, and more than 2 draws?
SELECT COUNT(games_played) FROM table_name_33 WHERE goals_scored < 40 AND loses = 9 AND goals_conceded = 39 AND draws > 2
CREATE TABLE table_name_33 (games_played VARCHAR, draws VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR, loses VARCHAR)
what are all the district with incumbent being sam hobbs
SELECT district FROM table_1342270_3 WHERE incumbent = "Sam Hobbs"
CREATE TABLE table_1342270_3 (district VARCHAR, incumbent VARCHAR)
How many episodes had a broadcast date and run time of 24:43?
SELECT COUNT(broadcast_date) FROM table_1429629_1 WHERE run_time = "24:43"
CREATE TABLE table_1429629_1 (broadcast_date VARCHAR, run_time VARCHAR)
Where is the location with a record of 50-19?
SELECT location FROM table_name_34 WHERE record = "50-19"
CREATE TABLE table_name_34 (location VARCHAR, record VARCHAR)
What date did the International Gold Cup take place?
SELECT date FROM table_name_69 WHERE name = "international gold cup"
CREATE TABLE table_name_69 (date VARCHAR, name VARCHAR)
Name the NS with normal total of 102
SELECT ns FROM table_name_11 WHERE normal_total = "102"
CREATE TABLE table_name_11 (ns VARCHAR, normal_total VARCHAR)
What is the result for the Toscane Horse in the freestyle test?
SELECT result FROM table_name_60 WHERE horse = "toscane" AND event = "freestyle test"
CREATE TABLE table_name_60 (result VARCHAR, horse VARCHAR, event VARCHAR)
What is the id and trade name of the medicines can interact with at least 3 enzymes?
SELECT T1.id, T1.trade_name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id GROUP BY T1.id HAVING COUNT(*) >= 3
CREATE TABLE medicine (id VARCHAR, trade_name VARCHAR); CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR)
What is the total number of points for a total pld less than 38?
SELECT COUNT(total_pts) FROM table_name_24 WHERE total_pld < 38
CREATE TABLE table_name_24 (total_pts VARCHAR, total_pld INTEGER)
Which Tournament has a Partner of martín rodríguez?
SELECT tournament FROM table_name_19 WHERE partner = "martín rodríguez"
CREATE TABLE table_name_19 (tournament VARCHAR, partner VARCHAR)
Who wrote the episode that has the production code ad1c05?
SELECT written_by FROM table_name_4 WHERE production_code = "ad1c05"
CREATE TABLE table_name_4 (written_by VARCHAR, production_code VARCHAR)
Show all party names and their region names.
SELECT T1.party_name, T2.region_name FROM party AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id
CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE party (party_name VARCHAR, region_id VARCHAR)
What was the capacity for the Denver Broncos?
SELECT capacity_percentage FROM table_28884858_2 WHERE team = "Denver Broncos"
CREATE TABLE table_28884858_2 (capacity_percentage VARCHAR, team VARCHAR)
What's greatest attendance on May 7?
SELECT MAX(attendance) FROM table_name_89 WHERE date = "may 7"
CREATE TABLE table_name_89 (attendance INTEGER, date VARCHAR)
What is the round where winners from the previous round totals 8?
SELECT round FROM table_18328569_1 WHERE winners_from_previous_round = "8"
CREATE TABLE table_18328569_1 (round VARCHAR, winners_from_previous_round VARCHAR)
What was the visiting team for the game that ended 82-75?
SELECT visitor FROM table_name_51 WHERE score = "82-75"
CREATE TABLE table_name_51 (visitor VARCHAR, score VARCHAR)
What is the sum of PTS when there is a PCT smaller than 0.1?
SELECT SUM(pts) FROM table_name_11 WHERE pct < 0.1
CREATE TABLE table_name_11 (pts INTEGER, pct INTEGER)
What is the name of the Malta vessel built after 2010 that is a GL class Panamax vessel?
SELECT vessel_name FROM table_name_56 WHERE flag = "malta" AND type = "panamax" AND class = "gl" AND built > 2010
CREATE TABLE table_name_56 (vessel_name VARCHAR, built VARCHAR, class VARCHAR, flag VARCHAR, type VARCHAR)
Which Home team that has a Tie no of 20?
SELECT home_team FROM table_name_74 WHERE tie_no = "20"
CREATE TABLE table_name_74 (home_team VARCHAR, tie_no VARCHAR)
What round does Bryan Berard do?
SELECT round FROM table_name_64 WHERE player = "bryan berard"
CREATE TABLE table_name_64 (round VARCHAR, player VARCHAR)
Name the number of nat for total g of 6
SELECT COUNT(nat) FROM table_22542179_3 WHERE total_g = 6
CREATE TABLE table_22542179_3 (nat VARCHAR, total_g VARCHAR)
What is Hasan Shah's hometown?
SELECT hometown FROM table_name_40 WHERE name = "hasan shah"
CREATE TABLE table_name_40 (hometown VARCHAR, name VARCHAR)
What date was the opposing team Poverty Bay?
SELECT date FROM table_name_94 WHERE opposing_team = "poverty bay"
CREATE TABLE table_name_94 (date VARCHAR, opposing_team VARCHAR)
What was the rating of the episode with an overall ranking of 190?
SELECT rating FROM table_16993379_1 WHERE rank__overall_ = "190"
CREATE TABLE table_16993379_1 (rating VARCHAR, rank__overall_ VARCHAR)
What is the average number of draws that have a total of 1 and a goal difference of 2:0?
SELECT AVG(draws) FROM table_name_67 WHERE total = 1 AND goal_difference = "2:0"
CREATE TABLE table_name_67 (draws INTEGER, total VARCHAR, goal_difference VARCHAR)
What game was played at Omni Coliseum with a w 105-95 score?
SELECT game FROM table_name_32 WHERE location_attendance = "omni coliseum" AND score = "w 105-95"
CREATE TABLE table_name_32 (game VARCHAR, location_attendance VARCHAR, score VARCHAR)
What is the tyres for the JBW type 2 chassis?
SELECT tyres FROM table_name_70 WHERE chassis = "jbw type 2"
CREATE TABLE table_name_70 (tyres VARCHAR, chassis VARCHAR)
Name the chassis for alta
SELECT chassis FROM table_21977704_1 WHERE constructor = "Alta"
CREATE TABLE table_21977704_1 (chassis VARCHAR, constructor VARCHAR)
What was the record for the Orangemen when they played against Army?
SELECT record FROM table_23346983_1 WHERE opponent = "Army"
CREATE TABLE table_23346983_1 (record VARCHAR, opponent VARCHAR)
with a record of 68-80 what was the loss?
SELECT loss FROM table_name_67 WHERE record = "68-80"
CREATE TABLE table_name_67 (loss VARCHAR, record VARCHAR)
what's the current country of location with operational period  of summer of 1941 to 28 june 1944
SELECT current_country_of_location FROM table_10335_1 WHERE operational = "Summer of 1941 to 28 June 1944"
CREATE TABLE table_10335_1 (current_country_of_location VARCHAR, operational VARCHAR)
Which Took Office that has a Party of democrat, under the name of John Hancock
SELECT took_office FROM table_name_30 WHERE party = "democrat" AND name = "john hancock"
CREATE TABLE table_name_30 (took_office VARCHAR, party VARCHAR, name VARCHAR)
How many teams were in the series championnat de france formula renault 2.0?
SELECT team FROM table_26124171_1 WHERE series = "Championnat de France Formula Renault 2.0"
CREATE TABLE table_26124171_1 (team VARCHAR, series VARCHAR)
Which class has a city of Richmond, Virginia?
SELECT class FROM table_name_20 WHERE city_of_license = "richmond, virginia"
CREATE TABLE table_name_20 (class VARCHAR, city_of_license VARCHAR)
When the Crowd was larger than 25,000. what was the Home Team score?
SELECT home_team AS score FROM table_name_44 WHERE crowd > 25 OFFSET 000
CREATE TABLE table_name_44 (home_team VARCHAR, crowd INTEGER)
What is the IHSAA class with 395 in enrollment?
SELECT ihsaa_class FROM table_name_69 WHERE enrollment = 395
CREATE TABLE table_name_69 (ihsaa_class VARCHAR, enrollment VARCHAR)
What is the D 46 √ with a D 41 √ with d 38 √?
SELECT d_46_√ FROM table_name_94 WHERE d_41_√ = "d 38 √"
CREATE TABLE table_name_94 (d_46_√ VARCHAR, d_41_√ VARCHAR)
What is the number for march 27-29 whern november 3 is 153?
SELECT march_27_29 FROM table_25252080_3 WHERE november_3 = "153"
CREATE TABLE table_25252080_3 (march_27_29 VARCHAR, november_3 VARCHAR)
When has a Score of 0–1, and a Tie no of 3?
SELECT date FROM table_name_12 WHERE score = "0–1" AND tie_no = "3"
CREATE TABLE table_name_12 (date VARCHAR, score VARCHAR, tie_no VARCHAR)
What is the rank where the events is 31?
SELECT rank FROM table_name_65 WHERE events = 31
CREATE TABLE table_name_65 (rank VARCHAR, events VARCHAR)
Name the record when the visitor is st. louis
SELECT record FROM table_name_41 WHERE visitor = "st. louis"
CREATE TABLE table_name_41 (record VARCHAR, visitor VARCHAR)
What is the total number of losses for the Team of Montreal with Goals For larger than 29?
SELECT COUNT(losses) FROM table_name_50 WHERE goals_for > 29 AND team = "montreal"
CREATE TABLE table_name_50 (losses VARCHAR, goals_for VARCHAR, team VARCHAR)
How many route/via's are there for the ernad express?
SELECT COUNT(route_via) FROM table_29770377_1 WHERE train_name = "Ernad Express"
CREATE TABLE table_29770377_1 (route_via VARCHAR, train_name VARCHAR)
Name the defensive for week 9
SELECT defensive FROM table_23265433_2 WHERE week = 9
CREATE TABLE table_23265433_2 (defensive VARCHAR, week VARCHAR)
When there are more than 12 total medals and less than 5 gold medals, how many bronze medals are there?
SELECT COUNT(bronze) FROM table_name_55 WHERE total > 12 AND gold < 5
CREATE TABLE table_name_55 (bronze VARCHAR, total VARCHAR, gold VARCHAR)
What was the location and attendance on the May 22 game?
SELECT location_attendance FROM table_name_13 WHERE date = "may 22"
CREATE TABLE table_name_13 (location_attendance VARCHAR, date VARCHAR)
What is the average number of field goals scored by a right halfback who had more than 3 touchdowns?
SELECT AVG(field_goals) FROM table_name_80 WHERE position = "right halfback" AND touchdowns > 3
CREATE TABLE table_name_80 (field_goals INTEGER, position VARCHAR, touchdowns VARCHAR)
What is the average year for Ponce, Puerto Rico events?
SELECT AVG(year) FROM table_name_15 WHERE venue = "ponce, puerto rico"
CREATE TABLE table_name_15 (year INTEGER, venue VARCHAR)
Tell me the lowest closed for capacity of 62,439
SELECT MIN(closed) FROM table_name_34 WHERE capacity = 62 OFFSET 439
CREATE TABLE table_name_34 (closed INTEGER, capacity VARCHAR)
What is the year of daylight service when the builder was Alco?
SELECT years_of_daylight_service FROM table_name_7 WHERE builder = "alco"
CREATE TABLE table_name_7 (years_of_daylight_service VARCHAR, builder VARCHAR)
What is the composition of the coin that was issued after 2008, had a mintage larger than 999, and was designed by Jody Broomfield?
SELECT composition FROM table_name_76 WHERE mintage > 999 AND artist = "jody broomfield" AND year > 2008
CREATE TABLE table_name_76 (composition VARCHAR, year VARCHAR, mintage VARCHAR, artist VARCHAR)