Under what circumstances would you code a SELECT construct
instead of IF statements?
Answer Posted / kumarrd
when ever we want check with more than condition we may use
if condition rather than select one
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
Mention what is PROC in SAS?
how could you generate test data with no input data? : Sas programming
how to remove duplicates using proc sql?
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
Explain what is SAS informats?
Why and when do you use proc sql?
Hi, If anyone has base SAS certification dumps, please share.
what is the Population you used in your project, is it ITT or PP?
How would you identify a macro variable?
What are the default statistics that proc means produce?
What is the use of the %include statement?
How is character variable converted into numeric variable and vice versa?
In proc transpose and data step with arrays which one you pick?
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 is the use of proc contents and proc print in sas? : Sas-administrator