95.3k views
4 votes
When you code a column list in an INSERT statement, you can omit columns with default values and columns that allow ____________________________ values.

1 Answer

1 vote

Answer:

NULL is the correct answer of this question.

Step-by-step explanation:

The insert statement is used for inserting a column list into the database this statement is an under Data Manipulation language.When we insert any column into the database there is always a null value stored.

  • Insert statement is used to insert the data into the database .
  • To insert data following syntax is used:-

insert into tablename (column data type).

  • When we insert any data into the database the default value is stored is bull.
User Nemi Shah
by
4.9k points