answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT last_appearance FROM table_name_65 WHERE wins < 1 AND losses = 1 AND school = "oklahoma state"
CREATE TABLE table_name_65 (last_appearance VARCHAR, school VARCHAR, wins VARCHAR, losses VARCHAR)
What is Last Appearance, when Wins is less than 1, when Losses is 1, and when School is Oklahoma State?
SELECT college FROM table_name_34 WHERE pick < 145 AND player = "jeff wilkins"
CREATE TABLE table_name_34 (college VARCHAR, pick VARCHAR, player VARCHAR)
What is College, when Pick is less than 145, and when Player is Jeff Wilkins?
SELECT nationality FROM table_name_2 WHERE college = "illinois state"
CREATE TABLE table_name_2 (nationality VARCHAR, college VARCHAR)
What is Nationality, and when College is Illinois State?
SELECT nationality FROM table_name_5 WHERE round = 6
CREATE TABLE table_name_5 (nationality VARCHAR, round VARCHAR)
What is Nationality, when Round is 6?
SELECT COUNT(round) FROM table_name_39 WHERE college = "northern illinois"
CREATE TABLE table_name_39 (round VARCHAR, college VARCHAR)
What is the total number of Round, when College is Northern Illinois?
SELECT AVG(bronze) FROM table_name_85 WHERE total = 2 AND silver < 1 AND gold > 1
CREATE TABLE table_name_85 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR)
What is the average bronze when the total is 2, silver is less than 1 and gold is more than 1?
SELECT AVG(silver) FROM table_name_66 WHERE total > 20
CREATE TABLE table_name_66 (silver INTEGER, total INTEGER)
what is the average silver when the total is more than 20?
SELECT MAX(rank) FROM table_name_23 WHERE nation = "united states (usa)" AND bronze > 1
CREATE TABLE table_name_23 (rank INTEGER, nation VARCHAR, bronze VARCHAR)
what is the highest rank when the nation is united states (usa) and bronze is more than 1?
SELECT AVG(total) FROM table_name_99 WHERE bronze > 0 AND gold = 0 AND nation = "united states (usa)" AND silver < 0
CREATE TABLE table_name_99 (total INTEGER, silver VARCHAR, nation VARCHAR, bronze VARCHAR, gold VARCHAR)
what is the average total when bronze is more than 0, gold is 0, the nation is united states (usa) and silver is 0?
SELECT res FROM table_name_67 WHERE opponent = "enrique guzman"
CREATE TABLE table_name_67 (res VARCHAR, opponent VARCHAR)
What was the resolution for the fight against enrique guzman?
SELECT res FROM table_name_20 WHERE record = "8-6"
CREATE TABLE table_name_20 (res VARCHAR, record VARCHAR)
What was the resolution of the fight when Nate Mohr's record was 8-6?
SELECT MIN(third) FROM table_name_37 WHERE club = "es sahel" AND rank < 3
CREATE TABLE table_name_37 (third INTEGER, club VARCHAR, rank VARCHAR)
What is the smallest number of third place earned for the Es Sahel at a rank less than 3?
SELECT club FROM table_name_12 WHERE runners_up = 1 AND winners = 0 AND third = 2
CREATE TABLE table_name_12 (club VARCHAR, third VARCHAR, runners_up VARCHAR, winners VARCHAR)
Which club has 1 runners-up with 0 winners and 2 third place earned?
SELECT name FROM table_name_10 WHERE bonus > 1 AND only_point > 7 AND total_point < 21
CREATE TABLE table_name_10 (name VARCHAR, total_point VARCHAR, bonus VARCHAR, only_point VARCHAR)
What is Name, when Bonus is greater than 1, when Only Point is greater than 7, and when Total Point is less than 21?
SELECT name FROM table_name_47 WHERE only_point > 1 AND catch_taken > 3 AND bonus > 4 AND total_point < 30
CREATE TABLE table_name_47 (name VARCHAR, total_point VARCHAR, bonus VARCHAR, only_point VARCHAR, catch_taken VARCHAR)
What is Name, when Only Point is greater than 1, when Catch Taken is greater than 3, when Bonus is greater than 4, and when Total Point is less than 30?
SELECT COUNT(grid) FROM table_name_11 WHERE manufacturer = "ducati" AND rider = "casey stoner" AND laps < 27
CREATE TABLE table_name_11 (grid VARCHAR, laps VARCHAR, manufacturer VARCHAR, rider VARCHAR)
How many grids does Ducati have with Casey Stoner as a rider with fewer than 27 laps?
SELECT manufacturer FROM table_name_11 WHERE time = "+10.142"
CREATE TABLE table_name_11 (manufacturer VARCHAR, time VARCHAR)
Which manufacturer has a time of +10.142?
SELECT time FROM table_name_30 WHERE rider = "loris capirossi"
CREATE TABLE table_name_30 (time VARCHAR, rider VARCHAR)
What is Loris Capirossi's time?
SELECT MAX(laps) FROM table_name_52 WHERE grid > 19 AND time_retired = "fuel"
CREATE TABLE table_name_52 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)
What were the highest laps when the grid was larger than 19 and the time/retired was fuel?
SELECT team FROM table_name_80 WHERE laps = 65 AND grid < 20 AND driver = "scott pruett"
CREATE TABLE table_name_80 (team VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)
Which team did Scott Pruett drive for when the grid was smaller than 20 and there were 65 laps?
SELECT COUNT(date) FROM table_name_94 WHERE boiler_type = "forward topfeed" AND built_at = "crewe" AND lot_no < 187
CREATE TABLE table_name_94 (date VARCHAR, lot_no VARCHAR, boiler_type VARCHAR, built_at VARCHAR)
What year is the date when the boiler type is forward topfeed, the built at is Crewe, and lot number is less than 187?
SELECT date FROM table_name_62 WHERE goal = 2
CREATE TABLE table_name_62 (date VARCHAR, goal VARCHAR)
What was the date of the game where Esteban Paredes scored 2 goals?
SELECT MAX(attendance) FROM table_name_82 WHERE opponent = "los angeles rams" AND week < 11
CREATE TABLE table_name_82 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
What is the highest attendance when the opponent is the Los Angeles Rams and the week is less than 11?
SELECT result FROM table_name_60 WHERE week > 7 AND opponent = "houston oilers"
CREATE TABLE table_name_60 (result VARCHAR, week VARCHAR, opponent VARCHAR)
What is the result when the week is greater than 7 and the Houston Oilers were the opponent?
SELECT record FROM table_name_4 WHERE location_attendance = "izod center 16,911"
CREATE TABLE table_name_4 (record VARCHAR, location_attendance VARCHAR)
What is Record, when Location Attendance is "Izod Center 16,911"?
SELECT high_rebounds FROM table_name_86 WHERE high_assists = "delonte west (10)"
CREATE TABLE table_name_86 (high_rebounds VARCHAR, high_assists VARCHAR)
What is High Rebounds, when High Assists is "Delonte West (10)"?
SELECT catalog FROM table_name_16 WHERE label = "epic records" AND format = "cd"
CREATE TABLE table_name_16 (catalog VARCHAR, label VARCHAR, format VARCHAR)
What catalog had an Epic Records label in CD format?
SELECT label FROM table_name_37 WHERE region = "australia"
CREATE TABLE table_name_37 (label VARCHAR, region VARCHAR)
Which label is in Australia?
SELECT record FROM table_name_38 WHERE time = "2:43"
CREATE TABLE table_name_38 (record VARCHAR, time VARCHAR)
The match that lasted 2:43 has what record?
SELECT method FROM table_name_54 WHERE venue = "club med sandpiper"
CREATE TABLE table_name_54 (method VARCHAR, venue VARCHAR)
The match that was held at Club Med Sandpiper has what method?
SELECT record FROM table_name_83 WHERE time = "3:00" AND venue = "michael's eighth avenue" AND opponent = "tim coleman"
CREATE TABLE table_name_83 (record VARCHAR, opponent VARCHAR, time VARCHAR, venue VARCHAR)
The match of at Michael's Eighth Avenue venue against Tim Coleman that went 3:00 has what record?
SELECT method FROM table_name_88 WHERE venue = "club med sandpiper"
CREATE TABLE table_name_88 (method VARCHAR, venue VARCHAR)
What method did the match at Club Med Sandpiper have?
SELECT label FROM table_name_87 WHERE catalog = "lpm-2899"
CREATE TABLE table_name_87 (label VARCHAR, catalog VARCHAR)
What is the Label of the release with Catalog number LPM-2899?
SELECT date FROM table_name_57 WHERE label = "rca" AND catalog = "sf-7635"
CREATE TABLE table_name_57 (date VARCHAR, label VARCHAR, catalog VARCHAR)
What is the Date of the RCA release with Catalog number SF-7635?
SELECT catalog FROM table_name_58 WHERE label = "rca"
CREATE TABLE table_name_58 (catalog VARCHAR, label VARCHAR)
What is the Catalog of the RCA release?
SELECT catalog FROM table_name_79 WHERE format = "cd reissue" AND label = "universal"
CREATE TABLE table_name_79 (catalog VARCHAR, format VARCHAR, label VARCHAR)
What is the Catalog number of the CD Reissue Universal release?
SELECT label FROM table_name_75 WHERE format = "stereo vinyl lp" AND catalog = "sf-7635"
CREATE TABLE table_name_75 (label VARCHAR, format VARCHAR, catalog VARCHAR)
What is the Label of the release on Stereo vinyl LP with Catalog number SF-7635?
SELECT other FROM table_name_84 WHERE margin_of_error = "Β± 4.5%" AND pat_toomey__r_ = "45%" AND joe_sestak__d_ = "38%"
CREATE TABLE table_name_84 (other VARCHAR, joe_sestak__d_ VARCHAR, margin_of_error VARCHAR, pat_toomey__r_ VARCHAR)
WHAT CANDIDATE HAD A MARGIN OF ERROR OF Β± 4.5%, WHEN PAT TOOMEY WAS 45% AND JOE SESTAK WAS 38%?
SELECT date_s__administered FROM table_name_49 WHERE joe_sestak__d_ = "46%" AND margin_of_error = "Β± 3.0%"
CREATE TABLE table_name_49 (date_s__administered VARCHAR, joe_sestak__d_ VARCHAR, margin_of_error VARCHAR)
WHAT DATE DID JOE SESTAK HAVE 46% WITH Β± 3.0% MARGIN OF ERROR?
SELECT points__percentage FROM table_name_29 WHERE total_w_l_h = "1-2-2"
CREATE TABLE table_name_29 (points__percentage VARCHAR, total_w_l_h VARCHAR)
WHAT IS THE POINTS PERCENTAGE WITH A TOTAL OF 1-2-2 RECORD?
SELECT year FROM table_name_28 WHERE total_matches = 5
CREATE TABLE table_name_28 (year VARCHAR, total_matches VARCHAR)
WHAT YEAR HAD 5 TOTAL MATCHES?
SELECT quantity_preserved FROM table_name_76 WHERE quantity_made = "4" AND class = "f-21"
CREATE TABLE table_name_76 (quantity_preserved VARCHAR, quantity_made VARCHAR, class VARCHAR)
What is the quantity preserved when 4 were made of class F-21?
SELECT fleet_number_s_ FROM table_name_42 WHERE quantity_made = "3"
CREATE TABLE table_name_42 (fleet_number_s_ VARCHAR, quantity_made VARCHAR)
What fleet number had 3 made?
SELECT class FROM table_name_36 WHERE quantity_made = "1" AND fleet_number_s_ = "406"
CREATE TABLE table_name_36 (class VARCHAR, quantity_made VARCHAR, fleet_number_s_ VARCHAR)
What class had 1 made and fleet number of 406?
SELECT class FROM table_name_56 WHERE quantity_preserved = "0" AND quantity_made = "2"
CREATE TABLE table_name_56 (class VARCHAR, quantity_preserved VARCHAR, quantity_made VARCHAR)
What class has 0 preserved and 2 made?
SELECT MIN(rank) FROM table_name_87 WHERE population = "4839400"
CREATE TABLE table_name_87 (rank INTEGER, population VARCHAR)
What rank has a population of 4839400?
SELECT rank FROM table_name_14 WHERE definition = "province-level municipality"
CREATE TABLE table_name_14 (rank VARCHAR, definition VARCHAR)
What's the rank of the Province-Level Municipality?
SELECT MAX(rank) FROM table_name_37 WHERE definition = "core districts + inner suburbs" AND population = "10123000"
CREATE TABLE table_name_37 (rank INTEGER, definition VARCHAR, population VARCHAR)
What rank was Core Districts + Inner Suburbs and had a population of 10123000?
SELECT points FROM table_name_17 WHERE draws < 7 AND wins < 16 AND goals_for = 35
CREATE TABLE table_name_17 (points VARCHAR, goals_for VARCHAR, draws VARCHAR, wins VARCHAR)
What is Points, when Draws is less than 7, when Wins is less than 16, and when Goals For is "35"?
SELECT COUNT(losses) FROM table_name_13 WHERE position > 8 AND goals_for > 34 AND points = 25 AND draws < 5
CREATE TABLE table_name_13 (losses VARCHAR, draws VARCHAR, points VARCHAR, position VARCHAR, goals_for VARCHAR)
What is the total number of Losses, when Position is greater than 8, when Goals For is greater than 34, when Points is "25", and when Draws is less than 5?
SELECT AVG(wins) FROM table_name_32 WHERE points < 19
CREATE TABLE table_name_32 (wins INTEGER, points INTEGER)
What is the average Wins, when Points is less than "19"?
SELECT MIN(goals_for) FROM table_name_31 WHERE played > 30
CREATE TABLE table_name_31 (goals_for INTEGER, played INTEGER)
What is the lowest Goals, when Played is greater than 30?
SELECT SUM(played) FROM table_name_88 WHERE losses = 13 AND position > 11
CREATE TABLE table_name_88 (played INTEGER, losses VARCHAR, position VARCHAR)
What is the sum of Played, when Losses is "13", and when Position is greater than 11?
SELECT MIN(wins) FROM table_name_50 WHERE losses < 10 AND goal_difference < 46 AND goals_for < 63 AND played < 30
CREATE TABLE table_name_50 (wins INTEGER, played VARCHAR, goals_for VARCHAR, losses VARCHAR, goal_difference VARCHAR)
What is the lowest Wins, when Losses is less than 10, when Goal Difference is less than 46, when Goals is less than 63, and when Played is less than 30?
SELECT COUNT(viewers) FROM table_name_47 WHERE episode = "gary gets boundaries"
CREATE TABLE table_name_47 (viewers VARCHAR, episode VARCHAR)
How many viewed the episode gary gets boundaries?
SELECT episode FROM table_name_97 WHERE viewers = 6.71
CREATE TABLE table_name_97 (episode VARCHAR, viewers VARCHAR)
What episode had 6.71 viewers?
SELECT air_date FROM table_name_65 WHERE viewers = 7.3
CREATE TABLE table_name_65 (air_date VARCHAR, viewers VARCHAR)
When did the episode air that had 7.3 viewers?
SELECT SUM(march) FROM table_name_12 WHERE record = "48-13-11" AND game < 72
CREATE TABLE table_name_12 (march INTEGER, record VARCHAR, game VARCHAR)
What day in March is the game with a 48-13-11 record and a game number less than 72?
SELECT opponent FROM table_name_44 WHERE game = 75
CREATE TABLE table_name_44 (opponent VARCHAR, game VARCHAR)
Who is the opponent of game 75?
SELECT MIN(game) FROM table_name_11 WHERE march > 2 AND opponent = "minnesota north stars"
CREATE TABLE table_name_11 (game INTEGER, march VARCHAR, opponent VARCHAR)
What is the lowest game number of the game after March 2 with the minnesota north stars as the opponent?
SELECT location___state FROM table_name_57 WHERE winner = "craig lowndes"
CREATE TABLE table_name_57 (location___state VARCHAR, winner VARCHAR)
The winner, Craig Lowndes, was in what location/state?
SELECT date FROM table_name_56 WHERE circuit = "eastern creek raceway"
CREATE TABLE table_name_56 (date VARCHAR, circuit VARCHAR)
The Eastern Creek Raceway circuit is on what date?
SELECT location___state FROM table_name_82 WHERE team = "castrol perkins motorsport" AND winner = "russell ingall"
CREATE TABLE table_name_82 (location___state VARCHAR, team VARCHAR, winner VARCHAR)
Castrol Perkins Motorsport and the winner Russell Ingall was in what location/state?
SELECT 1998 FROM table_name_43 WHERE 1996 = "1r" AND 2002 = "not held"
CREATE TABLE table_name_43 (Id VARCHAR)
What shows for 1998 when 1996 is 1R, and 2002 is not held?
SELECT 1996 FROM table_name_23 WHERE 1994 = "a" AND 2003 = "a" AND 2001 = "1r"
CREATE TABLE table_name_23 (Id VARCHAR)
What is the 1996 when the 1994 is A, the 2003 is A, and the 2001 is 1R?
SELECT 1991 FROM table_name_44 WHERE 2002 = "2r"
CREATE TABLE table_name_44 (Id VARCHAR)
What shows for 1991 when 2002 is 2R?
SELECT 2006 FROM table_name_7 WHERE 1990 = "grand slam tournaments"
CREATE TABLE table_name_7 (Id VARCHAR)
What shows for 2006 when 1999 is Grand Slam Tournaments?
SELECT 2006 FROM table_name_65 WHERE 2000 = "1r" AND 1996 = "a" AND tournament = "cincinnati masters"
CREATE TABLE table_name_65 (tournament VARCHAR)
What shows for 2006 when 2000 is 1r, 1996 is A, and Tournament is Cincinnati Masters?
SELECT tournament FROM table_name_61 WHERE 1990 = "olympic games"
CREATE TABLE table_name_61 (tournament VARCHAR)
What is the Tournament when the 1990 is Olympic Games?
SELECT location FROM table_name_59 WHERE record = "0-1"
CREATE TABLE table_name_59 (location VARCHAR, record VARCHAR)
Which Location has a Record of 0-1?
SELECT record FROM table_name_4 WHERE method = "technical submission (rear naked choke)"
CREATE TABLE table_name_4 (record VARCHAR, method VARCHAR)
What is Record, when Method is "Technical Submission (Rear Naked Choke)"?
SELECT SUM(round) FROM table_name_79 WHERE method = "submission (banana split)"
CREATE TABLE table_name_79 (round INTEGER, method VARCHAR)
What is the sum of Round(s), when Method is "Submission (Banana Split)"?
SELECT time FROM table_name_85 WHERE event = "gcm: demolition 1"
CREATE TABLE table_name_85 (time VARCHAR, event VARCHAR)
What is Time, when Event is "GCM: Demolition 1"?
SELECT COUNT(year_set) FROM table_name_73 WHERE event = "100m freestyle"
CREATE TABLE table_name_73 (year_set VARCHAR, event VARCHAR)
What year had a 100m freestyle event?
SELECT event FROM table_name_77 WHERE long_course_short_course = "short course" AND year_set = 2010
CREATE TABLE table_name_77 (event VARCHAR, long_course_short_course VARCHAR, year_set VARCHAR)
What event had a short course in 2010?
SELECT COUNT(year_set) FROM table_name_24 WHERE long_course_short_course = "short course" AND time = "7:51.80"
CREATE TABLE table_name_24 (year_set VARCHAR, long_course_short_course VARCHAR, time VARCHAR)
What year did a short course have a time of 7:51.80?
SELECT MAX(year_set) FROM table_name_67 WHERE event = "100m freestyle"
CREATE TABLE table_name_67 (year_set INTEGER, event VARCHAR)
What was the latest year that had a 100m freestyle?
SELECT place FROM table_name_54 WHERE draw = 3
CREATE TABLE table_name_54 (place VARCHAR, draw VARCHAR)
In what place was the song that had a draw of 3?
SELECT MIN(points) FROM table_name_73 WHERE place = "7th" AND draw > 8
CREATE TABLE table_name_73 (points INTEGER, place VARCHAR, draw VARCHAR)
What is the number of points for the 7th placed song with a draw greater than 8?
SELECT COUNT(points) FROM table_name_93 WHERE artist = "joe o'meara"
CREATE TABLE table_name_93 (points VARCHAR, artist VARCHAR)
How many points did Joe O'Meara have?
SELECT COUNT(points) FROM table_name_89 WHERE artist = "linda martin"
CREATE TABLE table_name_89 (points VARCHAR, artist VARCHAR)
How many points did Linda Martin have?
SELECT score FROM table_name_39 WHERE week > 13 AND visitor = "montreal alouettes"
CREATE TABLE table_name_39 (score VARCHAR, week VARCHAR, visitor VARCHAR)
WHAT IS THE SCORE WITH A WEEK LARGER THAN 13, AND VISITOR TEAM MONTREAL ALOUETTES?
SELECT AVG(week) FROM table_name_5 WHERE date = "july 25"
CREATE TABLE table_name_5 (week INTEGER, date VARCHAR)
WHAT IS THE AVERAGE WEEK WITH A DATE OF JULY 25?
SELECT tie_no FROM table_name_42 WHERE home_team = "crystal palace"
CREATE TABLE table_name_42 (tie_no VARCHAR, home_team VARCHAR)
What was the tie for the Crystal Palace team?
SELECT attendance FROM table_name_72 WHERE tie_no = "15"
CREATE TABLE table_name_72 (attendance VARCHAR, tie_no VARCHAR)
What is the attendance for No. 15 tie?
SELECT open_cup FROM table_name_30 WHERE division > 4
CREATE TABLE table_name_30 (open_cup VARCHAR, division INTEGER)
WHich Open Cup has a Division larger than 4?
SELECT league FROM table_name_86 WHERE regular_season = "3rd, atlantic"
CREATE TABLE table_name_86 (league VARCHAR, regular_season VARCHAR)
Name the League which has a Regular Season of 3rd, atlantic?
SELECT regular_season FROM table_name_19 WHERE division = 4
CREATE TABLE table_name_19 (regular_season VARCHAR, division VARCHAR)
WHICH Regular Season has a Division of 4?
SELECT regular_season FROM table_name_64 WHERE league = "npsl" AND year = "2008"
CREATE TABLE table_name_64 (regular_season VARCHAR, league VARCHAR, year VARCHAR)
WHICH Regular Season has a League of npsl, and a Year of 2008?
SELECT playoffs FROM table_name_8 WHERE league = "npsl" AND open_cup = "did not enter" AND year = "2013"
CREATE TABLE table_name_8 (playoffs VARCHAR, year VARCHAR, league VARCHAR, open_cup VARCHAR)
NAME THE Playoffs that HAVE a League of npsl, and a Open Cup of did not enter, and a Year of 2013?
SELECT AVG(february) FROM table_name_11 WHERE record = "18-26-10" AND game < 54
CREATE TABLE table_name_11 (february INTEGER, record VARCHAR, game VARCHAR)
What is the average February that has 18-26-10 as the record, with a game less than 54?
SELECT COUNT(february) FROM table_name_32 WHERE opponent = "montreal canadiens" AND record = "18-25-10" AND game > 53
CREATE TABLE table_name_32 (february VARCHAR, game VARCHAR, opponent VARCHAR, record VARCHAR)
How many Februarys have montreal canadiens as the opponent, and 18-25-10 as the record, with a game greater than 53?
SELECT surface FROM table_name_31 WHERE opponent = "selma babic"
CREATE TABLE table_name_31 (surface VARCHAR, opponent VARCHAR)
what is the surface when the opponent is selma babic?
SELECT surface FROM table_name_65 WHERE round = "gii play-offs" AND edition = "2009 fed cup europe/africa group ii"
CREATE TABLE table_name_65 (surface VARCHAR, round VARCHAR, edition VARCHAR)
what is the surface when the round is gii play-offs and the edition is 2009 fed cup europe/africa group ii?
SELECT date FROM table_name_99 WHERE surface = "clay" AND result = "6–7 (4–7) , 1–6"
CREATE TABLE table_name_99 (date VARCHAR, surface VARCHAR, result VARCHAR)
what is the date when the surface is clay and the result is 6–7 (4–7) , 1–6?
SELECT opponent FROM table_name_67 WHERE against = "norway"
CREATE TABLE table_name_67 (opponent VARCHAR, against VARCHAR)
who is the opponent when norway is against?
SELECT position FROM table_name_28 WHERE weight > 220 AND player = "travis knight"
CREATE TABLE table_name_28 (position VARCHAR, weight VARCHAR, player VARCHAR)
What is Postion, when Weight is greater than 220, and when Player is "Travis Knight"?
SELECT MIN(number) FROM table_name_48 WHERE college = "university of alabama"
CREATE TABLE table_name_48 (number INTEGER, college VARCHAR)
What is the lowest Number, when College is "University of Alabama"?
SELECT COUNT(weight) FROM table_name_90 WHERE position = "forward/center" AND player = "othella harrington" AND number < 32
CREATE TABLE table_name_90 (weight VARCHAR, number VARCHAR, position VARCHAR, player VARCHAR)
What is the total number of Weight, when Position is "Forward/Center", when Player is "Othella Harrington", and when Number is less than 32?
SELECT years_exp FROM table_name_94 WHERE height = "7-2"
CREATE TABLE table_name_94 (years_exp VARCHAR, height VARCHAR)
What is Years Exp, when Height is "7-2"?