output
stringlengths
18
557
instruction
stringlengths
22
540
SELECT COUNT(game) FROM table_name_24 WHERE score = "l 91–95 (ot)"
CREATE TABLE table_name_24 (game VARCHAR, score VARCHAR), How many games had a score of l 91–95 (ot)?
SELECT name FROM table_name_13 WHERE season = "2010-2011" AND acquisition_via = "free agency" AND number = "14"
CREATE TABLE table_name_13 (name VARCHAR, number VARCHAR, season VARCHAR, acquisition_via VARCHAR), What is the name of the player for the 2010-2011 season, from a Free Agency and is Number 14?
SELECT season FROM table_name_5 WHERE acquisition_via = "trade" AND school_club_team = "la salle"
CREATE TABLE table_name_5 (season VARCHAR, acquisition_via VARCHAR, school_club_team VARCHAR), Which season had a trade with the school/club team La Salle?
SELECT position FROM table_name_26 WHERE season = "2009-2010" AND number = "1"
CREATE TABLE table_name_26 (position VARCHAR, season VARCHAR, number VARCHAR), Who is the position for the 2009-2010 season, number 1?
SELECT name FROM table_name_63 WHERE position = "forward" AND season = "2009-2010"
CREATE TABLE table_name_63 (name VARCHAR, position VARCHAR, season VARCHAR), What is the name for the forward in the 2009-2010 season?
SELECT number FROM table_name_90 WHERE position = "forward" AND school_club_team = "la salle"
CREATE TABLE table_name_90 (number VARCHAR, position VARCHAR, school_club_team VARCHAR), What is the number for the forward position from the school/club team La Salle?
SELECT position FROM table_name_73 WHERE school_club_team = "far eastern"
CREATE TABLE table_name_73 (position VARCHAR, school_club_team VARCHAR), Who is the position from the school/club Far Eastern?
SELECT MAX(games_played) FROM table_name_64 WHERE draws = 3 AND loses = 5 AND points < 39
CREATE TABLE table_name_64 (games_played INTEGER, points VARCHAR, draws VARCHAR, loses VARCHAR), What is the highest number of games played for teams with 3 draws, 5 losses, and under 39 points?
SELECT MAX(loses) FROM table_name_49 WHERE draws < 3 AND points = 51
CREATE TABLE table_name_49 (loses INTEGER, draws VARCHAR, points VARCHAR), What is the highest number of losses for teams with under 3 draws and 51 points?
SELECT record FROM table_name_45 WHERE time__seconds_ < 5.22
CREATE TABLE table_name_45 (record VARCHAR, time__seconds_ INTEGER), Tell me the record for a time in seconds smaller than 5.22.
SELECT sport FROM table_name_27 WHERE date = "november 14, 2009"
CREATE TABLE table_name_27 (sport VARCHAR, date VARCHAR), What sport was played on November 14, 2009?
SELECT visitor FROM table_name_20 WHERE record = "3–18"
CREATE TABLE table_name_20 (visitor VARCHAR, record VARCHAR), Whose Visitor has a Record of 3–18?
SELECT date FROM table_name_48 WHERE leading_scorer = "ricky davis (20)"
CREATE TABLE table_name_48 (date VARCHAR, leading_scorer VARCHAR), When has a Leading scorer of ricky davis (20)?
SELECT home FROM table_name_79 WHERE leading_scorer = "dajuan wagner (25)" AND score = "89–82"
CREATE TABLE table_name_79 (home VARCHAR, leading_scorer VARCHAR, score VARCHAR), Which Home has a Leading scorer of dajuan wagner (25) and a Score of 89–82? Question 3
SELECT date FROM table_name_1 WHERE visitor = "bulls"
CREATE TABLE table_name_1 (date VARCHAR, visitor VARCHAR), When has a Visitor of bulls?
SELECT visitor FROM table_name_64 WHERE home = "bulls"
CREATE TABLE table_name_64 (visitor VARCHAR, home VARCHAR), Which Visitor has a Home of bulls?
SELECT home FROM table_name_18 WHERE date = "14 december 2002"
CREATE TABLE table_name_18 (home VARCHAR, date VARCHAR), WHich Home is on 14 december 2002?
SELECT profession FROM table_name_1 WHERE entered_the_house = "day 1" AND evicted = "day 29" AND name = "skaj vikler"
CREATE TABLE table_name_1 (profession VARCHAR, name VARCHAR, entered_the_house VARCHAR, evicted VARCHAR), What is the profession of Skaj Vikler, who entered the house on day 1 and was evicted on day 29?
SELECT profession FROM table_name_90 WHERE city = "leskovac"
CREATE TABLE table_name_90 (profession VARCHAR, city VARCHAR), What is the profession of the housemate from Leskovac city?
SELECT entered_the_house FROM table_name_82 WHERE evicted = "day 29" AND name = "slađana pejić"
CREATE TABLE table_name_82 (entered_the_house VARCHAR, evicted VARCHAR, name VARCHAR), When did slađana pejić, who was evicted on day 29, enter the house?
SELECT profession FROM table_name_4 WHERE name = "slađana pejić"
CREATE TABLE table_name_4 (profession VARCHAR, name VARCHAR), What is slađana pejić's profession?
SELECT city FROM table_name_84 WHERE entered_the_house = "day 1" AND profession = "tv presenter"
CREATE TABLE table_name_84 (city VARCHAR, entered_the_house VARCHAR, profession VARCHAR), What city is the housemate who entered the house on day 1 and whose profession was a tv presenter from?
SELECT profession FROM table_name_87 WHERE city = "leskovac"
CREATE TABLE table_name_87 (profession VARCHAR, city VARCHAR), What is the profession of the housemate from Leskovac city?
SELECT home FROM table_name_93 WHERE competition = "uefa cup" AND season = "2000-2001" AND round = "second round"
CREATE TABLE table_name_93 (home VARCHAR, round VARCHAR, competition VARCHAR, season VARCHAR), What is the home team of the UEFA cup in the 2000-2001 season with a second round?
SELECT away FROM table_name_67 WHERE competition = "uefa champions league"
CREATE TABLE table_name_67 (away VARCHAR, competition VARCHAR), What is the away team of the UEFA champions league?
SELECT position FROM table_name_90 WHERE league = "southern league premier division" AND season = "2004–05"
CREATE TABLE table_name_90 (position VARCHAR, league VARCHAR, season VARCHAR), Which Position has a League of southern league premier division, and a Season of 2004–05?
SELECT SUM(draw) FROM table_name_45 WHERE season = "2001–02" AND points > 47
CREATE TABLE table_name_45 (draw INTEGER, season VARCHAR, points VARCHAR), Which Draw has a Season of 2001–02, and Points larger than 47?
SELECT MAX(lost) FROM table_name_58 WHERE season = "2001–02" AND points > 47
CREATE TABLE table_name_58 (lost INTEGER, season VARCHAR, points VARCHAR), Which Lost is the highest one that has a Season of 2001–02, and Points larger than 47?
SELECT COUNT(bronze) FROM table_name_67 WHERE total > 4 AND rank < 4 AND nation = "germany" AND silver < 5
CREATE TABLE table_name_67 (bronze VARCHAR, silver VARCHAR, nation VARCHAR, total VARCHAR, rank VARCHAR), How many bronze numbers had a total of more than 4 when the rank is less than four, germany is involved, and there's less than 5 silver?
SELECT place FROM table_name_67 WHERE player = "phil mickelson"
CREATE TABLE table_name_67 (place VARCHAR, player VARCHAR), Which Place has Phil Mickelson as the Player?
SELECT to_par FROM table_name_62 WHERE player = "chris riley"
CREATE TABLE table_name_62 (to_par VARCHAR, player VARCHAR), What is the To Par for Player Chris Riley?
SELECT player FROM table_name_33 WHERE place = "t2" AND country = "fiji"
CREATE TABLE table_name_33 (player VARCHAR, place VARCHAR, country VARCHAR), Which Player has a Place of T2 and a Country listed as Fiji?
SELECT AVG(height__cm_) FROM table_name_66 WHERE weight__kg_ < 91 AND position = "d" AND birthdate = "july 4, 1975"
CREATE TABLE table_name_66 (height__cm_ INTEGER, birthdate VARCHAR, weight__kg_ VARCHAR, position VARCHAR), What is the average Height when the weight is less than 91 and the position is d, and a Birthdate of july 4, 1975?
SELECT SUM(weight__kg_) FROM table_name_39 WHERE birthplace = "virginia, minnesota"
CREATE TABLE table_name_39 (weight__kg_ INTEGER, birthplace VARCHAR), What is the sum of Weight for the person born in virginia, minnesota?
SELECT birthdate FROM table_name_23 WHERE height__cm_ < 191 AND weight__kg_ = 84
CREATE TABLE table_name_23 (birthdate VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR), What is the Birthdate for the person with a height less than 191, and weight of 84 kg?
SELECT position FROM table_name_73 WHERE height__cm_ < 183 AND weight__kg_ < 91 AND birthplace = "bloomington, minnesota"
CREATE TABLE table_name_73 (position VARCHAR, birthplace VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR), What is the Position with a height of less than 183, and a weight of less than 91 kg and born in bloomington, minnesota?
SELECT claimant FROM table_name_7 WHERE rank = 200
CREATE TABLE table_name_7 (claimant VARCHAR, rank VARCHAR), Which claimant's rank is 200?
SELECT highest_point FROM table_name_46 WHERE country = "south ossetia"
CREATE TABLE table_name_46 (highest_point VARCHAR, country VARCHAR), What is the most points for South Ossetia?
SELECT MAX(rank) FROM table_name_85 WHERE country = "palestinian territories"
CREATE TABLE table_name_85 (rank INTEGER, country VARCHAR), Which highest rank belongs to the palestinian territories?
SELECT highest_point FROM table_name_49 WHERE rank = 95
CREATE TABLE table_name_49 (highest_point VARCHAR, rank VARCHAR), What is the highest amount of points for rank 95?
SELECT season FROM table_name_39 WHERE win_percentage = ".439" AND team = "1996-97"
CREATE TABLE table_name_39 (season VARCHAR, win_percentage VARCHAR, team VARCHAR), What season had a .439 Win% in the 1996-97 Team?
SELECT conference__conf_ FROM table_name_95 WHERE division__div_ = "atlantic" AND team = "1973-74"
CREATE TABLE table_name_95 (conference__conf_ VARCHAR, division__div_ VARCHAR, team VARCHAR), What conference is the 1973-74 team in the Atlantic Division (Div.)?
SELECT season FROM table_name_6 WHERE win_percentage = ".354"
CREATE TABLE table_name_6 (season VARCHAR, win_percentage VARCHAR), Which season has a .354 Win%?
SELECT win_percentage FROM table_name_44 WHERE team = "1989-90"
CREATE TABLE table_name_44 (win_percentage VARCHAR, team VARCHAR), What is the Win% of the 1989-90 Team?
SELECT high_rebounds FROM table_name_68 WHERE team = "charlotte"
CREATE TABLE table_name_68 (high_rebounds VARCHAR, team VARCHAR), What is the High rebounds with a Team that is charlotte?
SELECT date FROM table_name_16 WHERE rocket = "tbd" AND satellite = "gps iiia-1"
CREATE TABLE table_name_16 (date VARCHAR, rocket VARCHAR, satellite VARCHAR), On what date was the rocket a TBD with a satellite of GPS IIIA-1?
SELECT type FROM table_name_54 WHERE satellite = "gps iiia-2"
CREATE TABLE table_name_54 (type VARCHAR, satellite VARCHAR), Which type is a satellite of GPS IIIA-2?
SELECT launch_site FROM table_name_74 WHERE satellite = "gps iiia-2"
CREATE TABLE table_name_74 (launch_site VARCHAR, satellite VARCHAR), What was the launch site for a satellite of GPS IIIA-2?
SELECT choreographer_s_ FROM table_name_36 WHERE chosen_by = "mary murphy" AND style = "contemporary"
CREATE TABLE table_name_36 (choreographer_s_ VARCHAR, chosen_by VARCHAR, style VARCHAR), What is Choreographer(s), when Chosen is Mary Murphy, and when Style is Contemporary?
SELECT chosen_by FROM table_name_10 WHERE couple = "katee shean joshua allen" AND choreographer_s_ = "nakul dev mahajan"
CREATE TABLE table_name_10 (chosen_by VARCHAR, couple VARCHAR, choreographer_s_ VARCHAR), What is Chosen By, when Couple is Katee Shean Joshua Allen, and when Choreographer(s) is Nakul Dev Mahajan?
SELECT style FROM table_name_17 WHERE choreographer_s_ = "dave scott"
CREATE TABLE table_name_17 (style VARCHAR, choreographer_s_ VARCHAR), What is Style, when Choreographer(s) is Dave Scott?
SELECT couple FROM table_name_13 WHERE choreographer_s_ = "nakul dev mahajan"
CREATE TABLE table_name_13 (couple VARCHAR, choreographer_s_ VARCHAR), What is Couple, when Choreographer(s) is Nakul Dev Mahajan?
SELECT AVG(number_on_map) FROM table_name_42 WHERE name = "northgate" AND construction_commenced < 1951
CREATE TABLE table_name_42 (number_on_map INTEGER, name VARCHAR, construction_commenced VARCHAR), What is the average number for Northgate which commenced its construction before 1951?
SELECT MIN(population) FROM table_name_20 WHERE colour = "blue" AND construction_commenced < 1987
CREATE TABLE table_name_20 (population INTEGER, colour VARCHAR, construction_commenced VARCHAR), What is the lowest population for the neighborhood with the color blue that commenced its construction before 1987?
SELECT SUM(top_25) FROM table_name_46 WHERE wins > 0
CREATE TABLE table_name_46 (top_25 INTEGER, wins INTEGER), What is the sum of Top-25 when there are more than 0 wins?
SELECT MIN(top_10) FROM table_name_44 WHERE top_25 = 6 AND tournament = "u.s. open" AND cuts_made > 9
CREATE TABLE table_name_44 (top_10 INTEGER, cuts_made VARCHAR, top_25 VARCHAR, tournament VARCHAR), What is the lowest Top-10 when the Top-25 is 6, and a Tournament of u.s. open, and a Cut made larger than 9?
SELECT MIN(top_25) FROM table_name_63 WHERE events = 12 AND top_5 = 1 AND cuts_made < 11
CREATE TABLE table_name_63 (top_25 INTEGER, cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR), What is the lowest Top-25 when events shows 12, the top-5 is 1, and less than 11 cuts?
SELECT MAX(enrollment) FROM table_name_93 WHERE location = "onalaska"
CREATE TABLE table_name_93 (enrollment INTEGER, location VARCHAR), What is the Enrollment at Onalaska?
SELECT institution FROM table_name_80 WHERE affiliation = "public" AND location = "black river falls"
CREATE TABLE table_name_80 (institution VARCHAR, affiliation VARCHAR, location VARCHAR), What Public Institution is in Black River Falls?
SELECT COUNT(block) FROM table_name_73 WHERE weight < 85 AND height > 187
CREATE TABLE table_name_73 (block VARCHAR, weight VARCHAR, height VARCHAR), What is the total number of Block for the Player with less than 85 Weight and more than 187 Height?
SELECT name FROM table_name_50 WHERE block < 342 AND weight < 87 AND height > 187
CREATE TABLE table_name_50 (name VARCHAR, height VARCHAR, block VARCHAR, weight VARCHAR), What is the Name of the player with less than 342 Block, less than 87 Weight and Height more than 187?
SELECT COUNT(weight) FROM table_name_28 WHERE block > 328 AND height > 207 AND spike > 375
CREATE TABLE table_name_28 (weight VARCHAR, spike VARCHAR, block VARCHAR, height VARCHAR), What is the Weight of the player with a Block larger than 328, Spike greater than 375 and Height larger than 207?
SELECT result FROM table_name_47 WHERE category = "album of the year" AND year = 2011
CREATE TABLE table_name_47 (result VARCHAR, category VARCHAR, year VARCHAR), What is the Result with a Category of album of the year in a Year that is 2011?
SELECT season FROM table_name_57 WHERE name = "tony boy espinosa"
CREATE TABLE table_name_57 (season VARCHAR, name VARCHAR), What is Season, when Name is Tony Boy Espinosa?
SELECT AVG(number) FROM table_name_13 WHERE position = "forward"
CREATE TABLE table_name_13 (number INTEGER, position VARCHAR), What is the average Number, when Position is Forward?
SELECT MIN(number) FROM table_name_30 WHERE school_club_team = "misamis institute"
CREATE TABLE table_name_30 (number INTEGER, school_club_team VARCHAR), What is the lowest Number, when School/Club Team is Misamis Institute?
SELECT school_club_team FROM table_name_79 WHERE season = "2006-2012"
CREATE TABLE table_name_79 (school_club_team VARCHAR, season VARCHAR), What is School/Club Team, when Season is 2006-2012?
SELECT acquisition_via FROM table_name_50 WHERE season = "2006-2012"
CREATE TABLE table_name_50 (acquisition_via VARCHAR, season VARCHAR), What is Acquisition via, when Season is 2006-2012?
SELECT set_4 FROM table_name_33 WHERE set_1 = "19-25" AND set_2 = "23-25"
CREATE TABLE table_name_33 (set_4 VARCHAR, set_1 VARCHAR, set_2 VARCHAR), What is Set 4, when Set 1 is 19-25, and when Set 2 is 23-25?
SELECT set_1 FROM table_name_30 WHERE set_4 = "na" AND score = "3-0" AND set_2 = "29-27"
CREATE TABLE table_name_30 (set_1 VARCHAR, set_2 VARCHAR, set_4 VARCHAR, score VARCHAR), What is Set 1, when Set 4 is NA, when Score is 3-0, and when Set 2 is 29-27?
SELECT set_2 FROM table_name_67 WHERE date = "may 31"
CREATE TABLE table_name_67 (set_2 VARCHAR, date VARCHAR), What is Set 2, when Date is May 31?
SELECT set_1 FROM table_name_22 WHERE set_2 = "17-25"
CREATE TABLE table_name_22 (set_1 VARCHAR, set_2 VARCHAR), What is Set 1, when Set 2 is 17-25?
SELECT set_3 FROM table_name_79 WHERE set_4 = "25-21" AND date = "jun 14"
CREATE TABLE table_name_79 (set_3 VARCHAR, set_4 VARCHAR, date VARCHAR), What is Set 3, when Set 4 is 25-21, and when Date is Jun 14?
SELECT COUNT(events) FROM table_name_23 WHERE top_5 < 2 AND top_25 < 3
CREATE TABLE table_name_23 (events VARCHAR, top_5 VARCHAR, top_25 VARCHAR), What were the total number of Events, when the Top-5 was less than 2, and when the Top-25 was less than 3?
SELECT COUNT(top_25) FROM table_name_37 WHERE cuts_made = 62 AND wins < 1
CREATE TABLE table_name_37 (top_25 VARCHAR, cuts_made VARCHAR, wins VARCHAR), What was the total number of Top-25 values, for which Cuts made was 62, and for which Wins were less than 1?
SELECT COUNT(cuts_made) FROM table_name_79 WHERE top_5 > 3 AND events = 85
CREATE TABLE table_name_79 (cuts_made VARCHAR, top_5 VARCHAR, events VARCHAR), What was the total number of Cuts made, when Top-5 was greater than 3, and when Events were 85?
SELECT SUM(events) FROM table_name_57 WHERE wins < 1 AND top_25 = 3 AND top_5 < 1
CREATE TABLE table_name_57 (events INTEGER, top_5 VARCHAR, wins VARCHAR, top_25 VARCHAR), What was the sum of Events, when Wins were less than 1, when Top-25 was 3, and when Top-5 was less than 1?
SELECT MAX(top_10) FROM table_name_77 WHERE top_5 > 3 AND cuts_made = 20 AND top_25 > 10
CREATE TABLE table_name_77 (top_10 INTEGER, top_25 VARCHAR, top_5 VARCHAR, cuts_made VARCHAR), What was the highest Top-10, when the Top-5 was greater than 3, when the Cuts made were 20, and when the Top-25 was more than 10?
SELECT MIN(top_10) FROM table_name_4 WHERE wins = 0 AND top_25 = 12 AND events < 23
CREATE TABLE table_name_4 (top_10 INTEGER, events VARCHAR, wins VARCHAR, top_25 VARCHAR), What was the lowest Top-10, when the Wins were 0, when the Top-25 was 12, and when the Events were less than 23?
SELECT AVG(against) FROM table_name_88 WHERE drawn > 2 AND difference = "- 17" AND played < 20
CREATE TABLE table_name_88 (against INTEGER, played VARCHAR, drawn VARCHAR, difference VARCHAR), What is the average Against when the drawn is more than 2 and the Difference of- 17, and a Played smaller than 20?
SELECT COUNT(position) FROM table_name_28 WHERE team = "são paulo railway" AND against < 46
CREATE TABLE table_name_28 (position VARCHAR, team VARCHAR, against VARCHAR), What is the number of Position when the team was são paulo railway and the against is less than 46?
SELECT team FROM table_name_58 WHERE lost < 13 AND position < 4 AND difference = "42"
CREATE TABLE table_name_58 (team VARCHAR, difference VARCHAR, lost VARCHAR, position VARCHAR), What is the Team when the lost is less than 13, and the position is less than 4, with a Difference of 42?
SELECT SUM(played) FROM table_name_35 WHERE drawn < 2 AND against > 29
CREATE TABLE table_name_35 (played INTEGER, drawn VARCHAR, against VARCHAR), What is the sum of Played when the drawn is less than 2 and against is more than 29?
SELECT MAX(wins) FROM table_name_65 WHERE byes > 0
CREATE TABLE table_name_65 (wins INTEGER, byes INTEGER), Which Wins has a Byes larger than 0?
SELECT MAX(against) FROM table_name_55 WHERE peel = "waroona" AND byes > 0
CREATE TABLE table_name_55 (against INTEGER, peel VARCHAR, byes VARCHAR), Which Against has a Peel of waroona, and a Byes larger than 0?
SELECT COUNT(draws) FROM table_name_64 WHERE wins < 17 AND against < 1158
CREATE TABLE table_name_64 (draws VARCHAR, wins VARCHAR, against VARCHAR), Which Draws has a Wins smaller than 17, and an Against smaller than 1158?
SELECT SUM(draws) FROM table_name_74 WHERE against > 1158 AND wins = 9 AND losses < 9
CREATE TABLE table_name_74 (draws INTEGER, losses VARCHAR, against VARCHAR, wins VARCHAR), Which Draws has an Against larger than 1158, and a Wins of 9, and a Losses smaller than 9?
SELECT MIN(losses) FROM table_name_56 WHERE wins = 6 AND against < 1741
CREATE TABLE table_name_56 (losses INTEGER, wins VARCHAR, against VARCHAR), Which Losses has a Wins of 6, and an Against smaller than 1741?
SELECT venue FROM table_name_81 WHERE winner = "atlanta hawks (11)"
CREATE TABLE table_name_81 (venue VARCHAR, winner VARCHAR), What venue was the game played in when the winner was the atlanta hawks (11)?
SELECT loser FROM table_name_83 WHERE result = "119–113"
CREATE TABLE table_name_83 (loser VARCHAR, result VARCHAR), What team was the loser when the result was 119–113?
SELECT loser FROM table_name_18 WHERE winner = "los angeles lakers (10)"
CREATE TABLE table_name_18 (loser VARCHAR, winner VARCHAR), What is the Loser when the winner was los angeles lakers (10)?
SELECT venue FROM table_name_78 WHERE result = "88–87"
CREATE TABLE table_name_78 (venue VARCHAR, result VARCHAR), What is the Venue when the result was 88–87?
SELECT winner FROM table_name_35 WHERE result = "90–86"
CREATE TABLE table_name_35 (winner VARCHAR, result VARCHAR), What team was the winner when the result was 90–86?
SELECT result FROM table_name_10 WHERE loser = "memphis grizzlies ( 2)"
CREATE TABLE table_name_10 (result VARCHAR, loser VARCHAR), What is the Result when the memphis grizzlies ( 2) were the loser?
SELECT years FROM table_name_77 WHERE win_percentage = "60%"
CREATE TABLE table_name_77 (years VARCHAR, win_percentage VARCHAR), What year was the Win percentage 60%?
SELECT COUNT(tests) FROM table_name_43 WHERE lost < 9 AND name = "sir fred allen"
CREATE TABLE table_name_43 (tests VARCHAR, lost VARCHAR, name VARCHAR), What is the total number of Tests when the lost is less than 9 for sir fred allen?
SELECT win_percentage FROM table_name_62 WHERE lost = 5 AND drew = 0
CREATE TABLE table_name_62 (win_percentage VARCHAR, lost VARCHAR, drew VARCHAR), What is the Win percentage where there were 5 lost and 0 is drew?
SELECT COUNT(campeonato_paulista) FROM table_name_72 WHERE campeonato_brasileiro > 2 AND others > 0 AND copa_sudamericana > 5
CREATE TABLE table_name_72 (campeonato_paulista VARCHAR, copa_sudamericana VARCHAR, campeonato_brasileiro VARCHAR, others VARCHAR), How many Campeonato Paulistas had a campeonato brasileiro of more than 2, an others number of more than 0, and a copa sudamericana of more than 5?
SELECT MAX(copa_sudamericana) FROM table_name_80 WHERE others < 0
CREATE TABLE table_name_80 (copa_sudamericana INTEGER, others INTEGER), What is the largest copa sudamericana number when the others number is less than 0?
SELECT unit FROM table_name_65 WHERE authors = "dalla vecchia, wild, & reitner"
CREATE TABLE table_name_65 (unit VARCHAR, authors VARCHAR), Which Unit has Authors of dalla vecchia, wild, & reitner?