answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT AVG(roll) FROM table_name_93 WHERE authority = "state" AND decile = 9
What is the average roll of a school with state authority and a decile of 9?
CREATE TABLE table_name_93 (roll INTEGER, authority VARCHAR, decile VARCHAR)
SELECT nation FROM table_name_54 WHERE total = 1 AND bronze < 1
Which nation won no bronze medals and a 1 medal total?
CREATE TABLE table_name_54 (nation VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT playoffs FROM table_14240688_1 WHERE open_cup = "2nd Round"
Name the playoffs for 2nd round open cup
CREATE TABLE table_14240688_1 (playoffs VARCHAR, open_cup VARCHAR)
SELECT score FROM table_name_79 WHERE date = "1/10/1974"
What was the score on 1/10/1974?
CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)
SELECT MAX(first_elected) FROM table_1341718_14 WHERE district = "Illinois 7"
what was the year first elected for district illinois 7?
CREATE TABLE table_1341718_14 (first_elected INTEGER, district VARCHAR)
SELECT entrant FROM table_name_2 WHERE points = 0 AND year > 1961 AND chassis = "ferrari 156"
In the Formula One World Championships, which entrant had 0 points with a Ferrari 156 Chassis after 1961?
CREATE TABLE table_name_2 (entrant VARCHAR, chassis VARCHAR, points VARCHAR, year VARCHAR)
SELECT power__kw_ FROM table_name_59 WHERE frequency = "102.3mhz" AND location = "baguio"
What is the power at Baguio where the frequency is 102.3mhz?
CREATE TABLE table_name_59 (power__kw_ VARCHAR, frequency VARCHAR, location VARCHAR)
SELECT date FROM table_name_42 WHERE week > 14
Which date has a week larger than 14?
CREATE TABLE table_name_42 (date VARCHAR, week INTEGER)
SELECT COUNT(pick__number) FROM table_name_69 WHERE round > 2 AND name = "lawrence sidbury" AND overall < 125
How many Picks have a Round larger than 2, and a Name of lawrence sidbury, and an Overall smaller than 125?
CREATE TABLE table_name_69 (pick__number VARCHAR, overall VARCHAR, round VARCHAR, name VARCHAR)
SELECT wicket FROM table_name_55 WHERE runs__balls_ = "104 (69)"
Which Wicket was it that had a 104 (69) Runs (balls) amount?
CREATE TABLE table_name_55 (wicket VARCHAR, runs__balls_ VARCHAR)
SELECT height_ft___m FROM table_name_32 WHERE rank = "11"
What is the Height of rank 11?
CREATE TABLE table_name_32 (height_ft___m VARCHAR, rank VARCHAR)
SELECT tournament FROM table_name_3 WHERE 2007 = "19–4"
Which Tournament has a 2007 of 19–4?
CREATE TABLE table_name_3 (tournament VARCHAR)
SELECT COUNT(displacement__tons_) FROM table_name_52 WHERE armament = "2 x -inch (mm), 16 x -inch (mm)"
How much Displacement (tons) has an Armament of 2 x -inch (mm), 16 x -inch (mm)?
CREATE TABLE table_name_52 (displacement__tons_ VARCHAR, armament VARCHAR)
SELECT MAX(total) FROM table_name_42 WHERE rank = "2" AND silver < 6
Which country has a rand of 2 and a silver less than 6?
CREATE TABLE table_name_42 (total INTEGER, rank VARCHAR, silver VARCHAR)
SELECT AVG(attendance) FROM table_name_16 WHERE result = "w 30-23"
What is the average Attendance at a game with a Result of w 30-23?
CREATE TABLE table_name_16 (attendance INTEGER, result VARCHAR)
SELECT T1.Allergy, T1.AllergyType FROM Allergy_type AS T1 JOIN Has_allergy AS T2 ON T1.Allergy = T2.Allergy JOIN Student AS T3 ON T3.StuID = T2.StuID WHERE T3.Fname = "Lisa" ORDER BY T1.Allergy
What are the allergies and their types that the student with first name Lisa has? And order the result by name of allergies.
CREATE TABLE Has_allergy (Allergy VARCHAR, StuID VARCHAR); CREATE TABLE Student (StuID VARCHAR, Fname VARCHAR); CREATE TABLE Allergy_type (Allergy VARCHAR, AllergyType VARCHAR)
SELECT COUNT(pick) FROM table_name_60 WHERE year < 2009 AND round > 1
What is the pick number in a year earlier than 2009, with a round higher than 1?
CREATE TABLE table_name_60 (pick VARCHAR, year VARCHAR, round VARCHAR)
SELECT ring_name FROM table_name_48 WHERE current_rank = "e0 maegashira 9 west"
What is Ring Name, when Current Rank is E0 Maegashira 9 West?
CREATE TABLE table_name_48 (ring_name VARCHAR, current_rank VARCHAR)
SELECT points_against FROM table_14070062_4 WHERE tries_against = "75"
tell the score when the times gone was 75
CREATE TABLE table_14070062_4 (points_against VARCHAR, tries_against VARCHAR)
SELECT date FROM table_name_97 WHERE away_team = "cardiff city"
What day was the away team Cardiff City?
CREATE TABLE table_name_97 (date VARCHAR, away_team VARCHAR)
SELECT win__percentage FROM table_name_14 WHERE 2003 = "atp world tour finals"
What is the win % of the 2003 atp world tour finals?
CREATE TABLE table_name_14 (win__percentage VARCHAR)
SELECT MIN(rank) FROM table_name_99 WHERE year = 2013 AND studio_s_ = "red chillies entertainment"
Name the lowest rank for red chillies entertainment for 2013
CREATE TABLE table_name_99 (rank INTEGER, year VARCHAR, studio_s_ VARCHAR)
SELECT MIN(round) FROM table_name_3 WHERE name = "jon olinger" AND pick__number < 24
What is the least round number for Jon Olinger, who was picked before pick # 24?
CREATE TABLE table_name_3 (round INTEGER, name VARCHAR, pick__number VARCHAR)
SELECT MAX(year) FROM table_name_50 WHERE hometown = "san carlos, pangasinan"
What's the latest year with a hometown of san carlos, pangasinan?
CREATE TABLE table_name_50 (year INTEGER, hometown VARCHAR)
SELECT away_team FROM table_name_12 WHERE venue = "mcg"
Who was the away team at MCG?
CREATE TABLE table_name_12 (away_team VARCHAR, venue VARCHAR)
SELECT constructor FROM table_name_85 WHERE grid < 15 AND laps = 95
What was the constructor when there were 95 laps and a grid less than 15?
CREATE TABLE table_name_85 (constructor VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT 2012 FROM table_name_55 WHERE tournament = "us open"
Name the 2012 for us open
CREATE TABLE table_name_55 (tournament VARCHAR)
SELECT COUNT(size__steps_) FROM table_name_44 WHERE size__cents_ = 58.54 AND just_ratio = "28:27" AND just__cents_ > 62.96
size (steps) that has a size (cents) of 58.54, and a just ratio of 28:27, and a just (cents) larger than 62.96 is what total number?
CREATE TABLE table_name_44 (size__steps_ VARCHAR, just__cents_ VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR)
SELECT download FROM table_name_55 WHERE catch_up_period = "varies"
What is the download of the varies catch-up period?
CREATE TABLE table_name_55 (download VARCHAR, catch_up_period VARCHAR)
SELECT aspect FROM table_name_18 WHERE programming = "latv"
Which Aspect has a Programming of latv?
CREATE TABLE table_name_18 (aspect VARCHAR, programming VARCHAR)
SELECT country FROM table_name_53 WHERE date = "april 27"
What country was the race in on April 27?
CREATE TABLE table_name_53 (country VARCHAR, date VARCHAR)
SELECT COUNT(location_attendance) FROM table_13464416_7 WHERE record = "14-38"
how many locations have a record of 14-38?
CREATE TABLE table_13464416_7 (location_attendance VARCHAR, record VARCHAR)
SELECT play_by_play FROM table_name_89 WHERE studio_host = "ward cornell"
Who gave the play by play commentary with studio host Ward Cornell?
CREATE TABLE table_name_89 (play_by_play VARCHAR, studio_host VARCHAR)
SELECT team FROM table_1266602_2 WHERE crew_chief = "Wally Rogers"
Which teams used Wally Rogers as their crew chief?
CREATE TABLE table_1266602_2 (team VARCHAR, crew_chief VARCHAR)
SELECT class_aAAAA FROM table_10399701_2 WHERE school_year = "1995-96"
Who was Class AAAAA during the school year of 1995-96?
CREATE TABLE table_10399701_2 (class_aAAAA VARCHAR, school_year VARCHAR)
SELECT reg_season FROM table_name_67 WHERE avg_attendance > 3 OFFSET 170
What regular season result had an average attendance bigger than 3,170?
CREATE TABLE table_name_67 (reg_season VARCHAR, avg_attendance INTEGER)
SELECT county FROM table_name_92 WHERE r_bacon = "438 (4%)"
Which county has 438 (4%) listed under R. Bacon?
CREATE TABLE table_name_92 (county VARCHAR, r_bacon VARCHAR)
SELECT city___state FROM table_name_33 WHERE team = "holden racing team" AND winner = "mark skaife todd kelly"
Tell me the city/state for the holden racing team with winner of mark skaife todd kelly
CREATE TABLE table_name_33 (city___state VARCHAR, team VARCHAR, winner VARCHAR)
SELECT status FROM table_24431348_18 WHERE player = "Philipp Kohlschreiber"
What is the status of player Philipp Kohlschreiber?
CREATE TABLE table_24431348_18 (status VARCHAR, player VARCHAR)
SELECT democratic_ticket FROM table_name_38 WHERE socialist_labor_ticket = "belle j. rosen"
Who's the Democratic ticket with a Socialist Labor ticket of belle j. rosen?
CREATE TABLE table_name_38 (democratic_ticket VARCHAR, socialist_labor_ticket VARCHAR)
SELECT T1.claim_id, T1.date_claim_made, T1.Date_Claim_Settled FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id GROUP BY T1.claim_id HAVING COUNT(*) = 1
List the date the claim was made, the date it was settled and the amount settled for all the claims which had exactly one settlement.
CREATE TABLE Claims (claim_id VARCHAR, date_claim_made VARCHAR, Date_Claim_Settled VARCHAR, Claim_id VARCHAR); CREATE TABLE Settlements (Claim_id VARCHAR)
SELECT COUNT(population_density_2010___km²_) FROM table_14986292_1 WHERE administrative_division = "Duque de Caxias"
Name the number of population density 2010 for duque de caxias
CREATE TABLE table_14986292_1 (population_density_2010___km²_ VARCHAR, administrative_division VARCHAR)
SELECT date_released FROM table_1881642_1 WHERE green_communist = "5.7%"
What date did the Green-Communists receive 5.7%?
CREATE TABLE table_1881642_1 (date_released VARCHAR, green_communist VARCHAR)
SELECT result FROM table_name_32 WHERE year > 2003 AND award = "best supporting actress"
Which Result has a Year larger than 2003, and an Award of best supporting actress?
CREATE TABLE table_name_32 (result VARCHAR, year VARCHAR, award VARCHAR)
SELECT companion_s_ FROM table_name_7 WHERE author = "dave stone"
What is the companion for the author Dave Stone?
CREATE TABLE table_name_7 (companion_s_ VARCHAR, author VARCHAR)
SELECT november_3 FROM table_25252080_3 WHERE march_27_29 = "149"
november 3 where march 27-29 is 149?
CREATE TABLE table_25252080_3 (november_3 VARCHAR, march_27_29 VARCHAR)
SELECT MAX(established) FROM table_1414702_3 WHERE high_school = "Mount Tahoma"
When was Mount Tahoma established?
CREATE TABLE table_1414702_3 (established INTEGER, high_school VARCHAR)
SELECT MAX(overall) FROM table_name_38 WHERE round = 3 AND pick__number > 10
With Round 3 and Pick # over 10, what is the higher Overall number?
CREATE TABLE table_name_38 (overall INTEGER, round VARCHAR, pick__number VARCHAR)
SELECT place FROM table_name_35 WHERE player = "seve ballesteros"
Name the Place of seve ballesteros?
CREATE TABLE table_name_35 (place VARCHAR, player VARCHAR)
SELECT date FROM table_name_78 WHERE week > 7 AND result = "l 23–17"
What date had a Result of l 23–17 in a week later than 7?
CREATE TABLE table_name_78 (date VARCHAR, week VARCHAR, result VARCHAR)
SELECT rider FROM table_name_64 WHERE points > 108 AND wins = 0 AND rank < 8 AND manufacturer = "honda"
Points larger than 108, and a Wins of 0, and a Rank smaller than 8, and a Manufacturer of honda is what rider?
CREATE TABLE table_name_64 (rider VARCHAR, manufacturer VARCHAR, rank VARCHAR, points VARCHAR, wins VARCHAR)
SELECT name FROM table_name_46 WHERE points = 305
What is the name of the player with 305 points?
CREATE TABLE table_name_46 (name VARCHAR, points VARCHAR)
SELECT place FROM table_name_17 WHERE country = "united states" AND score = 71 - 70 - 72 - 68 = 281
What did United States place when the score was 71-70-72-68=281?
CREATE TABLE table_name_17 (place VARCHAR, country VARCHAR, score VARCHAR)
SELECT opposing_team FROM table_name_76 WHERE status = "test match"
Who was the opposing team in the test match?
CREATE TABLE table_name_76 (opposing_team VARCHAR, status VARCHAR)
SELECT common_name FROM table_26957063_3 WHERE length__aa_ = 1323
What is the common name of the animal whose length (AA) is 1323?
CREATE TABLE table_26957063_3 (common_name VARCHAR, length__aa_ VARCHAR)
SELECT 2003 FROM table_name_33 WHERE 2000 = "—" AND 2007 = "—" AND 2010 = "—"
Name the 2003 which has a 2000 of —, and a 2007 of —, and a 2010 of —?
CREATE TABLE table_name_33 (Id VARCHAR)
SELECT flag_name FROM table_29997112_3 WHERE meaning = "Decimal Digit 2"
What is the name of the flag that means decimal digit 2?
CREATE TABLE table_29997112_3 (flag_name VARCHAR, meaning VARCHAR)
SELECT seat FROM table_11614581_3 WHERE name_in_polish = "Gubernia warszawska"
What seat does Gubernia Warszawska hold?
CREATE TABLE table_11614581_3 (seat VARCHAR, name_in_polish VARCHAR)
SELECT MAX(round) FROM table_name_12 WHERE position = "defensive tackle" AND overall < 282
What round is highest and has a defensive tackle position and overall lower than 282?
CREATE TABLE table_name_12 (round INTEGER, position VARCHAR, overall VARCHAR)
SELECT AVG(goals) FROM table_name_91 WHERE matches = 205 AND rank > 9
What is the average number of goals for players ranked above 9 and playing more than 205 matches?
CREATE TABLE table_name_91 (goals INTEGER, matches VARCHAR, rank VARCHAR)
SELECT erp_w FROM table_name_18 WHERE frequency_mhz = 91.3
What is the ERP W for the frequency of 91.3MHz?
CREATE TABLE table_name_18 (erp_w VARCHAR, frequency_mhz VARCHAR)
SELECT place FROM table_name_81 WHERE score = 70 - 67 - 69 - 69 = 275
Can you tell me the Place that has the Score of 70-67-69-69=275?
CREATE TABLE table_name_81 (place VARCHAR, score VARCHAR)
SELECT release_date FROM table_name_55 WHERE sspec_number = "sr0pk(e1)"
Which Release date has a sSpec number of sr0pk(e1)?
CREATE TABLE table_name_55 (release_date VARCHAR, sspec_number VARCHAR)
SELECT rider FROM table_name_10 WHERE time_retired = "+31.426"
Which rider has the time of +31.426?
CREATE TABLE table_name_10 (rider VARCHAR, time_retired VARCHAR)
SELECT MAX(money___) AS $__ FROM table_name_67 WHERE to_par = "+3" AND score = 76 - 69 - 69 - 69 = 283
What is the Money of the Player with a To par of +3 and Score of 76-69-69-69=283?
CREATE TABLE table_name_67 (money___ INTEGER, to_par VARCHAR, score VARCHAR)
SELECT co_drivers FROM table_name_42 WHERE laps > 310 AND team = "aston martin racing bms"
Who were the co-drivers with more than 310 laps and team aston martin racing bms?
CREATE TABLE table_name_42 (co_drivers VARCHAR, laps VARCHAR, team VARCHAR)
SELECT loss FROM table_name_38 WHERE record = "41–32–6"
Which Loss has a Record of 41–32–6?
CREATE TABLE table_name_38 (loss VARCHAR, record VARCHAR)
SELECT MIN(rank) FROM table_name_44 WHERE athlete = "chris brown" AND react > 0.244
What is the lowest rank for Chris Brown with react greater than 0.244?
CREATE TABLE table_name_44 (rank INTEGER, athlete VARCHAR, react VARCHAR)
SELECT gamerankings FROM table_name_40 WHERE metacritic = "83/100" AND year_released = 2011
What is the GameRankings Released of 2011 with a Metacritic of 83/100?
CREATE TABLE table_name_40 (gamerankings VARCHAR, metacritic VARCHAR, year_released VARCHAR)
SELECT wed_3_june FROM table_21607058_1 WHERE rank = 12
What were the time and speed for the rider ranked in 12 on Wed, June 3?
CREATE TABLE table_21607058_1 (wed_3_june VARCHAR, rank VARCHAR)
SELECT round FROM table_name_60 WHERE winner = "ivanovic" AND year < 2008 AND tournament = "paris"
What is Round, when Winner is "Ivanovic", when Year is less than 2008, and when Tournament is "Paris"?
CREATE TABLE table_name_60 (round VARCHAR, tournament VARCHAR, winner VARCHAR, year VARCHAR)
SELECT name FROM table_name_24 WHERE height__cm_ = 178 AND weight__kg_ < 91
Which name's height in centimeters is 178 when its weight in kilograms is less than 91?
CREATE TABLE table_name_24 (name VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR)
SELECT date FROM table_name_77 WHERE circuit = "brands hatch"
On what Date is there a race on the Circuit of brands hatch?
CREATE TABLE table_name_77 (date VARCHAR, circuit VARCHAR)
SELECT tournament FROM table_name_14 WHERE runner_s__up = "fernando roca"
What tournament that Fernando Roca is the runner-up?
CREATE TABLE table_name_14 (tournament VARCHAR, runner_s__up VARCHAR)
SELECT home_stadium FROM table_name_64 WHERE division = "south" AND conference = "national" AND city = "charlotte, north carolina"
What is the name of the Home Stadium in which the Division is in the south, and Conference is national, as well as being in the city named charlotte, North Carolina?
CREATE TABLE table_name_64 (home_stadium VARCHAR, city VARCHAR, division VARCHAR, conference VARCHAR)
SELECT COUNT(played) FROM table_13018116_1 WHERE pts_agst = 645
What is the number of played when points against 645?
CREATE TABLE table_13018116_1 (played VARCHAR, pts_agst VARCHAR)
SELECT silver FROM table_name_21 WHERE year < 2010 AND gold = "chan ming shu"
Who won silver in the year before 2010, the year Chan Ming Shu won gold?
CREATE TABLE table_name_21 (silver VARCHAR, year VARCHAR, gold VARCHAR)
SELECT attendance FROM table_name_8 WHERE record = "86-71"
what game had a score of 86-71
CREATE TABLE table_name_8 (attendance VARCHAR, record VARCHAR)
SELECT length FROM table_name_57 WHERE route_name = "sh 2"
What is the length of the highway with the route name sh 2?
CREATE TABLE table_name_57 (length VARCHAR, route_name VARCHAR)
SELECT location FROM table_name_33 WHERE year = 2001 AND record = "3:52.983s"
Which location's year was 2001 when the record was 3:52.983s?
CREATE TABLE table_name_33 (location VARCHAR, year VARCHAR, record VARCHAR)
SELECT tournament FROM table_name_76 WHERE outcome = "winner" AND surface = "hard" AND date = "august 26, 2006"
Which tournament had an outcome of winner, a hard surface, and happened on August 26, 2006?
CREATE TABLE table_name_76 (tournament VARCHAR, date VARCHAR, outcome VARCHAR, surface VARCHAR)
SELECT AVG(score) FROM table_name_4 WHERE player = "linda wessberg"
What person had an opponent of linda wessberg and scored an average score?
CREATE TABLE table_name_4 (score INTEGER, player VARCHAR)
SELECT title FROM table_name_56 WHERE us_release = "august 1996"
Which title has a US release of august 1996?
CREATE TABLE table_name_56 (title VARCHAR, us_release VARCHAR)
SELECT game_4 FROM table_name_8 WHERE position = "wing" AND game_1 = "michael o'connor"
For which Game 4 did Michael O'Connor play wing position?
CREATE TABLE table_name_8 (game_4 VARCHAR, position VARCHAR, game_1 VARCHAR)
SELECT MIN(stage) FROM table_275506_1 WHERE yellow_jersey = "Ronan Pensec"
What is the lowest stage when the yellow jersey is Ronan Pensec?
CREATE TABLE table_275506_1 (stage INTEGER, yellow_jersey VARCHAR)
SELECT constructor FROM table_18893428_1 WHERE driver = "George Heath"
Who is the constructor for the car driven by George Heath?
CREATE TABLE table_18893428_1 (constructor VARCHAR, driver VARCHAR)
SELECT year_location FROM table_28138035_35 WHERE mens_singles = "Wang Liqin"
In what year and location did Wang Liqin win the Mens Singles?
CREATE TABLE table_28138035_35 (year_location VARCHAR, mens_singles VARCHAR)
SELECT AVG(area__in_km²_) FROM table_name_81 WHERE markatal < 0
What is the average Area (in km²), when Markatal is less than 0?
CREATE TABLE table_name_81 (area__in_km²_ INTEGER, markatal INTEGER)
SELECT loss FROM table_name_67 WHERE record = "68-80"
with a record of 68-80 what was the loss?
CREATE TABLE table_name_67 (loss VARCHAR, record VARCHAR)
SELECT COUNT(total) FROM table_name_54 WHERE silver < 0
What is the sum of the total number of medals when silver is less than 0?
CREATE TABLE table_name_54 (total VARCHAR, silver INTEGER)
SELECT MIN(tomina_municipality) FROM table_2509350_3 WHERE el_villar_municipality = 4
Name the least tomina for el villar being 4
CREATE TABLE table_2509350_3 (tomina_municipality INTEGER, el_villar_municipality VARCHAR)
SELECT tie_no FROM table_name_63 WHERE away_team = "sheffield wednesday"
What was the tie number with the away team of Sheffield Wednesday?
CREATE TABLE table_name_63 (tie_no VARCHAR, away_team VARCHAR)
SELECT away_team FROM table_name_10 WHERE home_team = "richmond"
Who was Richmond's away team opponent?
CREATE TABLE table_name_10 (away_team VARCHAR, home_team VARCHAR)
SELECT AVG(preliminaries) FROM table_name_65 WHERE swimsuit < 9.297 AND evening_gown = 9.617 AND interview > 9.143
What is the preliminaries score where the swimsuit is smaller than 9.297, the evening gown is 9.617, and the interview is larger than 9.143?
CREATE TABLE table_name_65 (preliminaries INTEGER, interview VARCHAR, swimsuit VARCHAR, evening_gown VARCHAR)
SELECT college_junior_club_team FROM table_1473672_4 WHERE pick__number = 63
Name the college/junior club team for pick number 63
CREATE TABLE table_1473672_4 (college_junior_club_team VARCHAR, pick__number VARCHAR)
SELECT score FROM table_name_64 WHERE game = 26
What was the final score of game 26?
CREATE TABLE table_name_64 (score VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_15780049_8 WHERE date = "March 17"
Name the high rebounds for march 17
CREATE TABLE table_15780049_8 (high_rebounds VARCHAR, date VARCHAR)
SELECT SUM(points) FROM table_name_17 WHERE lost > 3 AND name = "esc riverrats geretsried"
How many points did the ESC Riverrats Geretsried, who lost more than 3 games, score?
CREATE TABLE table_name_17 (points INTEGER, lost VARCHAR, name VARCHAR)
SELECT MIN(caps) FROM table_name_67 WHERE club_province = "brumbies" AND player = "alister campbell"
How many caps for alister campbell from brumbies?
CREATE TABLE table_name_67 (caps INTEGER, club_province VARCHAR, player VARCHAR)
SELECT score FROM table_name_9 WHERE date = "april 25"
What was the score on April 25?
CREATE TABLE table_name_9 (score VARCHAR, date VARCHAR)