从 SQL SERVER 2008 中的字符串转换日期和/或时间时转换失败

Conversion failed when converting date and/or time from character string in SQL SERVER 2008(从 SQL SERVER 2008 中的字符串转换日期和/或时间时转换失败)
本文介绍了从 SQL SERVER 2008 中的字符串转换日期和/或时间时转换失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有下面的 SQL.

 UPDATE  student_queues
 SET  Deleted=0,  
      last_accessed_by='raja', 
      last_accessed_on=CONVERT(VARCHAR(24),'23-07-2014 09:37:00',113)
 WHERE std_id IN ('2144-384-11564') 
   AND reject_details='REJECT'

当我运行上述 SQL 时,抛出了以下异常.

when I ran the above SQL the below exception has been throwed.

从字符串转换日期和/或时间时转换失败.

推荐答案

如果您尝试插入 last_accessed_on,这是一个 DateTime2,那么您的问题是因为您将其转换为 SQL 无法理解的格式的 varchar.

If you're trying to insert in to last_accessed_on, which is a DateTime2, then your issue is with the fact that you are converting it to a varchar in a format that SQL doesn't understand.

如果您将代码修改为此,它应该可以工作,请注意您的日期格式已更改为:YYYY-MM-DD hh:mm:ss:

If you modify your code to this, it should work, note the format of your date has been changed to: YYYY-MM-DD hh:mm:ss:

UPDATE  student_queues 
SET  Deleted=0, 
     last_accessed_by='raja', 
     last_accessed_on=CONVERT(datetime2,'2014-07-23 09:37:00')
WHERE std_id IN ('2144-384-11564') AND reject_details='REJECT'

或者如果你想使用CAST,替换为:

Or if you want to use CAST, replace with:

CAST('2014-07-23 09:37:00.000' AS datetime2)

这是使用 SQL ISO 日期格式.

这篇关于从 SQL SERVER 2008 中的字符串转换日期和/或时间时转换失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)