* Zip County 2003.

VARIABLE LABELS
STATE "State"
CITY "City"
zip5 "First 5 digits of zip code"
FIPS "2-digit State + 3-digit County FIPS code (Federal Information Processing Standard). See also U.S. Census Bureau State & County QuickFacts."
MSA "Metropolitan Statistical Area (NCCS file) (list)"
PMSA "Primary Metropolitan Statistical Area - the component areas that comprise a CMSA (76 PMSAs as of 1995). (list)"
CNTY_NM "County Name"
CMSA "Consolidated Metropolitan Statistical Area - by definition is an MSA with one million population or more. Separate component areas (PMSAs) must be defined within an MSA for the entire area to be designated a CMSA (19 CMSAs as of 1995). (list)"
.

.
VALUE LABELS areacode
"NCCS200211-B" "NCCS verification 11/2002 (confidence=B)"
"bahr1" "Matt Bahr (NCCS), carefully coded (10-2002)."
"NCCS200211-C" "NCCS autocodes, 11/2002"
.

SPSS input statement lines

GET DATA
/TYPE=TXT
/FILE="c: emp.csv"
/DELCASE=LINE
/DELIMITERS=","
/ARRANGEMENT=DELIMITED
/FIRSTCASE=2
/IMPORTCASE=ALL
/VARIABLES
. CACHE.
EXECUTE.
DATASET NAME temp WINDOW=FRONT.
.