When
SAS encounters mixed-case or case-sensitive names in SAS code, SAS
stores and displays the names as they are specified. If the SAS variables,
Flight and dates, are defined in mixed case—for example:
input Flight $3. +3 dates date9.;
Then SAS displays the
variable names as defined. The column headings appear as defined.
Mixed-Case Names Displayed in Output
SAS System
Obs Flight dates
1 114 01MAR2000
2 202 01MAR2000
3 204 01MAR2000
Although SAS stores
variable names as they are defined, it recognizes variables for processing
without regard to case. For example, SAS processes these variables
as FLIGHT and DATES. Likewise, renaming the Flight variable to "flight"
or "FLIGHT" would result in the same processing.