我确定我在这里遗漏了一些明显的东西,但是如何将日期时间字符串文字传递给SQL服务器?
例如:
select *
from [dbo].temp_rk_table
where tx_from <= '2015-10-01T06:37:16'
and '2015-10-01T06:37:16' < tx_to
给出:
将数据类型varchar转换为float时出错。
此外:
select *
from [dbo].temp_rk_table
where tx_from <= convert(datetime,'2015-10-01T06:37:16')
and convert(datetime,'2015-10-01T06:37:16' ) < tx_to
给出:
GetNextRows失败。 :转换表达式的算术溢出错误 到数据类型datetime。
...
答案 0 :(得分:1)
所以(根据评论)我确实错过了一些明显的东西! TX_FROM和TX_TO变量被定义为FLOAT,因此不接受我转换的日期时间字符串。
确保您的日期时间确实定义为日期时间。以下查询可能会有所帮助(source):
select data_type +
case
when data_type like '%text' or data_type like 'image' or data_type like 'sql_variant' or data_type like 'xml'
then ''
when data_type = 'float'
then '(' + convert(varchar(10), isnull(numeric_precision, 18)) + ')'
when data_type = 'numeric' or data_type = 'decimal'
then '(' + convert(varchar(10), isnull(numeric_precision, 18)) + ',' + convert(varchar(10), isnull(numeric_scale, 0)) + ')'
when (data_type like '%char' or data_type like '%binary') and character_maximum_length = -1
then '(max)'
when character_maximum_length is not null
then '(' + convert(varchar(10), character_maximum_length) + ')'
else ''
end as CONDENSED_TYPE
, *
from information_schema.columns