I am running ORACLE. And I am stuck with a problem. Can anyone tell me, how can I set a DEFAULT constraint's value as a column value from that same table during creation ? For example:
CREATE table testing
(
id varchar2(20),
name varchar2(20),
myvalue varchar2(30) default id + name
)
In the above table, how can I set the myvalue's default constraint's value as the concatenated value of id and name ?? That is, I want the myvalue field's value to be the values of id and name fields when the table is being created OR using the CREATE table command ONLY. How can it be done?
Please help me out. Thank you.
You can try to modify your table as:
or you can try to create a TRIGGER like this: