Code to move from one table to other upon deletion, is this correct?
 create or replace TRIGGER Trans_history_s
    AFTER DELETE
        ON trans_s
        REFERENCING NEW AS trans_s
        FOR EACH ROW
    BEGIN
        INSERT INTO trans_history_s values (:old.book_no,:old.mem_no,sysdate,sysdate,sysdate);
    END;