Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: How to use Column name in trigger

Re: How to use Column name in trigger

From: Videofan <videofan_at_aol.com>
Date: 1997/08/16
Message-ID: <19970816132401.JAA25663@ladder02.news.aol.com>#1/1

One solution would be to compare the variable to each of the column names.

        if column_variable = 'COL1' then
            do COL1 stuff
        elsif column_variable = 'COL2' then
            do COL2 stuff

.
.
.
end if;
Received on Sat Aug 16 1997 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US