0
Msg 102, Level 15, State 1, Line 3
Incorrect syntax near ' '.

我得到了上面的错误:

update activity
set scheduledforuseridy=557
  where datecompleted is null 
  and dateexpired is null 
  and scheduledforuseridy in (719,745,402) 
  and communityidy=4

我究竟做错了什么?这个错误是什么意思?

4

1 回答 1

-1

您的更新语句中没有“ ”,这意味着,一旦您更新表活动,您的某些触发器就会被触发。您可以通过运行以下查询来检查表上是否存在触发器

select O.name as TableName,T.name as triggerName
from sys.triggers T
JOIN sys.objects O
ON T.object_id = O.object_id
and O.name = 'activity'
于 2013-06-29T00:47:54.727 回答