请教一个SQL 的问题。在以下语句中 在where 的后面我需要加个条件,但是加了总提示错误。

ALTERprocufdata(@chrWherevarchar(1000))asDECLARE@textvarchar(10)DECLARE@chrsqlvarchar... ALTER proc ufdata(@chrWhere varchar(1000))
as

DECLARE @text varchar(10)
DECLARE @chrsql varchar(1000)
select @text=SUBSTRING(@chrWhere,5,10)

if ltrim(rtrim(@chrWhere)) <> ''
BEGIN
set @chrsql='select cwhcode,sum( isnull(iainprice,0))-sum(isnull(iaoutprice,0)) 金额
into table_01_01
from IA_Subsidiary
where dkeepdate<='''+@text+'''
group by cwhcode'
If exists(select name from sysobjects where name ='table_01_01')
Drop table table_01_01
end
else
begin
set @chrsql='select cwhcode,sum( isnull(iainprice,0))-sum(isnull(iaoutprice,0)) 金额
into table_01_01
from IA_Subsidiary
group by cwhcode'
If exists(select name from sysobjects where name ='table_01_01')
Drop table table_01_01
end

print @chrsql
exec(@chrsql)
---------------------------------------
在以上语句中 在where 的后面我需要加个条件,但是加了总提示错误。例如
where dkeepdate<='''+@text+''' and ddate>='2011-12-31'
请问我该如何加?ddate字段为日期型的。
展开
 我来答
carmada
2012-02-02 · 超过49用户采纳过TA的回答
知道小有建树答主
回答量:159
采纳率:0%
帮助的人:93.9万
展开全部
此处有问题:
'''+@text+'''

请测试下面的命令
declare @test nvarchar(10)
select @test = 3
print '''+@test+'''
结果是:'+@test+' 而不是 '3'。
追问
以上语句没有问题,而我的需求是要在WHERE后再加个条件,这个条件是日期型,同题,加了之提示错误。
tearofangell
2012-02-02 · TA获得超过252个赞
知道小有建树答主
回答量:123
采纳率:0%
帮助的人:136万
展开全部
sqlserver CONVERT(char(10),ddate,102)
oracle to_char(ddate,'yyyy-MM-dd')
追问
请问在我上面的语句中,如何改?我是菜鸟。呵呵。请示例。万分感谢。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式