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 |
name some data transformation used in sas di? : Sas-di
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
· What are some good SAS programming practices for processing very large data sets?
What are TEAEs
2 Answers Accenture, Quintiles,
describe about joins? briefly?
name several ways to achieve efficiency in your program? : Sas programming
What are the features of SAS?
Why double trailing @@ is used in input statement?
define table lookup and how may ways it can be done...explian
How you can read the variables that you need?
what is the main difference between rename and label? (don't say that they both perform the same function).
Can we create datasets by proc step ? (Proc contents, Means)?