How to create an external dataset with sas code?
No Answer is Posted For this Question
Be the First to Post Answer
what is sas metadata repository? : Sas-bi
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.
why is the use of Retrive statement and give me with example?
explain the proc in sas? : Sas-administrator
. Which date advances a date, time or date/time value by a given interval?
How to get part of string form the source string without using sub string function in SAS?
what is the function of catx syntax? : Sas-administrator
is there any differnce between proc means and proc summary?
What is the use of stop statement?
what are all the ways to define macro variable??
2 Answers GSK GlaxoSmithKline,
How do dates work in SAS data?
how would you determine the number of missing or nonmissing values in computations? : Sas programming