Compare sas with other data analytics tools.
Explain the main difference between the sas procedures and functions? : Sas-administrator
how we can create optional or required parameters in SAS macro...
how does sas handle missing values in a merge? : Sas programming
what is the difference between sas and other datawarehousing languages?what are the advantages of sas over them?
How necessary is it to be creative in your work?
What is difference between sas rename and lable?
why is sas considered self-documenting? : Sas programming
How do i read multiple spaces in datasets?
what is in stream data in SAS?
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.
Name statements that function at both compile and execution time?
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming