devxlogo

Getting New Values Entered into a Table

Suppose you are writing a row-level trigger Z on a table X to update an audit table Y with information about inserts into X, and you need to know what a particular new value is that was inserted into X: you can use :new. to get it.

The following simple example, with X being a two-field table, illustrates its use:

create or replace trigger Z  after insert on X  for each rowdeclarebegin  if inserting then     insert into Y values (:new.field1, :new.field2);  end if;end Z;

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.