how to delete the duplicate columns permanently in SQL
Answers were Sorted based on User's Feedback
Answer / chandrakanth
proc sql;
create table dataset-name as select distinct(variable-name),list-all-the-variables-you-want from dataset-name;
quit;
please let me know if you have any questions
Is This Answer Correct ? | 4 Yes | 3 No |
In the SAS Data step what is the difference between the subsetting done by Where and subsetting done by If?
Explain data step in SAS
how sas deals with business intelligence? : Sas-bi
What’s the difference between var b1 – b3 and var b1 — b3?
how does sas handle missing values in functions? : Sas programming
you have a data set like this. data qqq; input name $ total; cards; qq 22 ww 33 qq 22 ee 44 rr 33 ww 44 ; run; and you want output like this......... name total qq 22 ww 44 Do it by data set step.
What is the purpose of _character_ and _numeric_?
explain the use of % includes a statement in sas? : Sas-administrator
describe about joins? briefly?
what is incremental update ? is this possible in SAS OLAP CUBE STUDIO.
Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?