M
mwp316
Unregistered / Unconfirmed
GUEST, unregistred user!
@update_str,@class_name,@date_str,@date_end这些变量都已经定义了
set @update_str='update table_x set time_class='+''''+@class_name+''''+' where update_date>='+''''+@date_start+''''+' and update_date<='+''''+@date_end+''''
print @class_name
print @update_str
EXEC sp_executesql @update_str
出现如下错误,不知为什么:
update table_x set time_class=
服务器: 消息 170,级别 15,状态 1,行 1
第 1 行: '=' 附近有语法错误。
02:00-03:00
update table_x
set @update_str='update table_x set time_class='+''''+@class_name+''''+' where update_date>='+''''+@date_start+''''+' and update_date<='+''''+@date_end+''''
print @class_name
print @update_str
EXEC sp_executesql @update_str
出现如下错误,不知为什么:
update table_x set time_class=
服务器: 消息 170,级别 15,状态 1,行 1
第 1 行: '=' 附近有语法错误。
02:00-03:00
update table_x