You may be familiar with SQL Server error 4104 that reads something like “The multi-part identifier “DELETED.Name” could not be bound“, which tells us that the “multi-part identifier” couldn’t be bound.
You may have seen this error when performing joins across tables when using the wrong table prefix for a column or using the table name instead of its alias. But that’s not the only place we can get this error.
If you’re getting this error while using the OUTPUT
clause (which we can use during INSERT
, UPDATE
, DELETE
, or MERGE
operations), then it could be that you’ve accidentally used the wrong prefix for the affected column/s.