Answer Posted / sriraghubabu
yes, we can replace dataset into view in Proc sql.
example:
proc sql;
create view newemp as
select *
from Employee
group by name;
select * from newemp;
quit;
now the data set is replaced into view..
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
what is hash files in sas and why we are using this one in sas?
What are the difficulties u faced while doing vital signs table or dataset?
Explain why double trailing @@ is used in input statement?
How to test the debugging in sas?
How do you specify the number of iterations and specific condition within a single do loop?
Have you used macros? For what purpose you have used? : sas-macro
what are _numeric_ and _character_ and what do they do? : Sas programming
What are the data types does SAS contain?
how can you import .csv file in to sas? : Sas programming
What is the function of Stop statement in a SAS Program?
What are types of transport files?
Which are the statements whose placement in the data step is critical?
What is the difference between proportion and average?
Describe the function and untility of the most difficult SAS macro that you have written.
How to sort in descending order?