question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is Penske Racing's name?
CREATE TABLE table_name_52 (name VARCHAR, winning_team VARCHAR)
SELECT name FROM table_name_52 WHERE winning_team = "penske racing"
What is the effective exhaust velocity in a Space Shuttle Vacuum?
CREATE TABLE table_15944_5 (effective_exhaust_velocity__m_s_ VARCHAR, scenario VARCHAR)
SELECT COUNT(effective_exhaust_velocity__m_s_) FROM table_15944_5 WHERE scenario = "Space shuttle vacuum"
On what date was the venue Away and the result was lost 6-4 (lost 9-7 on agg)?
CREATE TABLE table_name_5 (date VARCHAR, venue VARCHAR, result VARCHAR)
SELECT date FROM table_name_5 WHERE venue = "away" AND result = "lost 6-4 (lost 9-7 on agg)"
How many values of HDTV correspond to television service of la sorgente sat 1?
CREATE TABLE table_15887683_16 (hdtv VARCHAR, television_service VARCHAR)
SELECT COUNT(hdtv) FROM table_15887683_16 WHERE television_service = "La Sorgente Sat 1"
Name the party with first elected more than 1999 and position of supervisor for john foust
CREATE TABLE table_name_88 (party VARCHAR, name VARCHAR, first_elected VARCHAR, position VARCHAR)
SELECT party FROM table_name_88 WHERE first_elected > 1999 AND position = "supervisor" AND name = "john foust"
What was the game with a rank higher than 2 and a name of zendon hamilton?
CREATE TABLE table_name_20 (games INTEGER, name VARCHAR, rank VARCHAR)
SELECT MAX(games) FROM table_name_20 WHERE name = "zendon hamilton" AND rank > 2
What is the lowest Grid with 25 laps manufactured by Honda with a time of +54.103?
CREATE TABLE table_name_91 (grid INTEGER, time_retired VARCHAR, laps VARCHAR, manufacturer VARCHAR)
SELECT MIN(grid) FROM table_name_91 WHERE laps = 25 AND manufacturer = "honda" AND time_retired = "+54.103"
What is the average day in December with a Record of 16-3-4 and a Game smaller than 23?
CREATE TABLE table_name_84 (december INTEGER, record VARCHAR, game VARCHAR)
SELECT AVG(december) FROM table_name_84 WHERE record = "16-3-4" AND game < 23
What is the venue for batting partners Mahela Jayawardene and Prasanna Jayawardene
CREATE TABLE table_1670921_1 (venue VARCHAR, batting_partners VARCHAR)
SELECT venue FROM table_1670921_1 WHERE batting_partners = "Mahela Jayawardene and Prasanna Jayawardene"
For each building, show the name of the building and the number of institutions in it.
CREATE TABLE building (name VARCHAR, building_id VARCHAR); CREATE TABLE institution (building_id VARCHAR)
SELECT T1.name, COUNT(*) FROM building AS T1 JOIN institution AS T2 ON T1.building_id = T2.building_id GROUP BY T1.building_id
List all every engineer's first name, last name, details and coresponding skill description.
CREATE TABLE Maintenance_Engineers (first_name VARCHAR, last_name VARCHAR, other_details VARCHAR, engineer_id VARCHAR); CREATE TABLE Engineer_Skills (engineer_id VARCHAR, skill_id VARCHAR); CREATE TABLE Skills (skill_description VARCHAR, skill_id VARCHAR)
SELECT T1.first_name, T1.last_name, T1.other_details, T3.skill_description FROM Maintenance_Engineers AS T1 JOIN Engineer_Skills AS T2 ON T1.engineer_id = T2.engineer_id JOIN Skills AS T3 ON T2.skill_id = T3.skill_id
For the club that had 453 points against, losing bonus of 5 and played of 22, what is the drawn?
CREATE TABLE table_name_94 (drawn VARCHAR, losing_bonus VARCHAR, played VARCHAR, points_against VARCHAR)
SELECT drawn FROM table_name_94 WHERE played = "22" AND points_against = "453" AND losing_bonus = "5"
What is 2011, when 2010 is "WTA Premier 5 Tournaments"?
CREATE TABLE table_name_49 (Id VARCHAR)
SELECT 2011 FROM table_name_49 WHERE 2010 = "wta premier 5 tournaments"
When the launch date is 14.09.2005, and the frequency is 900mhz and 1800mhz, how many carriers are there?
CREATE TABLE table_19246_1 (carrier VARCHAR, frequency VARCHAR, launch_date__ddmmyyyy_ VARCHAR)
SELECT COUNT(carrier) FROM table_19246_1 WHERE frequency = "900MHz and 1800MHz" AND launch_date__ddmmyyyy_ = "14.09.2005"
Where was the competition that took place that had a 5-1 result?
CREATE TABLE table_name_7 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_7 WHERE result = "5-1"
How many wins did Team Autotecnica, with 0 podiums, have?
CREATE TABLE table_name_82 (wins VARCHAR, podiums VARCHAR, team VARCHAR)
SELECT wins FROM table_name_82 WHERE podiums = "0" AND team = "team autotecnica"
What date did af giles play?
CREATE TABLE table_name_40 (date VARCHAR, player VARCHAR)
SELECT date FROM table_name_40 WHERE player = "af giles"
What were the results before the year 2000?
CREATE TABLE table_name_7 (result VARCHAR, year INTEGER)
SELECT result FROM table_name_7 WHERE year < 2000
Which city is Naples Airport located in?
CREATE TABLE table_name_27 (city VARCHAR, airport VARCHAR)
SELECT city FROM table_name_27 WHERE airport = "naples airport"
Who directed the episode written cyrus nowrasteh?
CREATE TABLE table_name_85 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_name_85 WHERE written_by = "cyrus nowrasteh"
What year is the venue in budapest, hungary?
CREATE TABLE table_name_17 (year INTEGER, venue VARCHAR)
SELECT SUM(year) FROM table_name_17 WHERE venue = "budapest, hungary"
Show the addresses of the buildings that have apartments with more than 2 bathrooms.
CREATE TABLE Apartment_Buildings (building_address VARCHAR, building_id VARCHAR); CREATE TABLE Apartments (building_id VARCHAR, bathroom_count INTEGER)
SELECT T1.building_address FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T2.bathroom_count > 2
who is the web client when the client is x and the project is goto servers vnc java server (gsvncj)?
CREATE TABLE table_name_18 (Web VARCHAR, client VARCHAR, project VARCHAR)
SELECT Web AS client FROM table_name_18 WHERE client = "x" AND project = "goto servers vnc java server (gsvncj)"
In which game did the opponents score 14 points?
CREATE TABLE table_name_41 (game VARCHAR, opponents VARCHAR)
SELECT game FROM table_name_41 WHERE opponents = "14"
What's the distance of the course of stage 4?
CREATE TABLE table_name_73 (distance VARCHAR, stage VARCHAR)
SELECT distance FROM table_name_73 WHERE stage = "4"
Find the manager name and district of the shop whose number of products is the largest.
CREATE TABLE shop (manager_name VARCHAR, district VARCHAR, number_products VARCHAR)
SELECT manager_name, district FROM shop ORDER BY number_products DESC LIMIT 1
Name the most number for charvez davis
CREATE TABLE table_25360865_1 (_number INTEGER, name VARCHAR)
SELECT MAX(_number) FROM table_25360865_1 WHERE name = "Charvez Davis"
When alvin and the chipmunks meet frankenstein, what was the role?
CREATE TABLE table_name_99 (role VARCHAR, title VARCHAR)
SELECT role FROM table_name_99 WHERE title = "alvin and the chipmunks meet frankenstein"
Which average against has a lost less than 1?
CREATE TABLE table_name_78 (against INTEGER, lost INTEGER)
SELECT AVG(against) FROM table_name_78 WHERE lost < 1
Find all phones that have word 'Full' in their accreditation types. List the Hardware Model name and Company name.
CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, Accreditation_type VARCHAR)
SELECT Hardware_Model_name, Company_name FROM phone WHERE Accreditation_type LIKE 'Full'
How many points did the Tyrrell Racing Organisation have?
CREATE TABLE table_name_27 (points VARCHAR, entrant VARCHAR)
SELECT points FROM table_name_27 WHERE entrant = "tyrrell racing organisation"
How many parties are there in races involving Dawson Mathis?
CREATE TABLE table_1341663_11 (party VARCHAR, incumbent VARCHAR)
SELECT COUNT(party) FROM table_1341663_11 WHERE incumbent = "Dawson Mathis"
How many totals have a play-off less than 0?
CREATE TABLE table_name_47 (total VARCHAR, play_offs INTEGER)
SELECT COUNT(total) FROM table_name_47 WHERE play_offs < 0
what is the highest attendance for week 6?
CREATE TABLE table_name_82 (attendance INTEGER, week VARCHAR)
SELECT MAX(attendance) FROM table_name_82 WHERE week = 6
what's the total number of race winner with rnd being 10
CREATE TABLE table_1140074_2 (race VARCHAR, rnd VARCHAR)
SELECT COUNT(race) AS Winner FROM table_1140074_2 WHERE rnd = 10
How many games lost for team(s) with less than 4 paints and against total of over 340?
CREATE TABLE table_name_65 (lost VARCHAR, points VARCHAR, against VARCHAR)
SELECT COUNT(lost) FROM table_name_65 WHERE points < 4 AND against > 340
What is the high grid number for a Time/Retired of + 3 laps, and a Laps smaller than 57?
CREATE TABLE table_name_29 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
SELECT MAX(grid) FROM table_name_29 WHERE time_retired = "+ 3 laps" AND laps < 57
What circuit did marlboro team penske win with an unknown fastest lap?
CREATE TABLE table_name_67 (circuit VARCHAR, winning_team VARCHAR, fastest_lap VARCHAR)
SELECT circuit FROM table_name_67 WHERE winning_team = "marlboro team penske" AND fastest_lap = "unknown"
What was the highest percentage of internet users a nation with a 1622% growth in 2000-2008 had?
CREATE TABLE table_name_51 (_percentage_internet_users INTEGER, _percentage_growth__2000_2008_ VARCHAR)
SELECT MAX(_percentage_internet_users) FROM table_name_51 WHERE _percentage_growth__2000_2008_ = 1622
What is the fewest gold medals when the bronze medals is greater than 5?
CREATE TABLE table_name_49 (gold INTEGER, bronze INTEGER)
SELECT MIN(gold) FROM table_name_49 WHERE bronze > 5
How many models numbered L5506 have a QPI speed?
CREATE TABLE table_269920_17 (qpi_speed__gt_s_ VARCHAR, model VARCHAR)
SELECT COUNT(qpi_speed__gt_s_) FROM table_269920_17 WHERE model = "L5506"
What is the pick number minimum if the player is Mark Bortz?
CREATE TABLE table_2508633_8 (pick__number INTEGER, player VARCHAR)
SELECT MIN(pick__number) FROM table_2508633_8 WHERE player = "Mark Bortz"
What is the percentage of republican voters in which the d-r spread is -14.1%?
CREATE TABLE table_27003223_4 (republican VARCHAR, d_r_spread VARCHAR)
SELECT republican FROM table_27003223_4 WHERE d_r_spread = "-14.1%"
What is the loss with 319 points?
CREATE TABLE table_name_66 (lost VARCHAR, points_for VARCHAR)
SELECT lost FROM table_name_66 WHERE points_for = "319"
What is Date From, when Moving To is "Birmingham City"?
CREATE TABLE table_name_46 (date_from VARCHAR, moving_to VARCHAR)
SELECT date_from FROM table_name_46 WHERE moving_to = "birmingham city"
Which Yards is the highest one that has a Rec smaller than 54, and a Long smaller than 5, and a Player of todd herremans, and an Avg larger than 1?
CREATE TABLE table_name_51 (yards INTEGER, avg VARCHAR, player VARCHAR, rec VARCHAR, long VARCHAR)
SELECT MAX(yards) FROM table_name_51 WHERE rec < 54 AND long < 5 AND player = "todd herremans" AND avg > 1
What was the College/junior/club team of the player with the united states nationality?
CREATE TABLE table_name_91 (college_junior_club_team VARCHAR, nationality VARCHAR)
SELECT college_junior_club_team FROM table_name_91 WHERE nationality = "united states"
How many wins for average start less than 25?
CREATE TABLE table_name_4 (wins VARCHAR, avg_start INTEGER)
SELECT COUNT(wins) FROM table_name_4 WHERE avg_start < 25
What year had a pole smaller than 0 and in 77th position?
CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, poles VARCHAR)
SELECT MAX(year) FROM table_name_57 WHERE position = "77th" AND poles < 0
Who were the directors of the film with the original title o.k.?
CREATE TABLE table_10874596_1 (director VARCHAR, original_title VARCHAR)
SELECT director FROM table_10874596_1 WHERE original_title = "o.k."
How many Weeks have a Result of w 17–13?
CREATE TABLE table_name_82 (week INTEGER, result VARCHAR)
SELECT AVG(week) FROM table_name_82 WHERE result = "w 17–13"
Who has the par score of 70-76-68-214?
CREATE TABLE table_name_23 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_23 WHERE score = "70-76-68-214"
How many series numbers are there when there were 15.8 u.s. viewers (millions)?
CREATE TABLE table_27833469_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(series__number) FROM table_27833469_1 WHERE us_viewers__millions_ = "15.8"
Which Event has a Surface of semifinal, and a Winner of hard (i)?
CREATE TABLE table_name_23 (MAX VARCHAR, surface VARCHAR, winner VARCHAR)
SELECT NOT MAX AS event FROM table_name_23 WHERE surface = "semifinal" AND winner = "hard (i)"
List all the MCs with 5 appearances who were inducted in 2007?
CREATE TABLE table_29160596_1 (top_mc VARCHAR, appearances VARCHAR, year_inducted VARCHAR)
SELECT top_mc FROM table_29160596_1 WHERE appearances = 5 AND year_inducted = 2007
What the number of matches when the BBI is 3/27?
CREATE TABLE table_28846752_9 (matches INTEGER, bbi VARCHAR)
SELECT MIN(matches) FROM table_28846752_9 WHERE bbi = "3/27"
What is the total number of Weight(s), when Block is 300?
CREATE TABLE table_name_26 (weight VARCHAR, block VARCHAR)
SELECT COUNT(weight) FROM table_name_26 WHERE block = 300
What was the outcome of the match against Nguyen Tien Minh in the Bulgaria Open?
CREATE TABLE table_name_51 (outcome VARCHAR, opponent VARCHAR, tournament VARCHAR)
SELECT outcome FROM table_name_51 WHERE opponent = "nguyen tien minh" AND tournament = "bulgaria open"
What was the opponent in the 2008–09 season, with a final score of 2–3 l?
CREATE TABLE table_name_58 (opponent VARCHAR, season VARCHAR, final_score VARCHAR)
SELECT opponent FROM table_name_58 WHERE season = "2008–09" AND final_score = "2–3 l"
What is the V OC (V), when t (µm) is greater than 5, and when I SC (A) is 0.8?
CREATE TABLE table_name_46 (v_oc__v_ VARCHAR, t__µm_ VARCHAR, i_sc__a_ VARCHAR)
SELECT v_oc__v_ FROM table_name_46 WHERE t__µm_ > 5 AND i_sc__a_ = "0.8"
WHAT SCORE HAD A RECORD OF 1-1?
CREATE TABLE table_name_42 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_42 WHERE record = "1-1"
What is the Label for Date of 14 November 2003, and Catalogue tojp 60121-22?
CREATE TABLE table_name_70 (label VARCHAR, date VARCHAR, catalogue VARCHAR)
SELECT label FROM table_name_70 WHERE date = "14 november 2003" AND catalogue = "tojp 60121-22"
What's the percentage of votes for other candidates in the county where Bush got 51.6% of the votes?
CREATE TABLE table_1304443_2 (others_percentage VARCHAR, bush_percentage VARCHAR)
SELECT others_percentage FROM table_1304443_2 WHERE bush_percentage = "51.6%"
Which Syndney's Gold coast, Adelaide, Melbourne, and Auckland were all no?
CREATE TABLE table_name_47 (sydney VARCHAR, auckland VARCHAR, melbourne VARCHAR, gold_coast VARCHAR, adelaide VARCHAR)
SELECT sydney FROM table_name_47 WHERE gold_coast = "no" AND adelaide = "no" AND melbourne = "no" AND auckland = "no"
List the dates and vote percents of elections.
CREATE TABLE election (Date VARCHAR, Vote_Percent VARCHAR)
SELECT Date, Vote_Percent FROM election
For the player from Finland, what is the highest overall pick rank?
CREATE TABLE table_name_64 (overall INTEGER, nationality VARCHAR)
SELECT MAX(overall) FROM table_name_64 WHERE nationality = "finland"
I want the region for ICAO of vmmc
CREATE TABLE table_name_28 (region VARCHAR, icao VARCHAR)
SELECT region FROM table_name_28 WHERE icao = "vmmc"
What is the frequency of 104.3 business radio?
CREATE TABLE table_name_95 (frequency VARCHAR, name VARCHAR)
SELECT frequency FROM table_name_95 WHERE name = "104.3 business radio"
How many field goals did Walter Rheinschild have?
CREATE TABLE table_25724294_2 (field_goals INTEGER, player VARCHAR)
SELECT MAX(field_goals) FROM table_25724294_2 WHERE player = "Walter Rheinschild"
What is the Mar 24 rank when the May 26 is 13, and the May 12 is 6?
CREATE TABLE table_name_93 (mar_24 VARCHAR, may_26 VARCHAR, may_12 VARCHAR)
SELECT mar_24 FROM table_name_93 WHERE may_26 = "13" AND may_12 = "6"
What is the elimination number for the time 13:43?
CREATE TABLE table_name_74 (elimination VARCHAR, time VARCHAR)
SELECT elimination FROM table_name_74 WHERE time = "13:43"
What is the greatest CCBs with Launches to date of 4, and a Payload to GTO of 8,900kg?
CREATE TABLE table_name_52 (ccbs INTEGER, launches_to_date VARCHAR, payload_to_gto VARCHAR)
SELECT MAX(ccbs) FROM table_name_52 WHERE launches_to_date = 4 AND payload_to_gto = "8,900kg"
Name the surface on june 11, 1995
CREATE TABLE table_name_70 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_70 WHERE date = "june 11, 1995"
Name the episode for run time of 22:50
CREATE TABLE table_2114308_1 (episode VARCHAR, run_time VARCHAR)
SELECT episode FROM table_2114308_1 WHERE run_time = "22:50"
How many million U.S. viewers watched episode number 6 in the series?
CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, no_in_series VARCHAR)
SELECT us_viewers__million_ FROM table_25668962_1 WHERE no_in_series = 6
What is the record for the game at home Los Angeles Lakers?
CREATE TABLE table_11964047_10 (record VARCHAR, home VARCHAR)
SELECT record FROM table_11964047_10 WHERE home = "Los Angeles Lakers"
What is the date of the week 4 game?
CREATE TABLE table_name_76 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_76 WHERE week = 4
What is the fewest number of wins when he has 3 poles in 2010?
CREATE TABLE table_name_51 (wins INTEGER, poles VARCHAR, season VARCHAR)
SELECT MIN(wins) FROM table_name_51 WHERE poles = 3 AND season = "2010"
What club team plays at the champion window field?
CREATE TABLE table_name_40 (club VARCHAR, venue VARCHAR)
SELECT club FROM table_name_40 WHERE venue = "champion window field"
what is the position for the competitor that has a score more than 7
CREATE TABLE table_name_44 (position VARCHAR, a_score INTEGER)
SELECT position FROM table_name_44 WHERE a_score > 7
What's the sum of the points when attendance is 8,000 on february 22?
CREATE TABLE table_name_41 (points INTEGER, attendance VARCHAR, date VARCHAR)
SELECT SUM(points) FROM table_name_41 WHERE attendance = "8,000" AND date = "february 22"
What is the lowest metal total when the Bronze metals are larger than 0, the Gold medals are smaller than 1, and the nation is Switzerland?
CREATE TABLE table_name_18 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR)
SELECT MIN(total) FROM table_name_18 WHERE bronze > 0 AND nation = "switzerland" AND gold < 1
What is the earliest year with a category of Top 10 Selling Mandarin Albums of the Year?
CREATE TABLE table_name_53 (year INTEGER, category VARCHAR)
SELECT MIN(year) FROM table_name_53 WHERE category = "top 10 selling mandarin albums of the year"
What day is richmond the away side?
CREATE TABLE table_name_71 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_71 WHERE away_team = "richmond"
What is 1987-88, when Points is "136"?
CREATE TABLE table_name_24 (points VARCHAR)
SELECT 1987 AS _88 FROM table_name_24 WHERE points = 136
What is the Name of a state Authority that has a Roll of 72?
CREATE TABLE table_name_13 (name VARCHAR, authority VARCHAR, roll VARCHAR)
SELECT name FROM table_name_13 WHERE authority = "state" AND roll = "72"
How many apartment bookings are there in total?
CREATE TABLE Apartment_Bookings (Id VARCHAR)
SELECT COUNT(*) FROM Apartment_Bookings
what is the average losses when the wins is 9 and ties more than 0?
CREATE TABLE table_name_10 (losses INTEGER, wins VARCHAR, ties VARCHAR)
SELECT AVG(losses) FROM table_name_10 WHERE wins = 9 AND ties > 0
What is the smallest number of points for a match less than 12?
CREATE TABLE table_name_6 (points INTEGER, match INTEGER)
SELECT MIN(points) FROM table_name_6 WHERE match < 12
What is Finalists, when Tournament is Miami?
CREATE TABLE table_name_79 (finalists VARCHAR, tournament VARCHAR)
SELECT finalists FROM table_name_79 WHERE tournament = "miami"
What day is south melbourne at home?
CREATE TABLE table_name_71 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_71 WHERE home_team = "south melbourne"
What 1935 has 4 as a 1953?
CREATE TABLE table_name_6 (Id VARCHAR)
SELECT 1935 FROM table_name_6 WHERE 1953 = "4"
What office is held by Electorate Hume?
CREATE TABLE table_name_71 (in_office VARCHAR, electorate VARCHAR)
SELECT in_office FROM table_name_71 WHERE electorate = "hume"
According to the 2010 census, what was the population for the federal state that had less than -6 deputies required ignoring the limits?
CREATE TABLE table_name_47 (population__on_the_census_also_called_censo_2010_ VARCHAR, deputies_required_ignoring_the_limits INTEGER)
SELECT population__on_the_census_also_called_censo_2010_ FROM table_name_47 WHERE deputies_required_ignoring_the_limits < -6
What was the smallest crowd size for the home team at St Kilda?
CREATE TABLE table_name_80 (crowd INTEGER, home_team VARCHAR)
SELECT MIN(crowd) FROM table_name_80 WHERE home_team = "st kilda"
What is the average gold that has a total of 2 and more than 1 bronze.
CREATE TABLE table_name_75 (gold INTEGER, total VARCHAR, bronze VARCHAR)
SELECT AVG(gold) FROM table_name_75 WHERE total = 2 AND bronze > 1
Tell me the D 41 for D 43 of d 18
CREATE TABLE table_name_63 (d_41 VARCHAR, d_43 VARCHAR)
SELECT d_41 FROM table_name_63 WHERE d_43 = "d 18"
What season has a Games listed of 10?
CREATE TABLE table_name_39 (season VARCHAR, games VARCHAR)
SELECT season FROM table_name_39 WHERE games = "10"
Which Flag did the Ship Aidavita have?
CREATE TABLE table_name_66 (flag VARCHAR, ship VARCHAR)
SELECT flag FROM table_name_66 WHERE ship = "aidavita"
what is the number of weekly rank where the total is 1980000?
CREATE TABLE table_17004367_3 (weekly_rank VARCHAR, total VARCHAR)
SELECT COUNT(weekly_rank) FROM table_17004367_3 WHERE total = 1980000