hi
tell be about pfizer? how to compare the work with other
companies ? please tell me how to login and work also?
Answer / saifudheen
pfizer is one of the world's largest research-based pharmaceutical company...
| Is This Answer Correct ? | 9 Yes | 0 No |
How would you delete observations with duplicate keys?
: and & modifiers.
what are some differences between proc summary and proc means? : Sas programming
what versions of sas have you used (on which platforms)? : Sas programming
What are common programming errors committed in sas
How does Mr.Lanka Srinivas teach SAS? Are his accomplishments real? What are the future prospects for SAS?
how to generate report for 0 observation dataset?
which date functions advances a date time or date/time value by a given interval? : Sas programming
Can anyone help me about SAS Realtime scenarios in Clinical field
Hi, I have one dataset, could you please ans for this. id amount paid_amount 1 700 400 2 900 250 3 300 300 a 400 250 b 500 320 c 800 650 x 200 190 y 900 250 z 300 180 i want create new dataset having id and paid_amount who are paid high amount comparing amount. ex: 1d paid_amount 3 300 c 650 x 190
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 are the data types does SAS contain?