如何在 SQL 服务器触发器函数中获取 table 名称?

How can I get the table name in a SQL Server trigger function?

我试图在 SQL 服务器触发器函数中获取 table 名称,但我做不到。

请帮帮我。

尝试此查询以使用触发器函数获取 table 名称:

@tablename = OBJECT_NAME(parent_object_id) 
                 FROM sys.objects 
                 WHERE sys.objects.name = OBJECT_NAME(@@PROCID)**