dbo.Profile_Updated ( BusinessName VARCHAR, ContactName VARCHAR, Address VARCHAR, City VARCHAR, State VARCHAR, Posta
Perhaps this will work:
SELECT DISTINCT City, State, Postalcode INTO dbo.PostalDB FROM dbo.Profile_Updated
The INTO clause will create a new table using the attributes from the source. The A little web searching will reveal many other possible solutions.
INTO