answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT SUM(attendance) FROM table_name_23 WHERE away_team = "chelsea"
How many in total were in attendance at games where Chelsea was the away team?
CREATE TABLE table_name_23 (attendance INTEGER, away_team VARCHAR)
SELECT latest_version FROM table_name_24 WHERE release_date = "1987-12-09"
Which of the Latest version was released on Release date 1987-12-09?
CREATE TABLE table_name_24 (latest_version VARCHAR, release_date VARCHAR)
SELECT name FROM table_name_20 WHERE red_list > 0 AND species_authority = "balaenoptera acutorostrata lacépède, 1804"
Which name has a Red List larger than 0, and a Species/Authority of balaenoptera acutorostrata lacépède, 1804?
CREATE TABLE table_name_20 (name VARCHAR, red_list VARCHAR, species_authority VARCHAR)
SELECT COUNT(total) FROM table_name_60 WHERE gold = 1 AND rank = "12" AND silver > 0
How many totals have 1 for the gold, 12 for the rank, and a sliver greater than 0?
CREATE TABLE table_name_60 (total VARCHAR, silver VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT location FROM table_name_42 WHERE type = "embassy" AND mission = "panama"
what is the location when the type is embassy and the mission is panama?
CREATE TABLE table_name_42 (location VARCHAR, type VARCHAR, mission VARCHAR)
SELECT crowd FROM table_name_6 WHERE away_team = "geelong"
What was away team Geelong's crowd numbers?
CREATE TABLE table_name_6 (crowd VARCHAR, away_team VARCHAR)
SELECT rank FROM table_19517448_3 WHERE rating = "146.8"
What rank has a rating of 146.8?
CREATE TABLE table_19517448_3 (rank VARCHAR, rating VARCHAR)
SELECT position FROM table_name_64 WHERE venue = "debrecen, hungary"
What Position is listed against a Venue of Debrecen, Hungary
CREATE TABLE table_name_64 (position VARCHAR, venue VARCHAR)
SELECT runner_up FROM table_name_85 WHERE tier = "tier ii" AND winner = "gigi fernández natalia zvereva 6–2, 6–1"
When Gigi Fernández Natalia Zvereva 6–2, 6–1 won, who was the Tier II Runner-up?
CREATE TABLE table_name_85 (runner_up VARCHAR, tier VARCHAR, winner VARCHAR)
SELECT greek FROM table_name_99 WHERE german = "ebbe"
What Greek word means the same thing as the German word ebbe?
CREATE TABLE table_name_99 (greek VARCHAR, german VARCHAR)
SELECT ihsaa_class FROM table_name_82 WHERE _number___county = "18 delaware" AND mascot = "tigers"
Name the IHSAA class with county 18 delaware and tigers mascot
CREATE TABLE table_name_82 (ihsaa_class VARCHAR, _number___county VARCHAR, mascot VARCHAR)
SELECT AVG(position) FROM table_name_60 WHERE goals_against > 42 AND club = "burgos cf" AND losses > 14
What is the average position of club burgos cf, which has more than 42 goals against and more than 14 losses?
CREATE TABLE table_name_60 (position INTEGER, losses VARCHAR, goals_against VARCHAR, club VARCHAR)
SELECT concacaf FROM table_245694_4 WHERE season = 2010
Name the concacaf for 2010 season
CREATE TABLE table_245694_4 (concacaf VARCHAR, season VARCHAR)
SELECT tournament FROM table_name_12 WHERE runner_s__up = "scott hoch & kenny perry"
What tournament had a runner(s)-up of Scott Hoch & Kenny Perry?
CREATE TABLE table_name_12 (tournament VARCHAR, runner_s__up VARCHAR)
SELECT method FROM table_name_83 WHERE opponent = "dale hartt"
What was the method of resolution for the fight against dale hartt?
CREATE TABLE table_name_83 (method VARCHAR, opponent VARCHAR)
SELECT year_built FROM table_name_83 WHERE church_name = "hopperstad stavkyrkje"
When was the Hopperstad Stavkyrkje built?
CREATE TABLE table_name_83 (year_built VARCHAR, church_name VARCHAR)
SELECT date_of_debut FROM table_11585313_1 WHERE date_of_birth = "24-10-1887"
What is the date of debut that has a date of birth listed at 24-10-1887?
CREATE TABLE table_11585313_1 (date_of_debut VARCHAR, date_of_birth VARCHAR)
SELECT AVG(silver) FROM table_name_64 WHERE nation = "germany" AND rank < 2
What is the silver for Germany and less than 2?
CREATE TABLE table_name_64 (silver INTEGER, nation VARCHAR, rank VARCHAR)
SELECT paper_type FROM table_25468520_1 WHERE date_of_issue = "July 8"
What is the paper type for the date of issue July 8?
CREATE TABLE table_25468520_1 (paper_type VARCHAR, date_of_issue VARCHAR)
SELECT score FROM table_name_53 WHERE place = "t1" AND player = "lee trevino"
What score did Lee Trevino get in T1?
CREATE TABLE table_name_53 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT bore FROM table_name_9 WHERE name = "18 ab"
What bore goes with an 18 AB?
CREATE TABLE table_name_9 (bore VARCHAR, name VARCHAR)
SELECT COUNT(change_in_population_since_1993) FROM table_2637317_1 WHERE _percentage_of_countrys_population = "4.2"
What is the change in population since 1993 in the region where the % of country's population was 4.2?
CREATE TABLE table_2637317_1 (change_in_population_since_1993 VARCHAR, _percentage_of_countrys_population VARCHAR)
SELECT record FROM table_name_18 WHERE date = "january 31"
Which Record has a Date of january 31?
CREATE TABLE table_name_18 (record VARCHAR, date VARCHAR)
SELECT score_in_the_final FROM table_23259077_1 WHERE outcome = "Runner-up" AND championship = "Wimbledon"
What were the scores of the Wimbledon final matches where Newcombe was the runner-up?
CREATE TABLE table_23259077_1 (score_in_the_final VARCHAR, outcome VARCHAR, championship VARCHAR)
SELECT leading_scorer FROM table_name_35 WHERE visitor = "trail blazers"
Who was the leading scorer that was a visitor of the Trail Blazers?
CREATE TABLE table_name_35 (leading_scorer VARCHAR, visitor VARCHAR)
SELECT the_kennel_club__uk__toy_group FROM table_name_65 WHERE american_kennel_club_toy_group = "shih-tzu"
What is the Kennel Club (UK) Toy Group with the shih-tzu as the American Kennel Club Toy Group breed?
CREATE TABLE table_name_65 (the_kennel_club__uk__toy_group VARCHAR, american_kennel_club_toy_group VARCHAR)
SELECT network FROM table_name_29 WHERE model = "nforce professional 3400 mcp"
Which network has model nForce Professional 3400 MCP?
CREATE TABLE table_name_29 (network VARCHAR, model VARCHAR)
SELECT behind FROM table_name_26 WHERE class = "gt2" AND day_2 = "3:59.820"
For the team with a class of gt2 and 3:59.820 on day 2, what was the behind?
CREATE TABLE table_name_26 (behind VARCHAR, class VARCHAR, day_2 VARCHAR)
SELECT date FROM table_name_29 WHERE opponent = "southampton"
When was the game played against Southampton?
CREATE TABLE table_name_29 (date VARCHAR, opponent VARCHAR)
SELECT dept_store_chain_id FROM department_stores GROUP BY dept_store_chain_id ORDER BY COUNT(*) DESC LIMIT 2
What are the ids of the two department store chains with the largest number of department stores?
CREATE TABLE department_stores (dept_store_chain_id VARCHAR)
SELECT date FROM table_name_31 WHERE set_1 = "21–25"
Which Date has a Set 1 of 21–25?
CREATE TABLE table_name_31 (date VARCHAR, set_1 VARCHAR)
SELECT opponent FROM table_1341568_6 WHERE district = "California 9"
Who are the opponents in district California 9?
CREATE TABLE table_1341568_6 (opponent VARCHAR, district VARCHAR)
SELECT t1.store_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id WHERE t3.district_name = "Khanewal District"
Find the names of all stores in Khanewal District.
CREATE TABLE district (district_id VARCHAR, district_name VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR); CREATE TABLE store (store_name VARCHAR, store_id VARCHAR)
SELECT date FROM table_name_25 WHERE venue = "home" AND opponent = "peterborough phantoms"
When did the peterborough phantoms play at a venue of home?
CREATE TABLE table_name_25 (date VARCHAR, venue VARCHAR, opponent VARCHAR)
SELECT AVG(rank) FROM table_name_61 WHERE time < 57.05
What is the average rank for 57.05 time?
CREATE TABLE table_name_61 (rank INTEGER, time INTEGER)
SELECT player FROM table_name_41 WHERE pick < 183 AND position = "back" AND round > 12
Who was the back player with a pick less than 183 from the round greater than 12?
CREATE TABLE table_name_41 (player VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR)
SELECT tyres FROM table_name_56 WHERE points = 8
Which tyres received 8 points?
CREATE TABLE table_name_56 (tyres VARCHAR, points VARCHAR)
SELECT district FROM table_name_19 WHERE incumbent = "wyatt aiken"
What district is Wyatt Aiken in?
CREATE TABLE table_name_19 (district VARCHAR, incumbent VARCHAR)
SELECT rank__number FROM table_name_72 WHERE date = "october 19"
What is the rank of the match on October 19?
CREATE TABLE table_name_72 (rank__number VARCHAR, date VARCHAR)
SELECT district FROM table_1341598_10 WHERE incumbent = "Michael Bilirakis"
In what district was the incumbent Michael Bilirakis?
CREATE TABLE table_1341598_10 (district VARCHAR, incumbent VARCHAR)
SELECT july FROM table_name_32 WHERE plant_hardiness_zone = "2b" AND january = "−12/−23°c (10-9°f)"
What is the July temperature where plant hardiness zone is 2B and January figure is −12/−23°c (10-9°f)?
CREATE TABLE table_name_32 (july VARCHAR, plant_hardiness_zone VARCHAR, january VARCHAR)
SELECT tournament FROM table_name_65 WHERE score_in_the_final = "6–3, 6–2"
Which tournament had a final score of 6–3, 6–2?
CREATE TABLE table_name_65 (tournament VARCHAR, score_in_the_final VARCHAR)
SELECT w_l__percentage FROM table_name_77 WHERE wins = 63 AND losses < 76
What is the win/loss percentage with wins of 63 and losses smaller than 76?
CREATE TABLE table_name_77 (w_l__percentage VARCHAR, wins VARCHAR, losses VARCHAR)
SELECT SUM(gold) FROM table_name_31 WHERE bronze < 0
Tell me the sum of gold for bronze less than 0
CREATE TABLE table_name_31 (gold INTEGER, bronze INTEGER)
SELECT home_team FROM table_name_89 WHERE away_team = "collingwood"
Who did Collingwood play at home?
CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR)
SELECT high_assists FROM table_name_6 WHERE record = "33–15"
Who had the high assists when the record was 33–15?
CREATE TABLE table_name_6 (high_assists VARCHAR, record VARCHAR)
SELECT COUNT(*), T1.project_details FROM Projects AS T1 JOIN Tasks AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id
How many tasks does each project have? List the task count and the project detail.
CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR); CREATE TABLE Tasks (project_id VARCHAR)
SELECT season FROM table_name_26 WHERE school_club_team = "far eastern" AND number = 26
What season did the player who had the number 26 play on who came from far eastern?
CREATE TABLE table_name_26 (season VARCHAR, school_club_team VARCHAR, number VARCHAR)
SELECT AVG(intake) FROM table_name_62 WHERE type = "primary" AND ofsted_number = 117433 AND dcsf_number > 3335
What is the average primary intake with an Ofsted number of 117433 and a DCSF number greater than 3335?
CREATE TABLE table_name_62 (intake INTEGER, dcsf_number VARCHAR, type VARCHAR, ofsted_number VARCHAR)
SELECT date FROM table_name_34 WHERE year > 1981 AND location = "morocco"
What was the date for morocco when the year was lerger than 1981?
CREATE TABLE table_name_34 (date VARCHAR, year VARCHAR, location VARCHAR)
SELECT MIN(points) FROM table_name_19 WHERE year < 1960 AND entrant = "simoniz"
What is the least amount of points the entrant Simoniz received before 1960?
CREATE TABLE table_name_19 (points INTEGER, year VARCHAR, entrant VARCHAR)
SELECT MIN(losses) FROM table_name_14 WHERE wins = 5 AND against < 1852
What is the smallest losses when the wins are 5 and the against less than 1852?
CREATE TABLE table_name_14 (losses INTEGER, wins VARCHAR, against VARCHAR)
SELECT song FROM table_name_15 WHERE artist = "gino vannelli"
Which song was by artist Gino Vannelli?
CREATE TABLE table_name_15 (song VARCHAR, artist VARCHAR)
SELECT venue FROM table_name_48 WHERE extra = "team competition" AND result = "1st"
Which venue had an extra of Team Competition and a result of 1st?
CREATE TABLE table_name_48 (venue VARCHAR, extra VARCHAR, result VARCHAR)
SELECT prod_code FROM table_2623498_5 WHERE episode__number = "78"
What is the production code for episode #78?
CREATE TABLE table_2623498_5 (prod_code VARCHAR, episode__number VARCHAR)
SELECT romaji_title FROM table_name_94 WHERE japanese_title = "菊次郎とさき 3"
Which romaji title, has Japanese title of 菊次郎とさき 3?
CREATE TABLE table_name_94 (romaji_title VARCHAR, japanese_title VARCHAR)
SELECT date FROM table_name_18 WHERE works_number = "7"
On what Date was the Works Number 7?
CREATE TABLE table_name_18 (date VARCHAR, works_number VARCHAR)
SELECT won FROM table_14058433_5 WHERE points_for = "596"
what's the won with points for being 596
CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR)
SELECT production_code FROM table_21304155_1 WHERE directed_by = "David Solomon"
What is the production code of the episode directed by David Solomon?
CREATE TABLE table_21304155_1 (production_code VARCHAR, directed_by VARCHAR)
SELECT date FROM table_name_95 WHERE winning_score = –8(69 - 72 - 70 - 69 = 280)
On what Date was the Winning score –8 (69-72-70-69=280)?
CREATE TABLE table_name_95 (date VARCHAR, winning_score VARCHAR)
SELECT type FROM table_name_13 WHERE date = "22 may"
What was the course type on 22 May?
CREATE TABLE table_name_13 (type VARCHAR, date VARCHAR)
SELECT AVG(goals_scored) FROM table_name_78 WHERE played < 34 AND draw > 2
What is the average goals scored when less than 34 were played and there were more than 2 draws?
CREATE TABLE table_name_78 (goals_scored INTEGER, played VARCHAR, draw VARCHAR)
SELECT exit_date FROM table_name_50 WHERE transfer_fee = "released" AND player = "kiatprawut saiwaeo"
When was the exit date KiatPrawut Saiwaeo who had a transfer fee of released?
CREATE TABLE table_name_50 (exit_date VARCHAR, transfer_fee VARCHAR, player VARCHAR)
SELECT population__hab_ FROM table_name_10 WHERE distance_medellín_downtown___km__ = "* dane"
What is the population (hab) when the distance medellin downtown (km) is * dane?
CREATE TABLE table_name_10 (population__hab_ VARCHAR, distance_medellín_downtown___km__ VARCHAR)
SELECT partner FROM table_name_39 WHERE opponents_in_final = "lucas arnold ker martín garcía"
What is the name of the partner who played in the final against Lucas Arnold Ker Martín García?
CREATE TABLE table_name_39 (partner VARCHAR, opponents_in_final VARCHAR)
SELECT score FROM table_name_15 WHERE date = "october 5"
Date of october 5 had what score?
CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)
SELECT record FROM table_27713583_2 WHERE team = "@ Minnesota"
What is the record for the game against team @ Minnesota?
CREATE TABLE table_27713583_2 (record VARCHAR, team VARCHAR)
SELECT current_account_balance__percent_of_gdp_ FROM table_30133_1 WHERE gdp_at_current_prices__usd_billions_ = "142.640"
What is the current account balance for a GDP at current prices of 142.640?
CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, gdp_at_current_prices__usd_billions_ VARCHAR)
SELECT laid_down FROM table_name_85 WHERE hull_number = "cvn-69"
What is Laid Down, when Hull Number is "CVN-69"?
CREATE TABLE table_name_85 (laid_down VARCHAR, hull_number VARCHAR)
SELECT title FROM table_name_48 WHERE studio = "embassy pictures"
What is Title, when Studio is "Embassy Pictures"?
CREATE TABLE table_name_48 (title VARCHAR, studio VARCHAR)
SELECT points_classification_klasyfikacja_punktowa FROM table_28092844_16 WHERE teams_classification = "Lampre-Farnese"
Who won the points classification when the teams classification winner was Lampre-Farnese?
CREATE TABLE table_28092844_16 (points_classification_klasyfikacja_punktowa VARCHAR, teams_classification VARCHAR)
SELECT MIN(new_points) FROM table_29572583_19 WHERE status = "Second round lost to Xavier Malisse"
What is listed in new points when status is second round lost to xavier malisse?
CREATE TABLE table_29572583_19 (new_points INTEGER, status VARCHAR)
SELECT money___£__ FROM table_name_50 WHERE country = "south africa" AND to_par = "+1" AND player = "ernie els"
Count the Money ( £ ) of south africa with a To par of +1, and a Player of ernie els?
CREATE TABLE table_name_50 (money___£__ VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)
SELECT venue FROM table_name_27 WHERE position = "17th"
What is the venue when the result was position of 17th?
CREATE TABLE table_name_27 (venue VARCHAR, position VARCHAR)
SELECT position FROM table_name_64 WHERE player = "bernard thompson"
Which Position has a Player of bernard thompson?
CREATE TABLE table_name_64 (position VARCHAR, player VARCHAR)
SELECT rank FROM table_name_63 WHERE s_wicket = "40" AND player = "daniel marsh"
Which rank is 40 for s Wicket with a player of Daniel Marsh?
CREATE TABLE table_name_63 (rank VARCHAR, s_wicket VARCHAR, player VARCHAR)
SELECT opposing_teams FROM table_name_36 WHERE date = "11/02/1961"
Who was the name of the opposing team on 11/02/1961?
CREATE TABLE table_name_36 (opposing_teams VARCHAR, date VARCHAR)
SELECT wheelbase FROM table_name_20 WHERE body_styles = "sport coupe (4p.)"
What wheelbase has sport coupe (4p.) as the body style?
CREATE TABLE table_name_20 (wheelbase VARCHAR, body_styles VARCHAR)
SELECT SUM(pts) FROM table_name_7 WHERE chassis = "march 811"
What are the points for a chassis of march 811?
CREATE TABLE table_name_7 (pts INTEGER, chassis VARCHAR)
SELECT MIN(market_value__billion_) AS $_ FROM table_name_44 WHERE assets__billion_$_ > 276.81 AND company = "toyota" AND profits__billion_$_ > 17.21
Name the lowest Market Value (billion $) which has Assets (billion $) larger than 276.81, and a Company of toyota, and Profits (billion $) larger than 17.21?
CREATE TABLE table_name_44 (market_value__billion_ INTEGER, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR, company VARCHAR)
SELECT COUNT(team_classification) FROM table_15294880_2 WHERE winner = "Alessandro Ballan"
When the winner was Alessandro Ballan, how many total team classifications were there?
CREATE TABLE table_15294880_2 (team_classification VARCHAR, winner VARCHAR)
SELECT StuID FROM Student WHERE sex = 'F' INTERSECT SELECT StuID FROM Sportsinfo WHERE sportname = "Football"
Show student ids who are female and play football.
CREATE TABLE Sportsinfo (StuID VARCHAR, sex VARCHAR, sportname VARCHAR); CREATE TABLE Student (StuID VARCHAR, sex VARCHAR, sportname VARCHAR)
SELECT placing FROM table_name_35 WHERE weight__kg_ < 54 AND barrier_[b_] = "20"
What place was the horse with a barrier of 20 and weighing less than 54 kg
CREATE TABLE table_name_35 (placing VARCHAR, weight__kg_ VARCHAR, barrier_ VARCHAR, b_ VARCHAR)
SELECT affiliation FROM table_name_51 WHERE location = "issaquah"
What is the affiliation of a location called Issaquah?
CREATE TABLE table_name_51 (affiliation VARCHAR, location VARCHAR)
SELECT club FROM table_name_38 WHERE tries_against = "43" AND try_bonus = "9"
Which club has a try bonus of 9 and 43 tries against?
CREATE TABLE table_name_38 (club VARCHAR, tries_against VARCHAR, try_bonus VARCHAR)
SELECT writer FROM table_name_8 WHERE actual_title = "mork & mindy"
What is the Writer with an Actual Title that is mork & mindy?
CREATE TABLE table_name_8 (writer VARCHAR, actual_title VARCHAR)
SELECT AVG(year) FROM table_name_66 WHERE nominee = "angélica rivera"
In which year was Angélica Rivera a nominee?
CREATE TABLE table_name_66 (year INTEGER, nominee VARCHAR)
SELECT COUNT(game) FROM table_17323042_11 WHERE high_points = "Andre Iguodala (29)"
How many games was High Points andre iguodala (29)?
CREATE TABLE table_17323042_11 (game VARCHAR, high_points VARCHAR)
SELECT MIN(capacity___mw__) FROM table_name_99 WHERE rank < 46 AND province = "newfoundland and labrador"
what is the least capacity (mw) when the rank is less than 46 and the province is newfoundland and labrador?
CREATE TABLE table_name_99 (capacity___mw__ INTEGER, rank VARCHAR, province VARCHAR)
SELECT pick__number FROM table_name_62 WHERE league_from = "western hockey league" AND player = "scott glennie"
What pick was Scott Glennie from the Western hockey league
CREATE TABLE table_name_62 (pick__number VARCHAR, league_from VARCHAR, player VARCHAR)
SELECT name, CLASS FROM ship WHERE NOT ship_id IN (SELECT ship_id FROM captain)
what are the names and classes of the ships that do not have any captain yet?
CREATE TABLE ship (name VARCHAR, CLASS VARCHAR, ship_id VARCHAR); CREATE TABLE captain (name VARCHAR, CLASS VARCHAR, ship_id VARCHAR)
SELECT opponent FROM table_name_44 WHERE record = "26-12"
Which opponent has a 26-12 record?
CREATE TABLE table_name_44 (opponent VARCHAR, record VARCHAR)
SELECT MAX(tor_fløysvik) FROM table_28677723_14 WHERE karianne_gulliksen = 8
Name the most for fløysvik for 8
CREATE TABLE table_28677723_14 (tor_fløysvik INTEGER, karianne_gulliksen VARCHAR)
SELECT publisher FROM table_name_17 WHERE year = "2014" AND title = "star citizen"
Who published Star Citizen in 2014?
CREATE TABLE table_name_17 (publisher VARCHAR, year VARCHAR, title VARCHAR)
SELECT number FROM table_name_37 WHERE bb_ + hbp = 39 AND year = "1985"
The year of 1985 which has a BB +HBP of 39 has what Number listed?
CREATE TABLE table_name_37 (number VARCHAR, year VARCHAR, bb_ VARCHAR, hbp VARCHAR)
SELECT date FROM table_name_61 WHERE winning_driver = "ugo sivocci"
What Date has a Winning driver of ugo sivocci?
CREATE TABLE table_name_61 (date VARCHAR, winning_driver VARCHAR)
SELECT MAX(points) FROM table_name_80 WHERE position = 5 AND played < 18
Which Points is the highest one that has a Position of 5, and a Played smaller than 18?
CREATE TABLE table_name_80 (points INTEGER, position VARCHAR, played VARCHAR)
SELECT annual_generation__average_gwh_ FROM table_name_83 WHERE name = "kawerau (bope)"
What is the Annual Generation at Kawerau (Bope)?
CREATE TABLE table_name_83 (annual_generation__average_gwh_ VARCHAR, name VARCHAR)
SELECT losing_team FROM table_10548224_1 WHERE date_contested = "February 1, 2004"
Who was the losing team of the game that was contested on February 1, 2004?
CREATE TABLE table_10548224_1 (losing_team VARCHAR, date_contested VARCHAR)
SELECT date_of_vacancy FROM table_name_40 WHERE manner_of_departure = "mutual consent" AND outgoing_manager = "svetozar šapurić"
What was the date of vacancy of svetozar šapurić who departed with mutual consent?
CREATE TABLE table_name_40 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)