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 would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
What is the difference between input and infile statement?
how many display types available in sas bi dashboard? : Sas-bi
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
How long can a macro variable be? A token? : sas-macro
Describe a time when you were really stuck on a problem and how you solved it?
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.
which date function advances a date, time or datetime value by a given interval? : Sas programming
what do you mean by data staging area? : Sas-di
what is sas database server? : Sas-di
what is the basic structure sas administrator? : Sas-administrator
describe the interaction table in sas di? : Sas-di
For what purposes have you used sas macros? : sas-macro
what is SAS OPTIMIZATION?
What is proc sort?