SQL - The conversion of a varchar data type to a datetime data type resulted in an out-of-range value(SQL - varchar 数据类型到日期时间数据类型的转换导致值超出范围)
问题描述
我在运行 SQL 以将我的数据类型值从 varchar
转换为 datetime
时遇到以下错误.
I have been getting the following error when running a SQL to convert my data type value from varchar
to datetime
.
消息 242,级别 16,状态 3,第 1 行将 varchar 数据类型转换为 datetime 数据类型导致值超出范围.
Msg 242, Level 16, State 3, Line 1 The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.
我已经检查了数据,没有发现任何奇怪的东西:运行以下检查并没有返回任何结果
I have checked the data and can't see anything to odd: Ran the following checks and all returning no results
SELECT [Date] from table where [DATe] is null
SELECT [Date] from table where [DATe] = ''
SELECT [Date] from table where LEN([date])> 10
SELECT [Date] from table where LEN([date])< 10
SELECT top 100 [Date] , SUBSTRING([date],4,2) from [table where convert(int, SUBSTRING([date],4,2)) < 1 or convert(int, SUBSTRING([date],4,2)) > 12
SELECT top 100 [Date] , SUBSTRING([date],1,2) from table where convert(int, SUBSTRING([date],4,2)) < 1 or convert(int, SUBSTRING([date],4,2)) > 31
还有什么值得一看的吗?也许值得指点或帮助解决这个问题?似乎无法深入了解.
Is there anything else worth looking at and maybe worth any pointers or help with this issue? Can't seem to get bottom of it.
推荐答案
一周前我遇到了同样的问题.问题在于时区设置.以其他格式指定,例如 mm/dd/yyyy(通常有效).
I have faced the same problem a week ago. The problem is with the time zone setting. Specify in other formats like mm/dd/yyyy (usually works).
将日期指定为 30/12/2013 导致我出错.但是,将其指定为 mm/dd/yyyy 格式有效.
Specifying the date as 30/12/2013 resulted in the error for me. However, specifying it as mm/dd/yyyy format worked.
如果您需要转换您的输入,您可以尝试查看 CONVERT
方法.语法是
If you need to convert your input the you can try looking into the CONVERT
method.
Syntax is
CONVERT(VARCHAR,@your_date_Value,103)
CONVERT(VARCHAR, '12/30/2013', 103)
最后的103是日期时间格式.
The finishing 103 is the datetime format.
有关转换格式和进一步阅读的信息,请参阅此链接.https://www.w3schools.com/sql/func_sqlserver_convert.asp
Refer this link for conversion formats and further reading. https://www.w3schools.com/sql/func_sqlserver_convert.asp
这篇关于SQL - varchar 数据类型到日期时间数据类型的转换导致值超出范围的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQL - varchar 数据类型到日期时间数据类型的转换导致值超出范围
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- SQL 临时表问题 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01