当前位置:  开发笔记 > 数据库 > 正文

TSQL - 将日期插入动态SQL

如何解决《TSQL-将日期插入动态SQL》经验,为你挑选了2个好方法。

考虑以下TSQL:

SET @WhereClause1 = 'where a.Date > ' + @InvoiceDate

我收到日期/字符串转换错误. @InvoiceDate是一个日期时间变量.什么是正确的语法?



1> Andy White..:

这可能会奏效.

SET @WhereClause1 = 'where a.Date > ''' + convert(varchar, @InvoiceDate) + ''''

虽然如果值为null,则会引发错误.



2> eKek0..:

这将有效:

SET @WhereClause1 = 'where a.Date > ''' + cast(@InvoiceDate as varchar(100)) + ''''

推荐阅读
云聪京初瑞子_617
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有