system date format is "yy-mm-dd"
"select getdate()" ----> 2009-01-24 20:03:28.513
if i write "select dateadd(dd,2,getdate())
".it returns "2009-01-26 19:59:38.340"...my question is dat
could it be possible to retrive da date in da format "26
jan 2009 ...."??
Answer Posted / deepa
select getdate()
select Dateadd(dd,2,getdate())
select convert(varchar(12),Dateadd(dd,2,getdate()),106)
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
How does SSIS(Sql Server Integration Services) deffer from DTS(Data Transformation Services)?
Explain sql server service broker?
Is it important for a database administrator to understand the operating system and file access?
What is filtered index?
Explain the first normal form(1nf)?
What do you understand by integration services in sql server?
what are the Prerequisites for Replication?
Explain error handling in ssis?
What is clr ddl trigger?
What is built-in function?
What is the use of keyword with encryption. Create a store procedure with encryption?
What is ms sql server service broker?
What are the built in functions in sql server?
What is snapshot parameter in ssrs?
Explain the difference between cross join and full outer join?