0

我有一个带有不同值的 varchar 列的表。此列中的某些值实际上是日期时间戳,但以 varchar 数据类型编写。我希望找到包含日期时间并且与今天相关的条目。所以,我的桌子是这样的:

  ID  |  column_x
---------------------
  12  |  apple
  13  |  25.03.2018 14:13:58
  14  |  05.10.2020 10:43:17
  15  |  3620

以下查询有效

select [ID] ,[column_x],
CAST(CONVERT(DATETIME, [column_x] , 104) AS DATE) the_date
from [my_DB].[dbo].[my_table]
where (ISDATE([column_x])=1)

结果是这样的:

  ID  |       column_x          |  the_date
-------------------------------------------------
  13  |  25.03.2018 14:13:58    | 2018-03-25
  14  |  05.10.2020 10:43:17    | 2020-10-05
  15  |  3620                   | 3620-01-01

现在我想扩展上述查询以查找属于今天(2020.10.05)的条目

以下查询给出错误:

select * from (
select [ID] ,[column_x],
CAST(CONVERT(DATETIME, [column_x] , 104) AS DATE) the_date
from [my_DB].[dbo].[my_table]
where (ISDATE([column_x])=1) 
) s
where
(select CAST(CONVERT(DATETIME, s.[column_x] , 104) AS DATE))=
(SELECT CAST(GETDATE() AS DATE))

错误信息是:

Conversion failed when converting date and/or time from character string.

我不明白为什么会出现此错误,而我已经根据 SQL 本身仅选择了日期时间的条目。

更奇怪的是,以下查询可以正常工作并打印输出:

if
(select CAST(CONVERT(DATETIME, '05.10.2020 19:46:19' , 104) AS DATE))=
(SELECT CAST(GETDATE() AS DATE))
print 'condition is fulfileld'

即使用有问题的数字 (3620) 替换日期也不会导致错误。只是在这种情况下不满足条件。

我不明白为什么我会收到这个错误。

4

1 回答 1

1

您可以使用try_convert(). . . 但是为什么不将当前日期转换为相同的格式:

select [ID] ,[column_x]
from [my_DB].[dbo].[my_table]
where left(column_x, 10) = convert(varchar(10), getdate(), 104)

以另一种方式进行比较:

where try_convert(date, column_x, 104) = convert(date, getdate())
于 2020-10-05T14:45:17.840 回答