

| Features: |
CREATE TABLE statement: AS query expression
|
| Other features: |
data set option: OBS= |
| Table names: | PROCLIB.PAYROLL PROCLIB.BONUS |
libname proclib 'SAS-library';
proc sql; create table proclib.bonus as
select IdNumber, Salary format=dollar8.,
salary*.025 as Bonus format=dollar8.
from proclib.payroll;
title 'BONUS Information';
select *
from proclib.bonus(obs=10);