Unable to perform delete on View SQL Server 2005

后端 未结 3 743
时光说笑
时光说笑 2021-01-29 05:01

I am unable to perform a delete on a View. Everything worked fine on the individual tables.

EDIT1: Added Trigger

CREATE TRIGGER myTrigger
ON [ViewName]
I         


        
3条回答
  •  粉色の甜心
    2021-01-29 05:26

    Are you referencing columns from multiple tables? If so that error sounds pretty straight forward.

    You can however, use a stored procedure instead of a view to execute this.

提交回复
热议问题