I have an insert trigger and I'm trying to modify one of the inserted tables' column. How can I do that?
Table name is table_tbl. column name is fname
Code inside of insert trigger.
select inserted.fname = select fname from other_tbl where fname='this_is_a_unique_name'
I'm always getting a syntax error.