
_CDATETIME_
is the creation datetime of the current entry.
Example
The following COPY TO statement copies all entries with a
creation datetime of May 1, 2003, at 9:30 to the Monthly
directory of Work.MyDoc:
copy ^(where=(_cdatetime_ = '01may04:9:30:00'dt))
to \work.mydoc\monthly;
run;
_CTIME_
is the creation time of the current entry.
Example
The following DELETE statement deletes all entries with a
creation time of 9:25:19 PM:
delete ^(where=(_ctime_ = '9:25:19pm't));
run;
_LABEL_
is the label of the current entry.
Example
The following LIST statement lists all tables containing the label 'Type
III Model' within the GLM procedure:
list glm(where=(_type_ = 'table' ...