hi i date is 05sep2005; i want the oupput like
05sep2005:00:00:00 ; how it wil come?
Answer Posted / kumar
data test;
input dt : datetime20.;
cards;
05sep2005:00:00:00
;
proc print data=test;
format dt datetime20.;
run;
| Is This Answer Correct ? | 3 Yes | 8 No |
Post New Answer View All Answers
How to sort in descending order?
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
What is a macro routine?
what techniques and/or procs do you use for tables? : Sas programming
what is data integration? : Sas-di
what is proc Index? and what is proc document?
Can you execute a macro within a macro? Describe. : sas-macro
Have you ever used the SAS Debugger?
How many data types are there in SAS?
What is maximum number of rows and cols can be handled in SAS?
Enlist the syntax rules followed in sas statements.
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
how does sas handle missing values in procs? : Sas programming
What is the work of tranwrd function?
what is the use of proc contents and proc print in sas? : Sas-administrator