I have the below ddl of the table fdg_USER
CREATE TABLE fdg_user (
id NUMBER(32,0) NOT NULL,
updateddate TIMESTAMP(6) NULL,
name VARCHAR2(30) NOT NULL,
}
Now when I select all the columns ain few rows I see for the column name updated by is appearing as null I want to set the default values as name as bbb and default updateddate as 05.03.13 05:29:34
what I need to do this to add the default values for these two if they are null or if name is null then namedefault value should be insertes or if date is null then the date value is to be inserted
NULLif your table clearly statesNOT NULL?