I have an oracle table with a sequence and a trigger to autoincrement a column.
Now I want to make an insert. Normally I should write:
INSERT INTO table (column1, column2,...) VALUES (value1, value2)
but I just want to insert a record with no default values. How to do this in Oracle?
`Mysql`: INSERT INTO table () VALUES ()
`Mssql`: INSERT INTO table default VALUES
`Oracle:` INSERT INTO table (column1, column2,...) VALUES (default, default,...)
Is this the only way? I have to list all columns?
The rest will be defaulted!