This is my query:
INSERT INTO Translated
OUTPUT @ChangeID,Inserted.ResourceID,Project,Inserted.TranslatedValue into backup
Select NEWID(),ResourceID,TranslatedValue,getdate()
from Resources
where Project ='blahblah'
Right now I cant get the value of Project in OUTPUT part because it's from Resources table but not inserted, is there any easy way to get the value without modifying the structure of the query?