my trigger takes info from tables sticks in auditTable.. I have a field I pass in to original table that i want to parse and insert into the auditTable.. Could someone help me with this trigger?want to use "~" as delimiter[dbo].[M8_Customers] ExampleID | Audit1 col1_txt~col2_txt~col3_txt
[dbo].[LogSQL]ID | col1 | col2 | col3 | language_event | parameters | event_info
trigger currently SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGO-- Audit triggerALTER TRIGGER [dbo].[LogSQL]ON [dbo].[M8_Customers]AFTER INSERT, UPDATE, DELETEASINSERT INTO dbo.PB_Logs (language_event, parameters, event_info)EXEC('DBCC INPUTBUFFER(@@SPID);');