| 1. |
How Can You Create Zero Observation Dataset? |
|
Answer» Creating a data set by USING the like clause.ex: PROC sql;create table latha.emp like oracle.emp;quit;In this the like clause triggers the existing table structure to be copied to the new table. using this method result in the creation of an EMPTY table. Creating a data set by using the like clause.ex: proc sql;create table latha.emp like oracle.emp;quit;In this the like clause triggers the existing table structure to be copied to the new table. using this method result in the creation of an empty table. |
|