What statement do you code to write the record to the file?
Answer Posted / bhargavi
BY using data _null_
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what has been your most common programming mistake? : Sas programming
What are the special input delimiters used in SAS?
what is ae onset date n what is RDS
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 is sas business intelligence? : Sas-bi
What is Linear Regression?
what can you learn from the sas log when debugging? : Sas programming
is data integration and etl programming is same? : Sas-di
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
what are the benefits of data integration? : Sas-di
What are the applications primarily used by business analyst? : Sas-bi
what does the run statement do? : Sas programming
What makes sas stand out to be the best over other data analytics tools?
Describe the function and untility of the most difficult SAS macro that you have written.
why is a stop statement needed for the point=option on a set statement? : Sas programming