explain what is data set in sas? : Sas-administrator
No Answer is Posted For this Question
Be the First to Post Answer
Why Info School? BUILD YOUR CAREER WITH RIGHT GUIDANCE AND SUPPORT SAS Training in Data Management at InfoSchool Bangalore
which date function advances a date, time or datetime value by a given interval? : Sas programming
How to include or exclude specific variables in a data set?
what are different analysis datasets you created and what are the new variables created
Does SAS ‘Translate’ (compile) or does it ‘Interpret’? Explain.
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 do you know about sas data set?
What are common programming errors committed in sas
what are the categories that sas informats are used to the place the data? : Sas-administrator
what r the job openings SAS for fresher graduates !
how does sas handle missing values in procs? : Sas programming
Which date function advances a date, time or datetime value by a given interval?