USER
Name of the user of the current connection
VARCHAR(63)
USER
USER
is equivalent to (or, alias of) [fblangref50-contextvars-current-user].
create trigger bi_customers for customers before insert as
begin
New.added_by = USER;
New.purchases = 0;
end