Specifies a label for a table.
Category: | Table Control |
Data source: | SAS data set, SASHDAT file, SPD Engine data set |
specifies a text string of up to 256 characters.
Requirements | For SAS data sets and SPD Engine data sets, if the text contains single quotation marks, use double quotation marks around the label. Or, use two single quotation marks in the label text and enclose the string in single quotation marks. To remove a label from a data set, assign a label that is equal to a blank that is enclosed in quotation marks. |
Always use single quotation marks for SASHDAT files. |
create table one as select * from one;
create table tst {option label='1976 W2 Info, Hourly'} (col1 char(4), col2 double); create table tst1 {option label="Hillside's Daily Account"} as select from tst3; create table tst2 {option label='Peter''s List'}(col1 char(20), col2 char(20));