Insert Just The Defaults
If you are constructing an INSERT
statement for a table whose required columns all have default values, you may just want to use the defaults. In this situation, you can break away from the standard:
Instead, simply tell Postgres that you want it to use the default values:
Last updated