SELECT CONVERT(VARCHAR(10), GETDATE(), 105)
This query return the date in the [DD-MM-YYYY]
format as varchar. I need the same format in datetime datatype in sql server. Pls help me out
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In SQL Server, a DATETIME datatype is stored as 2 4-byte integers so as such doesn’t have a particular formatting like this.
If you want to return the date in a specific format, you need to CONVERT it to VARCHAR with the appropriate format identifier specified.
If you have a datetime in a VARCHAR and want to store that in a DATETIME field in SQL Server, then you should make sure you pass that value to SQL in a format that will always be safely interpreted. e.g. dd/mm/YYYY format is not safe as depending on settings, it could be treated as mm/dd/yyyy when it goes in. Safe formats are:
e.g.
Update:
When you SELECT a DATETIME field (GETDATE(), field, variable….) what you see in SSMS is a formatted value as this is what is useful to you, instead of it showing it’s actual internal 8byte representation.