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 |
What statement do you code to tell SAS that it is to write to an external file?
how do we get duplicate observations in a separate dataset?
how we can create optional or required parameters in SAS macro...
How can you put a "trace" in your program?
Why and when do you use proc sql?
what is the purpose of _error_? : Sas programming
How would you include common or reuse to be processed along with your statements?
What are the default statistics that proc means produce?
If a variable contains only numbers, can it be a character data type?
How to save the log information in a file for future use
Describe crosslist option in tables statement?
What are the difference between ceil and floor functions in sas?