combined_text
stringlengths
106
1.05k
###question:How many games had 22 goals before 1935?###answer:SELECT SUM(games) FROM table_name_23 WHERE goals = 22 AND debut_year < 1935###context:CREATE TABLE table_name_23 (games INTEGER, goals VARCHAR, debut_year VARCHAR)
###question:What is the average games a player born on 17 March 1915 and debut before 1935 had?###answer:SELECT AVG(games) FROM table_name_68 WHERE date_of_birth = "17 march 1915" AND debut_year < 1935###context:CREATE TABLE table_name_68 (games INTEGER, date_of_birth VARCHAR, debut_year VARCHAR)
###question:What is the lowest number of games Jack Gaudion, who debut in 1936, played?###answer:SELECT MIN(games) FROM table_name_88 WHERE debut_year = 1936 AND player = "jack gaudion"###context:CREATE TABLE table_name_88 (games INTEGER, debut_year VARCHAR, player VARCHAR)
###question:What is the years at the club of the player with 2 goals and was born on 23 July 1910?###answer:SELECT years_at_club FROM table_name_63 WHERE goals = 2 AND date_of_birth = "23 july 1910"###context:CREATE TABLE table_name_63 (years_at_club VARCHAR, goals VARCHAR, date_of_birth VARCHAR)
###question:During the play-off quarter-final which team scored position was the team that scored 56 points?###answer:SELECT pos FROM table_name_91 WHERE play_offs = "quarter-final" AND pts = "56"###context:CREATE TABLE table_name_91 (pos VARCHAR, play_offs VARCHAR, pts VARCHAR)
###question:What is the score when Philadelphia is at home?###answer:SELECT score FROM table_name_84 WHERE home = "philadelphia"###context:CREATE TABLE table_name_84 (score VARCHAR, home VARCHAR)
###question:What is the record on December 4?###answer:SELECT record FROM table_name_55 WHERE date = "december 4"###context:CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)
###question:what is the decision when the record is 13–10–4?###answer:SELECT decision FROM table_name_84 WHERE record = "13–10–4"###context:CREATE TABLE table_name_84 (decision VARCHAR, record VARCHAR)
###question:What is the lowest attendance total on August 26?###answer:SELECT MIN(attendance) FROM table_name_71 WHERE date = "august 26"###context:CREATE TABLE table_name_71 (attendance INTEGER, date VARCHAR)
###question:What is the sum of the year for 5 february?###answer:SELECT SUM(year) FROM table_name_1 WHERE date = "5 february"###context:CREATE TABLE table_name_1 (year INTEGER, date VARCHAR)
###question:What was the location for a year later than 2012?###answer:SELECT location FROM table_name_82 WHERE year > 2012###context:CREATE TABLE table_name_82 (location VARCHAR, year INTEGER)
###question:who is the constructor when the laps is more than 72 and the driver is eddie irvine?###answer:SELECT constructor FROM table_name_33 WHERE laps > 72 AND driver = "eddie irvine"###context:CREATE TABLE table_name_33 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)
###question:What was the record of the game where the Rockets were the visiting team?###answer:SELECT record FROM table_name_16 WHERE visitor = "rockets"###context:CREATE TABLE table_name_16 (record VARCHAR, visitor VARCHAR)
###question:What's the voltage for the pentium dual-core e2140?###answer:SELECT voltage FROM table_name_49 WHERE model_number = "pentium dual-core e2140"###context:CREATE TABLE table_name_49 (voltage VARCHAR, model_number VARCHAR)
###question:What part number(s) has a frequency of 2.4 ghz?###answer:SELECT part_number_s_ FROM table_name_20 WHERE frequency = "2.4 ghz"###context:CREATE TABLE table_name_20 (part_number_s_ VARCHAR, frequency VARCHAR)
###question:What's the release price (USD) for part number hh80557pg0491m?###answer:SELECT release_price___usd__ FROM table_name_98 WHERE part_number_s_ = "hh80557pg0491m"###context:CREATE TABLE table_name_98 (release_price___usd__ VARCHAR, part_number_s_ VARCHAR)
###question:What L2 cache had a release date of august 26, 2007?###answer:SELECT l2_cache FROM table_name_71 WHERE release_date = "august 26, 2007"###context:CREATE TABLE table_name_71 (l2_cache VARCHAR, release_date VARCHAR)
###question:Where did the team in which Tom Pryce was in Pole Position race?###answer:SELECT location FROM table_name_10 WHERE pole_position = "tom pryce"###context:CREATE TABLE table_name_10 (location VARCHAR, pole_position VARCHAR)
###question:Who ran the fastest lap in the team that competed in Zolder, in which Ferrari was the Constructor?###answer:SELECT fastest_lap FROM table_name_39 WHERE constructor = "ferrari" AND location = "zolder"###context:CREATE TABLE table_name_39 (fastest_lap VARCHAR, constructor VARCHAR, location VARCHAR)
###question:What tournament was on Jan 29, 2012?###answer:SELECT tournament FROM table_name_8 WHERE date = "jan 29, 2012"###context:CREATE TABLE table_name_8 (tournament VARCHAR, date VARCHAR)
###question:What is the to par of the match with a winning score 69-67-72-64=272?###answer:SELECT to_par FROM table_name_25 WHERE winning_score = 69 - 67 - 72 - 64 = 272###context:CREATE TABLE table_name_25 (to_par VARCHAR, winning_score VARCHAR)
###question:What is the episode number of the episode that originally aired on January 26, 2009 and had a production number smaller than 38?###answer:SELECT COUNT(episode_no) FROM table_name_53 WHERE original_airdate = "january 26, 2009" AND production_no < 38###context:CREATE TABLE table_name_53 (episode_no VARCHAR, o...
###question:Who acquired tom norton?###answer:SELECT acquired FROM table_name_1 WHERE player = "tom norton"###context:CREATE TABLE table_name_1 (acquired VARCHAR, player VARCHAR)
###question:Where did Geelong play as the home team?###answer:SELECT venue FROM table_name_4 WHERE home_team = "geelong"###context:CREATE TABLE table_name_4 (venue VARCHAR, home_team VARCHAR)
###question:Where did North Melbourne play as the home team?###answer:SELECT venue FROM table_name_25 WHERE home_team = "north melbourne"###context:CREATE TABLE table_name_25 (venue VARCHAR, home_team VARCHAR)
###question:What did the away team score when playing Footscray?###answer:SELECT away_team AS score FROM table_name_37 WHERE home_team = "footscray"###context:CREATE TABLE table_name_37 (away_team VARCHAR, home_team VARCHAR)
###question:What's the record for October 8, 2000 before week 13?###answer:SELECT record FROM table_name_61 WHERE week < 13 AND date = "october 8, 2000"###context:CREATE TABLE table_name_61 (record VARCHAR, week VARCHAR, date VARCHAR)
###question:What game site has a result of bye?###answer:SELECT game_site FROM table_name_52 WHERE result = "bye"###context:CREATE TABLE table_name_52 (game_site VARCHAR, result VARCHAR)
###question:What's the record after week 16?###answer:SELECT record FROM table_name_80 WHERE week > 16###context:CREATE TABLE table_name_80 (record VARCHAR, week INTEGER)
###question:What's the result at psinet stadium when the cincinnati bengals are the opponent?###answer:SELECT result FROM table_name_39 WHERE game_site = "psinet stadium" AND opponent = "cincinnati bengals"###context:CREATE TABLE table_name_39 (result VARCHAR, game_site VARCHAR, opponent VARCHAR)
###question:What's the record after week 12 with a game site of bye?###answer:SELECT record FROM table_name_26 WHERE week > 12 AND game_site = "bye"###context:CREATE TABLE table_name_26 (record VARCHAR, week VARCHAR, game_site VARCHAR)
###question:What day has a callback Venue of total tickets to hollywood? Question###answer:SELECT date FROM table_name_73 WHERE callback_venue = "total tickets to hollywood"###context:CREATE TABLE table_name_73 (date VARCHAR, callback_venue VARCHAR)
###question:How many golden tickets for the georgia international convention center?###answer:SELECT SUM(golden_tickets) FROM table_name_85 WHERE callback_venue = "georgia international convention center"###context:CREATE TABLE table_name_85 (golden_tickets INTEGER, callback_venue VARCHAR)
###question:What class is associated with a W.A. of 0-8-0?###answer:SELECT class FROM table_name_10 WHERE wa = "0-8-0"###context:CREATE TABLE table_name_10 (class VARCHAR, wa VARCHAR)
###question:Who was the Opponent at the Game Site Indianapolis Hoosierdome?###answer:SELECT opponent FROM table_name_21 WHERE game_site = "indianapolis hoosierdome"###context:CREATE TABLE table_name_21 (opponent VARCHAR, game_site VARCHAR)
###question:What is the St Kilda Away team score?###answer:SELECT away_team AS score FROM table_name_24 WHERE away_team = "st kilda"###context:CREATE TABLE table_name_24 (away_team VARCHAR)
###question:Tell me the highest snatch for 68.63 bodyweight and total kg less than 290###answer:SELECT MAX(snatch) FROM table_name_65 WHERE bodyweight = 68.63 AND total__kg_ < 290###context:CREATE TABLE table_name_65 (snatch INTEGER, bodyweight VARCHAR, total__kg_ VARCHAR)
###question:Tell me the total number of snatches for clean and jerk more than 132.5 when the total kg was 315 and bodyweight was 68.63###answer:SELECT COUNT(snatch) FROM table_name_62 WHERE clean_ & _jerk > 132.5 AND total__kg_ = 315 AND bodyweight = 68.63###context:CREATE TABLE table_name_62 (snatch VARCHAR, bodyweigh...
###question:Name the average clean and jerk for snatch of 140 and total kg less than 315###answer:SELECT AVG(clean_) & _jerk FROM table_name_10 WHERE snatch = 140 AND total__kg_ < 315###context:CREATE TABLE table_name_10 (_jerk VARCHAR, clean_ INTEGER, snatch VARCHAR, total__kg_ VARCHAR)
###question:Who constructed the car that Derek Warwick raced in with a TG181 chassis?###answer:SELECT constructor FROM table_name_20 WHERE chassis = "tg181" AND driver = "derek warwick"###context:CREATE TABLE table_name_20 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR)
###question:Which player has a Club/province of direito, less than 21 caps, and a Position of lock?###answer:SELECT player FROM table_name_99 WHERE club_province = "direito" AND caps < 21 AND position = "lock"###context:CREATE TABLE table_name_99 (player VARCHAR, position VARCHAR, club_province VARCHAR, caps VARCHAR)
###question:How many caps have a Position of prop, and a Player of rui cordeiro?###answer:SELECT COUNT(caps) FROM table_name_6 WHERE position = "prop" AND player = "rui cordeiro"###context:CREATE TABLE table_name_6 (caps VARCHAR, position VARCHAR, player VARCHAR)
###question:Which Club/province has a Player of david penalva?###answer:SELECT club_province FROM table_name_41 WHERE player = "david penalva"###context:CREATE TABLE table_name_41 (club_province VARCHAR, player VARCHAR)
###question:How many caps have a Date of Birth (Age) of 15 july 1981?###answer:SELECT COUNT(caps) FROM table_name_49 WHERE date_of_birth__age_ = "15 july 1981"###context:CREATE TABLE table_name_49 (caps VARCHAR, date_of_birth__age_ VARCHAR)
###question:Which player has a Position of fly-half, and a Caps of 3?###answer:SELECT player FROM table_name_41 WHERE position = "fly-half" AND caps = 3###context:CREATE TABLE table_name_41 (player VARCHAR, position VARCHAR, caps VARCHAR)
###question:What constituency does the Conservative Darren Millar belong to?###answer:SELECT constituency FROM table_name_93 WHERE conservative = "darren millar"###context:CREATE TABLE table_name_93 (constituency VARCHAR, conservative VARCHAR)
###question:In what constituency was the result labour hold and Liberal democrat Elizabeth Newton won?###answer:SELECT constituency FROM table_name_12 WHERE result = "labour hold" AND liberal_democrats = "elizabeth newton"###context:CREATE TABLE table_name_12 (constituency VARCHAR, result VARCHAR, liberal_democrats VAR...
###question:Who has the Winning score of –10 (66-71-62-71=270) ?###answer:SELECT runner_s__up FROM table_name_21 WHERE winning_score = –10(66 - 71 - 62 - 71 = 270)###context:CREATE TABLE table_name_21 (runner_s__up VARCHAR, winning_score VARCHAR)
###question:Who is Runner(s)-up that has a Date of may 24, 1999?###answer:SELECT runner_s__up FROM table_name_37 WHERE date = "may 24, 1999"###context:CREATE TABLE table_name_37 (runner_s__up VARCHAR, date VARCHAR)
###question:Which Tournament has a Margin of victory of 7 strokes###answer:SELECT tournament FROM table_name_38 WHERE margin_of_victory = "7 strokes"###context:CREATE TABLE table_name_38 (tournament VARCHAR, margin_of_victory VARCHAR)
###question:What was the decision of the Kings game when Chicago was the visiting team?###answer:SELECT decision FROM table_name_71 WHERE visitor = "chicago"###context:CREATE TABLE table_name_71 (decision VARCHAR, visitor VARCHAR)
###question:What round was the nose tackle drafted?###answer:SELECT SUM(round) FROM table_name_38 WHERE position = "nose tackle"###context:CREATE TABLE table_name_38 (round INTEGER, position VARCHAR)
###question:What is the Record when Buffalo is at Home?###answer:SELECT record FROM table_name_36 WHERE home = "buffalo"###context:CREATE TABLE table_name_36 (record VARCHAR, home VARCHAR)
###question:What were the winnings for the Chevrolet with a number larger than 29 and scored 102 points?###answer:SELECT winnings FROM table_name_65 WHERE make = "chevrolet" AND car__number > 29 AND points = 102###context:CREATE TABLE table_name_65 (winnings VARCHAR, points VARCHAR, make VARCHAR, car__number VARCHAR)
###question:What is the make of car 31?###answer:SELECT make FROM table_name_47 WHERE car__number = 31###context:CREATE TABLE table_name_47 (make VARCHAR, car__number VARCHAR)
###question:What is the car number that has less than 369 laps for a Dodge with more than 49 points?###answer:SELECT SUM(car__number) FROM table_name_62 WHERE laps < 369 AND make = "dodge" AND points > 49###context:CREATE TABLE table_name_62 (car__number INTEGER, points VARCHAR, laps VARCHAR, make VARCHAR)
###question:Tell me the total number of ties for name of totals and lost more than 30###answer:SELECT COUNT(ties) FROM table_name_27 WHERE name = "totals" AND lost > 30###context:CREATE TABLE table_name_27 (ties VARCHAR, name VARCHAR, lost VARCHAR)
###question:I want the total number of ties for win % more than 0 and tenure of 2001-2011 with lost more than 16###answer:SELECT COUNT(ties) FROM table_name_3 WHERE win__percentage > 0 AND tenure = "2001-2011" AND lost > 16###context:CREATE TABLE table_name_3 (ties VARCHAR, lost VARCHAR, win__percentage VARCHAR, tenure...
###question:What's the record when the attendance was 28,531?###answer:SELECT record FROM table_name_62 WHERE attendance = "28,531"###context:CREATE TABLE table_name_62 (record VARCHAR, attendance VARCHAR)
###question:What's the record when the attendance was 41,573?###answer:SELECT record FROM table_name_25 WHERE attendance = "41,573"###context:CREATE TABLE table_name_25 (record VARCHAR, attendance VARCHAR)
###question:Who's the opponent for June 13?###answer:SELECT opponent FROM table_name_88 WHERE date = "june 13"###context:CREATE TABLE table_name_88 (opponent VARCHAR, date VARCHAR)
###question:Where does center Joakim Andersson come from?###answer:SELECT nationality FROM table_name_67 WHERE position = "center" AND player = "joakim andersson"###context:CREATE TABLE table_name_67 (nationality VARCHAR, position VARCHAR, player VARCHAR)
###question:What position does Zack Torquato play?###answer:SELECT position FROM table_name_6 WHERE player = "zack torquato"###context:CREATE TABLE table_name_6 (position VARCHAR, player VARCHAR)
###question:When a lane of 4 has a QUART greater than 44.62, what is the lowest HEAT?###answer:SELECT MIN(heat) FROM table_name_44 WHERE lane = 4 AND quart > 44.62###context:CREATE TABLE table_name_44 (heat INTEGER, lane VARCHAR, quart VARCHAR)
###question:When did the game at Arden Street Oval occur?###answer:SELECT date FROM table_name_7 WHERE venue = "arden street oval"###context:CREATE TABLE table_name_7 (date VARCHAR, venue VARCHAR)
###question:What did the away team score when playing North Melbourne?###answer:SELECT away_team AS score FROM table_name_79 WHERE home_team = "north melbourne"###context:CREATE TABLE table_name_79 (away_team VARCHAR, home_team VARCHAR)
###question:How many people attended the game at VFL Park?###answer:SELECT SUM(crowd) FROM table_name_71 WHERE venue = "vfl park"###context:CREATE TABLE table_name_71 (crowd INTEGER, venue VARCHAR)
###question:When the home team was fitzroy, what did the away team score?###answer:SELECT away_team AS score FROM table_name_16 WHERE home_team = "fitzroy"###context:CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)
###question:Name the fastest lap for the brazilian grand prix###answer:SELECT fastest_lap FROM table_name_39 WHERE grand_prix = "brazilian grand prix"###context:CREATE TABLE table_name_39 (fastest_lap VARCHAR, grand_prix VARCHAR)
###question:Name the pole position at the japanese grand prix when the fastest lap is damon hill###answer:SELECT pole_position FROM table_name_62 WHERE fastest_lap = "damon hill" AND grand_prix = "japanese grand prix"###context:CREATE TABLE table_name_62 (pole_position VARCHAR, fastest_lap VARCHAR, grand_prix VARCHAR)
###question:Name the lowest round for when pole position and winning driver is michael schumacher###answer:SELECT MIN(round) FROM table_name_27 WHERE fastest_lap = "michael schumacher" AND winning_driver = "michael schumacher" AND pole_position = "michael schumacher"###context:CREATE TABLE table_name_27 (round INTEGER,...
###question:How many reg GP for nathan barrett in a round less than 8?###answer:SELECT COUNT(reg_gp) FROM table_name_62 WHERE player = "nathan barrett" AND rd__number < 8###context:CREATE TABLE table_name_62 (reg_gp VARCHAR, player VARCHAR, rd__number VARCHAR)
###question:What organization ranks 68?###answer:SELECT organization FROM table_name_14 WHERE rank = "68"###context:CREATE TABLE table_name_14 (organization VARCHAR, rank VARCHAR)
###question:What year is the happy planet index?###answer:SELECT SUM(year) FROM table_name_79 WHERE index = "happy planet index"###context:CREATE TABLE table_name_79 (year INTEGER, index VARCHAR)
###question:What year for the legatum institute?###answer:SELECT year FROM table_name_79 WHERE organization = "legatum institute"###context:CREATE TABLE table_name_79 (year VARCHAR, organization VARCHAR)
###question:What 1st leg has Alense Vivaldi (Trentino) as Agg.?###answer:SELECT 1 AS st_leg FROM table_name_58 WHERE agg = "alense vivaldi (trentino)"###context:CREATE TABLE table_name_58 (agg VARCHAR)
###question:What is the grid for the Minardi Team USA with laps smaller than 90?###answer:SELECT grid FROM table_name_42 WHERE laps < 90 AND team = "minardi team usa"###context:CREATE TABLE table_name_42 (grid VARCHAR, laps VARCHAR, team VARCHAR)
###question:What is Fitzroy's Home team score?###answer:SELECT home_team AS score FROM table_name_60 WHERE home_team = "fitzroy"###context:CREATE TABLE table_name_60 (home_team VARCHAR)
###question:What is Fitzroy's Home team Crowd?###answer:SELECT SUM(crowd) FROM table_name_90 WHERE home_team = "fitzroy"###context:CREATE TABLE table_name_90 (crowd INTEGER, home_team VARCHAR)
###question:What is the average gold total for nations ranked 6 with 1 total medal and 1 bronze medal?###answer:SELECT AVG(gold) FROM table_name_90 WHERE total = 1 AND rank = "6" AND bronze > 1###context:CREATE TABLE table_name_90 (gold INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR)
###question:Who drove the grid 10 car?###answer:SELECT driver FROM table_name_3 WHERE grid = 10###context:CREATE TABLE table_name_3 (driver VARCHAR, grid VARCHAR)
###question:Who drive the car that went under 60 laps and spun off?###answer:SELECT driver FROM table_name_25 WHERE laps < 60 AND time_retired = "spun off"###context:CREATE TABLE table_name_25 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR)
###question:What number of Yards has 32 as an In 20?###answer:SELECT COUNT(yards) FROM table_name_90 WHERE in_20 = 32###context:CREATE TABLE table_name_90 (yards VARCHAR, in_20 VARCHAR)
###question:What was the score on June 12?###answer:SELECT score FROM table_name_76 WHERE date = "june 12"###context:CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)
###question:What is the top attendance for weeks past 2 on october 29, 1961?###answer:SELECT MAX(attendance) FROM table_name_57 WHERE week > 2 AND date = "october 29, 1961"###context:CREATE TABLE table_name_57 (attendance INTEGER, week VARCHAR, date VARCHAR)
###question:What is the low week from october 15, 1961?###answer:SELECT MIN(week) FROM table_name_82 WHERE date = "october 15, 1961"###context:CREATE TABLE table_name_82 (week INTEGER, date VARCHAR)
###question:What is the low attendance rate against buffalo bills?###answer:SELECT MIN(attendance) FROM table_name_98 WHERE opponent = "buffalo bills"###context:CREATE TABLE table_name_98 (attendance INTEGER, opponent VARCHAR)
###question:What team played on November 28?###answer:SELECT team FROM table_name_37 WHERE date = "november 28"###context:CREATE TABLE table_name_37 (team VARCHAR, date VARCHAR)
###question:What driver has a Time/Retired of 2:16:38.0?###answer:SELECT driver FROM table_name_19 WHERE time_retired = "2:16:38.0"###context:CREATE TABLE table_name_19 (driver VARCHAR, time_retired VARCHAR)
###question:What time/retired for grid 18?###answer:SELECT time_retired FROM table_name_49 WHERE grid = 18###context:CREATE TABLE table_name_49 (time_retired VARCHAR, grid VARCHAR)
###question:What was the Venue of the North Melbourne Away Team?###answer:SELECT venue FROM table_name_33 WHERE away_team = "north melbourne"###context:CREATE TABLE table_name_33 (venue VARCHAR, away_team VARCHAR)
###question:On what Date is Delta 0:40?###answer:SELECT date FROM table_name_7 WHERE delta = "0:40"###context:CREATE TABLE table_name_7 (date VARCHAR, delta VARCHAR)
###question:Who is the Winner on June 2, 2007?###answer:SELECT winner FROM table_name_44 WHERE date = "june 2, 2007"###context:CREATE TABLE table_name_44 (winner VARCHAR, date VARCHAR)
###question:What did the home team of essendon score?###answer:SELECT home_team AS score FROM table_name_78 WHERE home_team = "essendon"###context:CREATE TABLE table_name_78 (home_team VARCHAR)
###question:When the venue was lake oval what did the home team score?###answer:SELECT home_team AS score FROM table_name_56 WHERE venue = "lake oval"###context:CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR)
###question:What did the away team score when they were playing collingwood?###answer:SELECT away_team AS score FROM table_name_47 WHERE home_team = "collingwood"###context:CREATE TABLE table_name_47 (away_team VARCHAR, home_team VARCHAR)
###question:What is the position of the player from Fort Lauderdale, Florida?###answer:SELECT position FROM table_name_3 WHERE hometown = "fort lauderdale, florida"###context:CREATE TABLE table_name_3 (position VARCHAR, hometown VARCHAR)
###question:What is the position of the player from Beaumont, Texas?###answer:SELECT position FROM table_name_83 WHERE hometown = "beaumont, texas"###context:CREATE TABLE table_name_83 (position VARCHAR, hometown VARCHAR)
###question:What position did Max Redfield play?###answer:SELECT position FROM table_name_97 WHERE player = "max redfield"###context:CREATE TABLE table_name_97 (position VARCHAR, player VARCHAR)
###question:What college did the player from Liberty County High School attend?###answer:SELECT college FROM table_name_58 WHERE school = "liberty county high school"###context:CREATE TABLE table_name_58 (college VARCHAR, school VARCHAR)