|
I would suggest that you set up defaults when you create the definitions for your table. You can create a table or alter an existing column, and you can add the default value to a column. The following is the format for a column definition using a default value:
field1 varchar2(10) default 'NO VALUE' not null,
|