Reputation: 1919
Imagine you have a table which all of its columns were created with the DEFAULT clause included, for example
BOX ---------- height width depth
currently I'd make the following query to use default values:
INSERT INTO BOX VALUES(DEFAULT,DEFAULT,DEFAULT);
is there any other way to do this in Oracle? Preferably to indicate insert clause to use all default values but without specifying it for every column.
Upvotes: 2
Views: 948