Subject get table name in trigger
Author orhanturhan
for example

CREATE OR ALTER TRIGGER CUSTOMER_BI FOR CARI
ACTIVE BEFORE INSERT POSITION 0
as
begin
...........
insert into logs
(table_name, event_time)
values
(????????????? ,current);
...........
end;


i want to ????????????=trigger table name

if table name is Customer then ????????????=Customer
else
if table name is Items then ????????????=Items

i hope tell myself.