How do i read multiple spaces in datasets?
Answer Posted / sri
by using double trailing operator @@
| Is This Answer Correct ? | 1 Yes | 9 No |
Post New Answer View All Answers
What is maximum number of rows and cols can be handled in SAS?
Why double trailing @@ is used in input statement?
What are the five ways to do a table lookup in sas? : sas-grid-administration
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
How to include or exclude specific variables in a data set?
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
Are you sensitive to code walk-throughs peer review or QC review?
what are input dataset and output dataset options? : Sas programming
Mention few capabilities of sas framework.
Explain the main difference between the sas procedures and functions? : Sas-administrator
What are the features of base sas system?
what is operational data and operational system? : Sas-di
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
What makes sas stand out to be the best over other data analytics tools?
how many display types available in sas bi dashboard? : Sas-bi