I have these two tables:
USERS(username, role_id)
COMMISSION_RATES(username, commission_rate)
users.username
is the primary key, commission_rates.username
is a foreign key.
I want to write a trigger, after an insert on users, check if role_id = 2
, then insert into commission_rates
the users.username
, and 0 for commission rate.
This is what I have so far, it doesn't work though:
create or replace TRIGGER SETCOMISSIONRATE
AFTER INSERT ON USERS
BEGIN
CASE
WHEN users.role_id = 2 THEN
INSERT INTO COMISSION_RATE
(username,
comission_rate)
VALUES (
:NEW.username,
0)
END;
Any help would be appreciated