Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Automatic UPPER conversion on an Insert
>>Hi all
Is there any way to automatically convert the Inserted Value into UPPER case
?
I want to avoid Triggers and am looking for something like Column defn or
Constraint ..
<<
You can do it on the actual insert...
INSERT INTO your_table VALUES (UPPER(your_value), another_value, last_value) Received on Thu Oct 21 1999 - 15:11:36 CDT
![]() |
![]() |