Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To execute an INSERT without values in a PostgreSQL table, you can use the following syntax:

INSERT INTO table_name DEFAULT VALUES;

This will insert a single row into the specified table with default values for all columns. If any columns in the table have default values defined, those values will be used. If not, the default value for each column will be NULL.