question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Who has a Rank larger than 3 with a speed of 119.838mph?
CREATE TABLE table_name_12 (rider VARCHAR, rank VARCHAR, speed VARCHAR)
SELECT rider FROM table_name_12 WHERE rank > 3 AND speed = "119.838mph"
What was the time of the Kentucky Derby?
CREATE TABLE table_name_79 (time VARCHAR, race VARCHAR)
SELECT time FROM table_name_79 WHERE race = "kentucky derby"
how many times is the name of film narmeen?
CREATE TABLE table_25926120_7 (cash_prize VARCHAR, name_of_film VARCHAR)
SELECT COUNT(cash_prize) FROM table_25926120_7 WHERE name_of_film = "Narmeen"
What is the position of Pierre Daigneault?
CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_58 WHERE player = "pierre daigneault"
what's the estimated value where cover date is august 1962
CREATE TABLE table_1217448_1 (estimated_value VARCHAR, cover_date VARCHAR)
SELECT estimated_value FROM table_1217448_1 WHERE cover_date = "August 1962"
Which driver had a time off course?
CREATE TABLE table_name_39 (driver VARCHAR, time_retired VARCHAR)
SELECT driver FROM table_name_39 WHERE time_retired = "off course"
What is British, when Examples is "November, rotunda, colossus, proscenium"?
CREATE TABLE table_name_12 (british VARCHAR, examples VARCHAR)
SELECT british FROM table_name_12 WHERE examples = "november, rotunda, colossus, proscenium"
What driver has a grid under 12 with a Time/Retired of + 3 laps?
CREATE TABLE table_name_87 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR)
SELECT driver FROM table_name_87 WHERE grid < 12 AND time_retired = "+ 3 laps"
What was the title of the episode written by Julia Newton in series 48?
CREATE TABLE table_2468961_4 (title VARCHAR, written_by VARCHAR, no_in_series VARCHAR)
SELECT title FROM table_2468961_4 WHERE written_by = "Julia Newton" AND no_in_series = 48
Name the episode summary for travis brown
CREATE TABLE table_2140071_12 (episode VARCHAR, coach VARCHAR)
SELECT episode AS Summary FROM table_2140071_12 WHERE coach = "Travis Brown"
Report the first name and last name of all the students.
CREATE TABLE list (firstname VARCHAR, lastname VARCHAR)
SELECT DISTINCT firstname, lastname FROM list
How many purses were there for the mar 16?
CREATE TABLE table_11622771_1 (purse__ VARCHAR, date VARCHAR)
SELECT COUNT(purse__) AS $__ FROM table_11622771_1 WHERE date = "Mar 16"
What is the highest winning pct from a team with wins less than 22, losses greater than 4, ties less than 2 and games started greater than 11?
CREATE TABLE table_name_92 (winning_pct INTEGER, wins VARCHAR, games_started VARCHAR, losses VARCHAR, ties VARCHAR)
SELECT MAX(winning_pct) FROM table_name_92 WHERE losses > 4 AND ties < 2 AND games_started > 11 AND wins < 22
Where was the fight that lasted 3 rounds and was won or loss by a decision?
CREATE TABLE table_name_65 (location VARCHAR, round VARCHAR, method VARCHAR)
SELECT location FROM table_name_65 WHERE round = 3 AND method = "decision"
What is the Nationality of the Swimmer in Lane 4 or larger with a Rank of 5 or more?
CREATE TABLE table_name_37 (nationality VARCHAR, lane VARCHAR, rank VARCHAR)
SELECT nationality FROM table_name_37 WHERE lane > 4 AND rank > 5
How many members does the club "Tennis Club" has?
CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE student (stuid VARCHAR)
SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Tennis Club"
Who built the car that ran out of fuel before 28 laps?
CREATE TABLE table_name_47 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)
SELECT constructor FROM table_name_47 WHERE laps < 28 AND time_retired = "out of fuel"
Which region had a year March 10, 1998?
CREATE TABLE table_name_17 (region VARCHAR, year VARCHAR)
SELECT region FROM table_name_17 WHERE year = "march 10, 1998"
What was the average date with a record of 30-31-9 in a game over 70?
CREATE TABLE table_name_29 (date INTEGER, record VARCHAR, game VARCHAR)
SELECT AVG(date) FROM table_name_29 WHERE record = "30-31-9" AND game > 70
Which Surface has a Score of 2009 wta tour?
CREATE TABLE table_name_13 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_name_13 WHERE score = "2009 wta tour"
How many episodes were written by Alison McDonald?
CREATE TABLE table_26961951_4 (directed_by VARCHAR, written_by VARCHAR)
SELECT COUNT(directed_by) FROM table_26961951_4 WHERE written_by = "Alison McDonald"
What was the 3’UTR sequence when Coding was 6a 3 and the GenBank id is nm_001093770.2?
CREATE TABLE table_name_64 (coding VARCHAR, genbank_id VARCHAR)
SELECT 3 AS ’utr_sequence FROM table_name_64 WHERE coding = "6a 3" AND genbank_id = "nm_001093770.2"
When was the result l 14–24?
CREATE TABLE table_name_71 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_71 WHERE result = "l 14–24"
How many tries for are for 473 points for?
CREATE TABLE table_12828723_4 (tries_for VARCHAR, points_for VARCHAR)
SELECT COUNT(tries_for) FROM table_12828723_4 WHERE points_for = "473"
When did the person born 24 September 1851 pass away?
CREATE TABLE table_name_66 (date_of_death VARCHAR, date_of_birth VARCHAR)
SELECT date_of_death FROM table_name_66 WHERE date_of_birth = "24 september 1851"
In what prefecture is Nihon Bunri located?
CREATE TABLE table_2518850_4 (prefecture VARCHAR, high_school_name VARCHAR)
SELECT prefecture FROM table_2518850_4 WHERE high_school_name = "Nihon Bunri"
Who had highest assists at game on December 21?
CREATE TABLE table_27723526_9 (high_assists VARCHAR, date VARCHAR)
SELECT COUNT(high_assists) FROM table_27723526_9 WHERE date = "December 21"
WHAT ARE THE LAPS WITH POINTS LARGER THAN 5, WITH FORSYTHE RACING, AND GRID 5?
CREATE TABLE table_name_22 (laps INTEGER, grid VARCHAR, points VARCHAR, team VARCHAR)
SELECT MIN(laps) FROM table_name_22 WHERE points > 5 AND team = "forsythe racing" AND grid = 5
Who was the opponent when the Phillies played on April 28?
CREATE TABLE table_name_77 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_77 WHERE date = "april 28"
How many seasons has John Mcfadden coached?
CREATE TABLE table_name_71 (seasons VARCHAR, coach VARCHAR)
SELECT COUNT(seasons) FROM table_name_71 WHERE coach = "john mcfadden"
Who proceeded to the quarter final when the london irish were eliminated from competition?
CREATE TABLE table_28068063_3 (proceed_to_quarter_final VARCHAR, eliminated_from_competition VARCHAR)
SELECT proceed_to_quarter_final FROM table_28068063_3 WHERE eliminated_from_competition = "London Irish"
Which period has the team CS Sedan?
CREATE TABLE table_name_99 (period VARCHAR, teams VARCHAR)
SELECT period FROM table_name_99 WHERE teams = "cs sedan"
What are the details and opening hours of the museums?
CREATE TABLE TOURIST_ATTRACTIONS (Opening_Hours VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE MUSEUMS (Museum_Details VARCHAR, Museum_ID VARCHAR)
SELECT T1.Museum_Details, T2.Opening_Hours FROM MUSEUMS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Museum_ID = T2.Tourist_Attraction_ID
What is the target with an approval date of 2006?
CREATE TABLE table_1661124_1 (target VARCHAR, approval_date VARCHAR)
SELECT target FROM table_1661124_1 WHERE approval_date = 2006
How much Money( £ )australia has ?
CREATE TABLE table_name_11 (money___£__ VARCHAR, country VARCHAR)
SELECT money___£__ FROM table_name_11 WHERE country = "australia"
what is the gp-gs when the receptions is more than 4, long is 55 and avg/g is 151?
CREATE TABLE table_name_44 (gp_gs VARCHAR, avg_g VARCHAR, receptions VARCHAR, long VARCHAR)
SELECT gp_gs FROM table_name_44 WHERE receptions > 4 AND long = 55 AND avg_g = 151
What is the record in the 2 round fight that ended by submission (injury)?
CREATE TABLE table_name_70 (record VARCHAR, round VARCHAR, method VARCHAR)
SELECT record FROM table_name_70 WHERE round = "2" AND method = "submission (injury)"
What is the Novelty of the dinosaur, whose naming Author was Galton?
CREATE TABLE table_name_37 (novelty VARCHAR, authors VARCHAR)
SELECT novelty FROM table_name_37 WHERE authors = "galton"
What's the abbreviation for the country with an inception of 1999 and US$Billion assets of 7.1?
CREATE TABLE table_name_79 (abbreviation VARCHAR, inception VARCHAR, assets_us$billion VARCHAR)
SELECT abbreviation FROM table_name_79 WHERE inception = "1999" AND assets_us$billion = "7.1"
what is the division southwest when division south was kožuf and division east was osogovo
CREATE TABLE table_17881033_1 (division_southwest VARCHAR, division_south VARCHAR, division_east VARCHAR)
SELECT division_southwest FROM table_17881033_1 WHERE division_south = "Kožuf" AND division_east = "Osogovo"
Which country has had 8 miss universes?
CREATE TABLE table_28634206_1 (country VARCHAR, miss_universe VARCHAR)
SELECT country FROM table_28634206_1 WHERE miss_universe = "8"
What was the result of the election where stephen van rensselaer was the incumbent and the party represented was the adams-clay federalist party?
CREATE TABLE table_2668264_17 (result VARCHAR, party VARCHAR, incumbent VARCHAR)
SELECT result FROM table_2668264_17 WHERE party = "Adams-Clay Federalist" AND incumbent = "Stephen Van Rensselaer"
What is the average of player Matthew Elliott (vic)?
CREATE TABLE table_name_63 (average VARCHAR, player VARCHAR)
SELECT average FROM table_name_63 WHERE player = "matthew elliott (vic)"
Who was Melbourne's home team opponent?
CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_90 WHERE away_team = "melbourne"
Segment B of aerospace fuel lines is what netflix episode?
CREATE TABLE table_name_99 (netflix VARCHAR, segment_b VARCHAR)
SELECT netflix FROM table_name_99 WHERE segment_b = "aerospace fuel lines"
What was the opposing team for the second test?
CREATE TABLE table_name_30 (opposing_team VARCHAR, status VARCHAR)
SELECT opposing_team FROM table_name_30 WHERE status = "second test"
Which Home team has a Venue of mcg?
CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_32 WHERE venue = "mcg"
Name the total number of total for bronze of 4 and silver more than 6
CREATE TABLE table_name_59 (total VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT COUNT(total) FROM table_name_59 WHERE bronze = 4 AND silver > 6
Which Points has a Difference of 3, and a Played smaller than 10?
CREATE TABLE table_name_80 (points INTEGER, difference VARCHAR, played VARCHAR)
SELECT AVG(points) FROM table_name_80 WHERE difference = "3" AND played < 10
What is the total number of Games, when Losses is greater than 6, when Club is "Club Sportif Sfaxien", and when Wins is less than 3?
CREATE TABLE table_name_58 (games VARCHAR, wins VARCHAR, losses VARCHAR, club VARCHAR)
SELECT COUNT(games) FROM table_name_58 WHERE losses > 6 AND club = "club sportif sfaxien" AND wins < 3
What is the lowest number of students from a state during the Fall 06 semester?
CREATE TABLE table_15055594_6 (fall_06 INTEGER)
SELECT MIN(fall_06) FROM table_15055594_6
What is the lowest Kerry#, when Others# is "106", and when Bush# is less than 3,188?
CREATE TABLE table_name_38 (kerry_number INTEGER, others_number VARCHAR, bush_number VARCHAR)
SELECT MIN(kerry_number) FROM table_name_38 WHERE others_number = 106 AND bush_number < 3 OFFSET 188
What season has an episode written by john o'bryan and directed by ethan spaulding?
CREATE TABLE table_15185133_1 (no_in_season VARCHAR, written_by VARCHAR, directed_by VARCHAR)
SELECT no_in_season FROM table_15185133_1 WHERE written_by = "John O'Bryan" AND directed_by = "Ethan Spaulding"
What is the lowest week that has 51,499 as the attendance?
CREATE TABLE table_name_66 (week INTEGER, attendance VARCHAR)
SELECT MIN(week) FROM table_name_66 WHERE attendance = 51 OFFSET 499
What Companion (in order from star) has a Semimajor axis (AU) of 0.1886 +0.083 −0.0104?
CREATE TABLE table_name_58 (companion__in_order_from_star_ VARCHAR, semimajor_axis___au__ VARCHAR)
SELECT companion__in_order_from_star_ FROM table_name_58 WHERE semimajor_axis___au__ = "0.1886 +0.083 −0.0104"
What home team had an away team of Aston Villa?
CREATE TABLE table_name_33 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_33 WHERE away_team = "aston villa"
What is the nationality of the center?
CREATE TABLE table_name_72 (nationality VARCHAR, position VARCHAR)
SELECT nationality FROM table_name_72 WHERE position = "center"
How many grids have 102 laps and a Time/Retired of + 6.18?
CREATE TABLE table_name_64 (grid VARCHAR, laps VARCHAR, time_retired VARCHAR)
SELECT COUNT(grid) FROM table_name_64 WHERE laps > 102 AND time_retired = "+ 6.18"
what is the highest rank with a total less than 1?
CREATE TABLE table_name_68 (rank INTEGER, total INTEGER)
SELECT MAX(rank) FROM table_name_68 WHERE total < 1
What is the home team's score when south melbourne is away?
CREATE TABLE table_name_23 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_23 WHERE away_team = "south melbourne"
What is the Pick # of the player with an Overall less than 203 from West Virginia?
CREATE TABLE table_name_37 (pick__number VARCHAR, college VARCHAR, overall VARCHAR)
SELECT COUNT(pick__number) FROM table_name_37 WHERE college = "west virginia" AND overall < 203
Which player has a long of less than 15 and an average of 6 yards.
CREATE TABLE table_name_73 (player VARCHAR, long VARCHAR, avg VARCHAR)
SELECT player FROM table_name_73 WHERE long < 15 AND avg = 6
How many episodes is episode number 4 in the series?
CREATE TABLE table_26808178_1 (title VARCHAR, series__number VARCHAR)
SELECT COUNT(title) FROM table_26808178_1 WHERE series__number = 4
Name the height for asko esna
CREATE TABLE table_25058562_2 (height VARCHAR, player VARCHAR)
SELECT height FROM table_25058562_2 WHERE player = "Asko Esna"
What is the Away with a Ground that is humber college north?
CREATE TABLE table_name_9 (away VARCHAR, ground VARCHAR)
SELECT away FROM table_name_9 WHERE ground = "humber college north"
what is the engine when the tyre is m and the driver is fernando alonso?
CREATE TABLE table_name_34 (engine_† VARCHAR, tyre VARCHAR, driver VARCHAR)
SELECT engine_† FROM table_name_34 WHERE tyre = "m" AND driver = "fernando alonso"
How many students enrolled in 2005 at New Hampshire Institute of Art?
CREATE TABLE table_2076490_1 (enrollment__2005_ VARCHAR, school VARCHAR)
SELECT enrollment__2005_ FROM table_2076490_1 WHERE school = "New Hampshire Institute of Art"
What event had a time of 6:37.73?
CREATE TABLE table_name_42 (event VARCHAR, time VARCHAR)
SELECT event FROM table_name_42 WHERE time = "6:37.73"
What is the BARB ratings of episode 6?
CREATE TABLE table_26591309_3 (official_barb_ratings VARCHAR, episode VARCHAR)
SELECT official_barb_ratings FROM table_26591309_3 WHERE episode = 6
What was the overall score when the score of set 3 was 29–27?
CREATE TABLE table_name_63 (score VARCHAR, set_3 VARCHAR)
SELECT score FROM table_name_63 WHERE set_3 = "29–27"
Which Extra points is the lowest one that has a Player of ross kidston, and Points smaller than 5?
CREATE TABLE table_name_86 (extra_points INTEGER, player VARCHAR, points VARCHAR)
SELECT MIN(extra_points) FROM table_name_86 WHERE player = "ross kidston" AND points < 5
How many laps were there for the car with a qual of 138.750?
CREATE TABLE table_name_3 (laps VARCHAR, qual VARCHAR)
SELECT laps FROM table_name_3 WHERE qual = "138.750"
Name the won for difference being 33
CREATE TABLE table_15319684_1 (won VARCHAR, difference VARCHAR)
SELECT won FROM table_15319684_1 WHERE difference = "33"
What is the result of the match on 9 September 2009?
CREATE TABLE table_name_95 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_95 WHERE date = "9 september 2009"
What incumbent was re-elected in the district in california 3?
CREATE TABLE table_name_85 (incumbent VARCHAR, result VARCHAR, district VARCHAR)
SELECT incumbent FROM table_name_85 WHERE result = "re-elected" AND district = "california 3"
How many years has Sasol Jordan Yamaha as an Entrant?
CREATE TABLE table_name_79 (year INTEGER, entrant VARCHAR)
SELECT AVG(year) FROM table_name_79 WHERE entrant = "sasol jordan yamaha"
Which player made exactly 26 starts?
CREATE TABLE table_28540609_2 (player VARCHAR, starts VARCHAR)
SELECT player FROM table_28540609_2 WHERE starts = 26
Which Field has a Discovery of na, and an Operator(s) of woc, and a Geological Trend of western
CREATE TABLE table_name_15 (field VARCHAR, geological_trend VARCHAR, discovery VARCHAR, operator_s_ VARCHAR)
SELECT field FROM table_name_15 WHERE discovery = "na" AND operator_s_ = "woc" AND geological_trend = "western"
What is every value for Croats when value for Romanians is 16.65%?
CREATE TABLE table_2374338_2 (croats VARCHAR, romanians VARCHAR)
SELECT croats FROM table_2374338_2 WHERE romanians = "16.65%"
What is the capital for the state that has the largest city of Burlington?
CREATE TABLE table_name_27 (capital VARCHAR, largest_city VARCHAR)
SELECT capital FROM table_name_27 WHERE largest_city = "burlington"
what's the home team where streak is l3 and leading scorer is roy : 23
CREATE TABLE table_11964047_5 (home VARCHAR, streak VARCHAR, leading_scorer VARCHAR)
SELECT home FROM table_11964047_5 WHERE streak = "L3" AND leading_scorer = "Roy : 23"
In the Year 1939, what was the Finish when Al was the League?
CREATE TABLE table_name_88 (finish VARCHAR, league VARCHAR, year VARCHAR)
SELECT finish FROM table_name_88 WHERE league = "al" AND year = 1939
For the team led by head coach Felix Magath, who is the team captain?
CREATE TABLE table_name_91 (team VARCHAR, head_coach VARCHAR)
SELECT team AS Captain FROM table_name_91 WHERE head_coach = "felix magath"
The winning team of the race, los angeles times 500 is who?
CREATE TABLE table_10706879_3 (winning_team VARCHAR, name VARCHAR)
SELECT winning_team FROM table_10706879_3 WHERE name = "Los Angeles Times 500"
What is the smallest championship when the FA Cup is 0 and the League Cup is 1?
CREATE TABLE table_name_69 (championship INTEGER, fa_cup VARCHAR, league_cup VARCHAR)
SELECT MIN(championship) FROM table_name_69 WHERE fa_cup = 0 AND league_cup = 1
How many total goals were scored in games where goals conceded was 35?
CREATE TABLE table_16034882_2 (goals_scored VARCHAR, goals_conceded VARCHAR)
SELECT COUNT(goals_scored) FROM table_16034882_2 WHERE goals_conceded = 35
Name the winner for 26 january 2009
CREATE TABLE table_19930660_1 (winner VARCHAR, first_broadcast VARCHAR)
SELECT winner FROM table_19930660_1 WHERE first_broadcast = "26 January 2009"
Which models are lighter than 3500 but not built by the 'Ford Motor Company'?
CREATE TABLE CAR_MAKERS (Id VARCHAR, FullName VARCHAR); CREATE TABLE MODEL_LIST (model VARCHAR, Model VARCHAR, Maker VARCHAR); CREATE TABLE CARS_DATA (Id VARCHAR, weight VARCHAR); CREATE TABLE CAR_NAMES (Model VARCHAR, MakeId VARCHAR)
SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.Model = T2.Model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.Id JOIN CAR_MAKERS AS T4 ON T1.Maker = T4.Id WHERE T3.weight < 3500 AND T4.FullName <> 'Ford Motor Company'
What day was the result a win, the score 2-1, and the year before 2012?
CREATE TABLE table_name_7 (date VARCHAR, year VARCHAR, result VARCHAR, score VARCHAR)
SELECT date FROM table_name_7 WHERE result = "win" AND score = "2-1" AND year < 2012
What is the amount of silver for rank 11 having less than 0 gold?
CREATE TABLE table_name_21 (silver INTEGER, rank VARCHAR, gold VARCHAR)
SELECT MIN(silver) FROM table_name_21 WHERE rank = "11" AND gold < 0
Which Average that has a W-L-T of 5-1, and a Season smaller than 2001, and Games smaller than 6?
CREATE TABLE table_name_59 (average INTEGER, games VARCHAR, w_l_t VARCHAR, season VARCHAR)
SELECT AVG(average) FROM table_name_59 WHERE w_l_t = "5-1" AND season < 2001 AND games < 6
What is the most gold medals that a team ranked higher than 6, have 1 silver medal, and more than 4 total medals have?
CREATE TABLE table_name_96 (gold INTEGER, total VARCHAR, rank VARCHAR, silver VARCHAR)
SELECT MAX(gold) FROM table_name_96 WHERE rank < 6 AND silver = 1 AND total > 4
What is the sum of bronzes for countries with 1 gold and under 1 silver?
CREATE TABLE table_name_19 (bronze INTEGER, gold VARCHAR, silver VARCHAR)
SELECT SUM(bronze) FROM table_name_19 WHERE gold = 1 AND silver < 1
What party does jim ramstad represent?
CREATE TABLE table_1341423_23 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341423_23 WHERE incumbent = "Jim Ramstad"
What was score of the Blue Jays' game versus the Indians when their record was 21-19?
CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT score FROM table_name_6 WHERE opponent = "indians" AND record = "21-19"
What was the score of the draw in the 2005 FIFA Confederations Cup?
CREATE TABLE table_name_24 (score VARCHAR, competition VARCHAR, result VARCHAR)
SELECT score FROM table_name_24 WHERE competition = "2005 fifa confederations cup" AND result = "draw"
What is the highest number of steals for a player with 324 minutes?
CREATE TABLE table_24856332_4 (steals INTEGER, minutes VARCHAR)
SELECT MAX(steals) FROM table_24856332_4 WHERE minutes = 324
How many pages associated with isbn 91-7713-035-9?
CREATE TABLE table_name_75 (pages INTEGER, isbn VARCHAR)
SELECT SUM(pages) FROM table_name_75 WHERE isbn = "isbn 91-7713-035-9"
What team played at lake oval while away?
CREATE TABLE table_name_51 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_51 WHERE venue = "lake oval"
Who had the most the most rebounds and how many did they have on April 1?
CREATE TABLE table_27700530_14 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_27700530_14 WHERE date = "April 1"