How to fix 'The conversion of a varchar data type to a datetime data type resulted in an out-of-range value'
By FoxLearn 11/6/2024 9:35:23 AM 360
For example:
Convert 31/10/2024
to datetime in sql, this is a day/month/year format, which could conflict with the default datetime format in SQL Server (mm/dd/yyyy
).
You can use CONVERT
with style 103
to convert it properly as shown below.
SELECT CONVERT(datetime, '31/10/2024', 103)
103
is the style code for dd/mm/yyyy
format.
If the date format is dynamic, or you're working with multiple date formats, you might want to standardize the input string before converting it. You can use TRY_CONVERT
(which returns NULL
if the conversion fails, avoiding errors) to check if the conversion succeeds.
SELECT TRY_CONVERT(datetime, '31/10/2024', 103)
If your dates are formatted as yyyy-mm-dd
, you can simply use.
SELECT CAST('2024-10-31' AS datetime)
This will correctly interpret the date in dd/mm/yyyy
format and convert it to datetime
.
- Saving changes is not permitted in SQL Server
- How to change ‘Edit Top 200 Rows’ and ‘Select Top 1000 Rows’ in SQL
- How to fix 'The specified sa password does not meet strong password requirements'
- How to Set Up Dark Theme in SQL Server Management Studio
- DBCC CHECKIDENT RESEED 0
- How to drop temporary table if exists
- How to convert timestamp to date in SQL Server
- How to convert SQL Server's timestamp column to datetime format