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 |
Tell me about % include and % eval? : sas-macro
What is the difference between using drop = data set option in data statement and set statement?
Name statements that are recognized at compile time only?
describe about joins? briefly?
Could you please answers for this. 1.Code the tables statement for a single-level (most common) frequency. 2.Code the tables statement to produce a multi-level frequency.
how can u join the two tables without using proc sql Joins and nested queries ?
what are input dataset and output dataset options?
How do i read multiple spaces in datasets?
How do you connect the desktop application to metadata server? : sas-grid-administration
Enlist the syntax rules followed in sas statements.
i have a data set with 20 observations i want label from 8 to 15 observations ? how you create this one.
How do you add a number to a macro variable? : sas-macro