What happens in the following code, if u type 8 instead of
*?
proc sql noprint;
create table abc as
select 8 from lib.abc;
quit;
Answers were Sorted based on User's Feedback
Answer / sasuser
It will have one column with value 8 in table abc.
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / prr
Hi Friends,
If we write 8 in the place of * then SAS Assigns,
8 for all the observations in the output window.
| Is This Answer Correct ? | 6 Yes | 0 No |
Identify statements whose placement in the DATA step is critical?
How would you invoke a macro? : sas-macro
what is pdv? how it is related to input buffer in sas?
what is TAB delimiter? explain about it? what will you do to get TAB delimiter?
i have a dataset with 100000 records. i want 100 records from that dataset and create a dataset.we need to pick the observations random order like 100obs,500obs,1020obs,1890obs,2565obs like that i need 100 obs in random order? how can we create this one?
what are system option ? give few examples ? what are dataset options and dataset statements ? if there is a keep option and keep statement ? which one is executed first ? Difference between a WHERE statement and IF statement ? what is the advantage of using WHERE statement option on the dataset ?
what is the primary data source for the wrs? : Sas-bi
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
what is option year cuttoff in sas
where are dashboard components are created and maintained? : Sas-bi
Do you know the features of sas?
how to delete the duplicates by using proc sql?