answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT gold FROM table_name_45 WHERE nation = "germany"
How many golds does Germany have?
CREATE TABLE table_name_45 (gold VARCHAR, nation VARCHAR)
SELECT score FROM table_23281862_9 WHERE record = "36-33"
What is the score when 36-33 is the record?
CREATE TABLE table_23281862_9 (score VARCHAR, record VARCHAR)
SELECT batting_partners FROM table_1670921_1 WHERE season = "1997"
Who are the batting partners for the 1997 season?
CREATE TABLE table_1670921_1 (batting_partners VARCHAR, season VARCHAR)
SELECT link FROM table_24778847_2 WHERE date_of_polling = "February 10–28, 2011"
What format is the link for the polling data for February 10–28, 2011?
CREATE TABLE table_24778847_2 (link VARCHAR, date_of_polling VARCHAR)
SELECT MIN(entries) FROM table_26455614_1 WHERE winner = "Paris Saint-Germain"
What is the fewest recorded entrants against paris saint-germain?
CREATE TABLE table_26455614_1 (entries INTEGER, winner VARCHAR)
SELECT AVG(T1.age) FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid WHERE T3.student_capacity = (SELECT MAX(student_capacity) FROM dorm)
Find the average age of students who are living in the dorm with the largest capacity.
CREATE TABLE dorm (student_capacity INTEGER); CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, student_capacity INTEGER)
SELECT role_code FROM ROLES
What are all role codes?
CREATE TABLE ROLES (role_code VARCHAR)
SELECT COUNT(DISTINCT name) FROM projects
Find the number of distinct projects.
CREATE TABLE projects (name VARCHAR)
SELECT casualties FROM table_name_3 WHERE intensity = "unknown" AND epicenter = "bouïra province"
How many casualties were in the earthquake with an unknown intensity and an epicenter in the bouïra province?
CREATE TABLE table_name_3 (casualties VARCHAR, intensity VARCHAR, epicenter VARCHAR)
SELECT venue FROM table_name_22 WHERE date = "27-02-2003"
What is the Venue with a Date with 27-02-2003?
CREATE TABLE table_name_22 (venue VARCHAR, date VARCHAR)
SELECT MAX(attendance) FROM table_name_64 WHERE result = "l 23-20"
What was the highest attendance of games that resulted in L 23-20?
CREATE TABLE table_name_64 (attendance INTEGER, result VARCHAR)
SELECT place FROM table_name_92 WHERE player = "julius boros"
What area did Julius Boros play at?
CREATE TABLE table_name_92 (place VARCHAR, player VARCHAR)
SELECT COUNT(goal_difference) FROM table_name_51 WHERE club = "cf extremadura" AND played < 38
what is the total number of goal different when the club is cf extremadura and the played is less than 38?
CREATE TABLE table_name_51 (goal_difference VARCHAR, club VARCHAR, played VARCHAR)
SELECT score FROM table_name_1 WHERE home_team = "wrexham" AND date = "blackpool"
What is the score of the game where Wrexham is the home team and the date is Blackpool?
CREATE TABLE table_name_1 (score VARCHAR, home_team VARCHAR, date VARCHAR)
SELECT MIN(labour_party) FROM table_name_16 WHERE fianna_fáil > 5
What is the lowest number in the Labour Party for the Fianna Fail higher than 5?
CREATE TABLE table_name_16 (labour_party INTEGER, fianna_fáil INTEGER)
SELECT platform FROM table_name_44 WHERE company = "surfstats software"
What platform is the company Surfstats Software?
CREATE TABLE table_name_44 (platform VARCHAR, company VARCHAR)
SELECT player FROM table_name_84 WHERE round < 7 AND college = "arizona state"
Who is the player from Arizona state with a round less than 7?
CREATE TABLE table_name_84 (player VARCHAR, round VARCHAR, college VARCHAR)
SELECT MIN(episode_no) FROM table_24399615_4 WHERE cable_rank = "8"
What episode number had a cable ranking of 8?
CREATE TABLE table_24399615_4 (episode_no INTEGER, cable_rank VARCHAR)
SELECT nhl_team FROM table_2781227_7 WHERE player = "Ryan Meade"
What NHL team picked Ryan Meade for the draft?
CREATE TABLE table_2781227_7 (nhl_team VARCHAR, player VARCHAR)
SELECT position FROM table_11677691_10 WHERE hometown = "Paramus, New Jersey"
What position belonged to the player from Paramus, New Jersey?
CREATE TABLE table_11677691_10 (position VARCHAR, hometown VARCHAR)
SELECT film_title_used_in_nomination FROM table_name_20 WHERE original_title = "una giornata particolare"
What title was used in the nomination of Una Giornata Particolare?
CREATE TABLE table_name_20 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
SELECT maturity FROM table_21692771_1 WHERE isin = "DE000A0BVBN3"
What is the maturity date of the ISIN labeled DE000A0BVBN3?
CREATE TABLE table_21692771_1 (maturity VARCHAR, isin VARCHAR)
SELECT county FROM table_name_55 WHERE location = "east providence"
In which county is East Providence?
CREATE TABLE table_name_55 (county VARCHAR, location VARCHAR)
SELECT COUNT(record) FROM table_20010140_10 WHERE date = "February 22"
how many records were made on february 22
CREATE TABLE table_20010140_10 (record VARCHAR, date VARCHAR)
SELECT MAX(pos) FROM table_27396005_2 WHERE constructor = "Joe Gibbs Racing" AND driver = "Denny Hamlin"
What was the maximum finish position of the car whose constructor was Joe Gibbs Racing, driven by Denny Hamlin?
CREATE TABLE table_27396005_2 (pos INTEGER, constructor VARCHAR, driver VARCHAR)
SELECT audition_city FROM table_27455867_1 WHERE episode_air_date = "January 27, 2011"
Where were the auditions held in the episode that aired on january 27, 2011?
CREATE TABLE table_27455867_1 (audition_city VARCHAR, episode_air_date VARCHAR)
SELECT venue FROM table_name_60 WHERE competition = "euro 2004 q."
What venue has euro 2004 q. as the competition?
CREATE TABLE table_name_60 (venue VARCHAR, competition VARCHAR)
SELECT COUNT(episode_number) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 0.7 / 2 AND rating = "2.1"
How many episodes had rating/share (18-49) of 0.7/2 and a rating of 2.1?
CREATE TABLE table_25751274_2 (episode_number VARCHAR, rating VARCHAR)
SELECT difference FROM table_name_57 WHERE position < 3 AND points = 17
What is the Difference with a position of less than 3, and, 17 points.
CREATE TABLE table_name_57 (difference VARCHAR, position VARCHAR, points VARCHAR)
SELECT win_percentage FROM table_name_44 WHERE team = "1989-90"
What is the Win% of the 1989-90 Team?
CREATE TABLE table_name_44 (win_percentage VARCHAR, team VARCHAR)
SELECT MIN(shutouts) FROM table_29743928_4
What is the lowest overall amount of shutouts?
CREATE TABLE table_29743928_4 (shutouts INTEGER)
SELECT date_of_transaction FROM TRANSACTIONS WHERE share_count > 100 OR amount_of_transaction > 1000
Show the dates of transactions if the share count is bigger than 100 or the amount is bigger than 1000.
CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, share_count VARCHAR, amount_of_transaction VARCHAR)
SELECT result FROM table_1342013_20 WHERE first_elected = 1942
What was the result for the politician first elected in 1942?
CREATE TABLE table_1342013_20 (result VARCHAR, first_elected VARCHAR)
SELECT COUNT(fastest_lap) FROM table_25322130_3 WHERE round = "14"
Name the fastest lap for round 14
CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, round VARCHAR)
SELECT voltage FROM table_name_71 WHERE cores = "2" AND release_date = "september 2010" AND turbo = "5/8"
What is the voltage when there are 2 cores, turbo is 5/8 and the release date is September 2010?
CREATE TABLE table_name_71 (voltage VARCHAR, turbo VARCHAR, cores VARCHAR, release_date VARCHAR)
SELECT written_by FROM table_27169029_1 WHERE original_air_date = "September 26, 2010"
Who wrote the episode that aired on September 26, 2010?
CREATE TABLE table_27169029_1 (written_by VARCHAR, original_air_date VARCHAR)
SELECT exaltation FROM table_name_75 WHERE detriment = "saturn" AND sign = "cancer"
Which exaltation has a detriment of Saturn and Cancer as a sign?
CREATE TABLE table_name_75 (exaltation VARCHAR, detriment VARCHAR, sign VARCHAR)
SELECT missile_type FROM table_22282917_26 WHERE code_ & _location = "M-20 Harbor Drive"
What is every missile type with a code and location of M-20 Harbor Drive?
CREATE TABLE table_22282917_26 (missile_type VARCHAR, code_ VARCHAR, _location VARCHAR)
SELECT record FROM table_name_79 WHERE attendance = "35,305"
What is the record for the game with an attendance of 35,305?
CREATE TABLE table_name_79 (record VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_18 WHERE record = "0-1"
Who was the opponent when the Seattle Seahawks had a record of 0-1?
CREATE TABLE table_name_18 (opponent VARCHAR, record VARCHAR)
SELECT SUM(overall) FROM table_name_99 WHERE college = "duke" AND round > 7
What is the total number of overall figures when duke was the college and the round was higher than 7?
CREATE TABLE table_name_99 (overall INTEGER, college VARCHAR, round VARCHAR)
SELECT high_rebounds FROM table_name_50 WHERE high_assists = "jason kidd (13)"
What is High Rebounds, when High Assists is "Jason Kidd (13)"?
CREATE TABLE table_name_50 (high_rebounds VARCHAR, high_assists VARCHAR)
SELECT COUNT(week) FROM table_name_5 WHERE date = "bye"
Tell me the number of weeks for bye
CREATE TABLE table_name_5 (week VARCHAR, date VARCHAR)
SELECT COUNT(institution) FROM table_261927_1 WHERE colors = "Blue & Gold"
How many have the colors blue & gold?
CREATE TABLE table_261927_1 (institution VARCHAR, colors VARCHAR)
SELECT course_description FROM Courses WHERE course_name = 'math'
How is the math course described?
CREATE TABLE Courses (course_description VARCHAR, course_name VARCHAR)
SELECT projects_templates FROM table_name_39 WHERE intellitrace = "no" AND windows_phone_development = "yes" AND test_impact_analysis = "no"
Which Projects template has an IntelliTrace of no, and a Windows Phone development of yes, and a Test impact analysis of no?
CREATE TABLE table_name_39 (projects_templates VARCHAR, test_impact_analysis VARCHAR, intellitrace VARCHAR, windows_phone_development VARCHAR)
SELECT record FROM table_name_73 WHERE date = "may 20, 1961"
What is the Record with a Date that is may 20, 1961?
CREATE TABLE table_name_73 (record VARCHAR, date VARCHAR)
SELECT system FROM table_name_56 WHERE name = "elkjs"
What is the system called that is named ELKJS?
CREATE TABLE table_name_56 (system VARCHAR, name VARCHAR)
SELECT score FROM table_name_32 WHERE venue = "seoul" AND result = "8-0"
What was the score in the venue of Seoul that resulted in 8-0?
CREATE TABLE table_name_32 (score VARCHAR, venue VARCHAR, result VARCHAR)
SELECT rating FROM table_25751274_2 WHERE share = 4 AND rating / SHARE(18 - 49) = 0.7 / 2
What is the rating of the episode with a share of 4 and a rating/share (18-49) of 0.7/2?
CREATE TABLE table_25751274_2 (rating VARCHAR, share VARCHAR)
SELECT MIN(pick) FROM table_name_30 WHERE position = "defensive tackle" AND player = "dave haverdick"
What is the lowest pick of the defensive tackle player dave haverdick?
CREATE TABLE table_name_30 (pick INTEGER, position VARCHAR, player VARCHAR)
SELECT score FROM table_name_92 WHERE to_par = "+5" AND player = "vijay singh"
What did vijay singh score with a +5 to par?
CREATE TABLE table_name_92 (score VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT Name FROM city ORDER BY White DESC LIMIT 5
List the names of the city with the top 5 white percentages.
CREATE TABLE city (Name VARCHAR, White VARCHAR)
SELECT league FROM table_name_53 WHERE goals = "10"
What is the league listed that has goals of 10?
CREATE TABLE table_name_53 (league VARCHAR, goals VARCHAR)
SELECT date FROM table_25461946_8 WHERE team = "Dayton"
When did they play Dayton?
CREATE TABLE table_25461946_8 (date VARCHAR, team VARCHAR)
SELECT group_position FROM table_name_80 WHERE result_f_a = "2–0"
Result F–A of 2–0 had what group position?
CREATE TABLE table_name_80 (group_position VARCHAR, result_f_a VARCHAR)
SELECT womens_singles FROM table_12266757_1 WHERE season = "1958/1959"
Who won the womens singles in the 1958/1959 season?
CREATE TABLE table_12266757_1 (womens_singles VARCHAR, season VARCHAR)
SELECT position FROM table_11545282_7 WHERE player = "Lamar Green"
What position did Lamar Green play?
CREATE TABLE table_11545282_7 (position VARCHAR, player VARCHAR)
SELECT elevator FROM table_name_83 WHERE nationality = "crema"
Who is the elevator from crema?
CREATE TABLE table_name_83 (elevator VARCHAR, nationality VARCHAR)
SELECT MAX(attendance) FROM table_name_57 WHERE week > 2 AND date = "october 29, 1961"
What is the top attendance for weeks past 2 on october 29, 1961?
CREATE TABLE table_name_57 (attendance INTEGER, week VARCHAR, date VARCHAR)
SELECT race_caller FROM table_22583466_3 WHERE year = 1998
Who called the race in 1998?
CREATE TABLE table_22583466_3 (race_caller VARCHAR, year VARCHAR)
SELECT MIN(clock_rate__mhz_) FROM table_142573_1 WHERE designation = "RIMM 4200"
Name the least clock rate mhz when designation is rimm 4200
CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER, designation VARCHAR)
SELECT venue FROM table_name_57 WHERE date = "3 september 1972"
What is the venue on 3 September 1972?
CREATE TABLE table_name_57 (venue VARCHAR, date VARCHAR)
SELECT COUNT(rr1_pts) FROM table_21515673_2 WHERE team_name = "Swedish America's Cup Challenge"
How many points does Swedish America's Cup Challenge have for rr1?
CREATE TABLE table_21515673_2 (rr1_pts VARCHAR, team_name VARCHAR)
SELECT MIN(series__number) FROM table_12564633_1 WHERE written_by = "Jack Orman"
What was the first series in this list that Jack Orman wrote?
CREATE TABLE table_12564633_1 (series__number INTEGER, written_by VARCHAR)
SELECT time FROM table_name_83 WHERE method = "tko (strikes)"
What was the time of the bout that ended in a TKO (strikes)?
CREATE TABLE table_name_83 (time VARCHAR, method VARCHAR)
SELECT COUNT(first_elected) FROM table_2668387_18 WHERE incumbent = "John Smith"
Name the number of first elected for john smith
CREATE TABLE table_2668387_18 (first_elected VARCHAR, incumbent VARCHAR)
SELECT COUNT(pick) FROM table_name_68 WHERE school = "virginia tech"
What is the total pick number of Virginia Tech?
CREATE TABLE table_name_68 (pick VARCHAR, school VARCHAR)
SELECT condition FROM table_name_46 WHERE partial_thromboplastin_time = "unaffected" AND platelet_count = "unaffected" AND prothrombin_time = "unaffected"
Which Condition has an unaffected Partial thromboplastin time, Platelet count, and a Prothrombin time?
CREATE TABLE table_name_46 (condition VARCHAR, prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)
SELECT product_id FROM products_booked GROUP BY product_id HAVING COUNT(*) = 3
What is the id of the product that is booked for 3 times?
CREATE TABLE products_booked (product_id VARCHAR)
SELECT T1.name FROM tracks AS T1 JOIN playlist_tracks AS T2 ON T1.id = T2.track_id JOIN playlists AS T3 ON T2.playlist_id = T3.id WHERE T3.name = 'Movies' EXCEPT SELECT T1.name FROM tracks AS T1 JOIN playlist_tracks AS T2 ON T1.id = T2.track_id JOIN playlists AS T3 ON T2.playlist_id = T3.id WHERE T3.name = 'Music'
Find the name of tracks which are in Movies playlist but not in music playlist.
CREATE TABLE playlists (id VARCHAR, name VARCHAR); CREATE TABLE playlist_tracks (track_id VARCHAR, playlist_id VARCHAR); CREATE TABLE tracks (name VARCHAR, id VARCHAR)
SELECT MAX(draws) FROM table_name_1 WHERE goals_against > 33 AND losses = 13 AND goals_for < 51
What is the most draws when goals against are more than 33, losses are 13 and goals for is less than 51?
CREATE TABLE table_name_1 (draws INTEGER, goals_for VARCHAR, goals_against VARCHAR, losses VARCHAR)
SELECT africa FROM table_1914090_2 WHERE australia = 94615
How many members did Africa have the year that Australia had 94615?
CREATE TABLE table_1914090_2 (africa VARCHAR, australia VARCHAR)
SELECT title FROM table_name_59 WHERE arranger = "tarek akef" AND length = "3:50"
What is the title track that is 3:50 and arranged by Tarek Akef?
CREATE TABLE table_name_59 (title VARCHAR, arranger VARCHAR, length VARCHAR)
SELECT date FROM table_1140067_2 WHERE pole_position = "Alain Prost"
What was the date for the pole position of alain prost?
CREATE TABLE table_1140067_2 (date VARCHAR, pole_position VARCHAR)
SELECT MIN(height__m_) FROM table_name_70 WHERE location = "mailänder straße 1, sachsenhausen-süd" AND height__ft_ < 328.1
What is the lowest height in meters for the building located in mailänder straße 1, sachsenhausen-süd, with a height shorter than 328.1 ft?
CREATE TABLE table_name_70 (height__m_ INTEGER, location VARCHAR, height__ft_ VARCHAR)
SELECT COUNt AS season FROM table_2233872_1 WHERE gp = 64 AND result = "lost in round 1"
How many season did the team lost in round 1 with a GP of 64?
CREATE TABLE table_2233872_1 (COUNt VARCHAR, gp VARCHAR, result VARCHAR)
SELECT cuts_made FROM table_name_43 WHERE wins < 3 AND events = 23
What cuts made has a wins less than 3 and 23 for the events?
CREATE TABLE table_name_43 (cuts_made VARCHAR, wins VARCHAR, events VARCHAR)
SELECT MAX(attendance) FROM table_name_67 WHERE result = "l 38-20" AND week < 9
What is the attendance for a week smaller than 9 with a result of L 38-20?
CREATE TABLE table_name_67 (attendance INTEGER, result VARCHAR, week VARCHAR)
SELECT COUNT(party) FROM table_1341640_39 WHERE incumbent = "Donald A. Bailey"
How many parties does the incumbent Donald A. Bailey a member of?
CREATE TABLE table_1341640_39 (party VARCHAR, incumbent VARCHAR)
SELECT isbn FROM table_name_54 WHERE japanese_title = "霧の訪問者 (kiri no hōmonsha)"
What is the ISBN of Japanese Title of 霧の訪問者 (kiri no hōmonsha)?
CREATE TABLE table_name_54 (isbn VARCHAR, japanese_title VARCHAR)
SELECT COUNT(lead_margin) FROM table_17538810_10 WHERE dates_administered = "September 11, 2008"
How many different lead margins were stated in the poll administered on September 11, 2008?
CREATE TABLE table_17538810_10 (lead_margin VARCHAR, dates_administered VARCHAR)
SELECT result FROM table_21063459_1 WHERE opponent = "Mississippi State"
What was the result of the game against Mississippi State?
CREATE TABLE table_21063459_1 (result VARCHAR, opponent VARCHAR)
SELECT jury_votes FROM table_19763199_4 WHERE televotes = 7
How many jury votes for the televote of 7?
CREATE TABLE table_19763199_4 (jury_votes VARCHAR, televotes VARCHAR)
SELECT mens_doubles FROM table_12171145_1 WHERE mens_singles = "Flemming Delfs"
Who is themens doubles when the mens singles is flemming delfs?
CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
SELECT MIN(game) FROM table_18894744_5 WHERE record = "8-3"
Name the least game for 8-3
CREATE TABLE table_18894744_5 (game INTEGER, record VARCHAR)
SELECT grid FROM table_name_28 WHERE rider = "shinya nakano"
What is the grid of rider shinya nakano?
CREATE TABLE table_name_28 (grid VARCHAR, rider VARCHAR)
SELECT tie_no FROM table_name_38 WHERE home_team = "walsall"
What is the Ti no of the Walsall Home game?
CREATE TABLE table_name_38 (tie_no VARCHAR, home_team VARCHAR)
SELECT moving_to FROM table_name_64 WHERE transfer_fee = "undisclosed" AND name = "odjidja-ofoe"
Where is Odjidja-Ofoe, with an undisclosed transfer fee, moving to?
CREATE TABLE table_name_64 (moving_to VARCHAR, transfer_fee VARCHAR, name VARCHAR)
SELECT MIN(class_year) FROM table_22982552_9 WHERE highlight_s_ = "35 career INTs"
What class year was the player whose highlights were 35 career INTs from?
CREATE TABLE table_22982552_9 (class_year INTEGER, highlight_s_ VARCHAR)
SELECT T1.fault_short_name, T3.skill_description FROM Part_Faults AS T1 JOIN Skills_Required_To_Fix AS T2 ON T1.part_fault_id = T2.part_fault_id JOIN Skills AS T3 ON T2.skill_id = T3.skill_id
For all the faults of different parts, what are all the decriptions of the skills required to fix them? List the name of the faults and the skill description.
CREATE TABLE Skills_Required_To_Fix (part_fault_id VARCHAR, skill_id VARCHAR); CREATE TABLE Part_Faults (fault_short_name VARCHAR, part_fault_id VARCHAR); CREATE TABLE Skills (skill_description VARCHAR, skill_id VARCHAR)
SELECT opponent_in_the_final FROM table_name_33 WHERE date = "28 july 2013"
Who was the opponent on the 28 july 2013 final?
CREATE TABLE table_name_33 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT COUNT(candidates) FROM table_1341930_40 WHERE incumbent = "L. Mendel Rivers"
Name the candidates for l. mendel rivers
CREATE TABLE table_1341930_40 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(film_title_used_in_nomination) FROM table_22032599_1 WHERE director = "Martin Repka Category:Articles with hCards"
HOw many films did martin repka category:articles with hcards direct?
CREATE TABLE table_22032599_1 (film_title_used_in_nomination VARCHAR, director VARCHAR)
SELECT residence FROM table_name_49 WHERE representative = "quincy murphy"
What residence has representative Quincy Murphy?
CREATE TABLE table_name_49 (residence VARCHAR, representative VARCHAR)
SELECT winning_driver FROM table_1137702_3 WHERE grand_prix = "Belgian grand_prix"
Who was the winning driver when the grand Prix was at Belgian Grand Prix?
CREATE TABLE table_1137702_3 (winning_driver VARCHAR, grand_prix VARCHAR)
SELECT result FROM table_1342370_23 WHERE incumbent = "William Madison Whittington"
What was the result of the election featuring william madison whittington?
CREATE TABLE table_1342370_23 (result VARCHAR, incumbent VARCHAR)
SELECT Former AS name FROM table_name_79 WHERE rank = 49
Name the former name for 49 rank
CREATE TABLE table_name_79 (Former VARCHAR, rank VARCHAR)
SELECT AVG(laps) FROM table_name_5 WHERE time = "+23.002" AND grid < 11
Which Laps have a Time of +23.002, and a Grid smaller than 11?
CREATE TABLE table_name_5 (laps INTEGER, time VARCHAR, grid VARCHAR)
SELECT SUM(asts) FROM table_name_35 WHERE school_country = "boston college" AND rebs > 63
What's the sum of asts for boston college with a rebs over 63?
CREATE TABLE table_name_35 (asts INTEGER, school_country VARCHAR, rebs VARCHAR)