How do you put a giraffe into the refrigerator?
Answer Posted / anantha jothi
Buy a Big refrigerator and put the giraffe into it.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the implications?
explain about sas business intelligence? : 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.
How would you invoke a macro? : sas-macro
What do the mod and int function do? : Sas programming
What is the difference between SAS functions and procedures?
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
Do you know the features of sas?
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
Describe the function and untility of the most difficult SAS macro that you have written.
Difference between SAS STATA & SPSS?
how many types prompting framework can be broken down to? : Sas-bi
how to generate the test data in sas without input data? : Sas-administrator
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
what does the run statement do? : Sas programming