When adding records to a table using an INSERT statement, why don’t we provide a value for the columns in the table that are listed as AUTO INCREMENT?
What will be an ideal response?
Columns that are listed as AUTO INCREMENT will have the next consecutive value assigned to them
automatically when the record is added to the table. Database users do not assign values to AUTO INCREMENT fields
directly.
Computer Science & Information Technology
You might also like to view...
A printer with streaky output always benefits from head cleaning
Indicate whether the statement is true or false
Computer Science & Information Technology
What is the output of the following code:
enum dog {spaniel, samoyed, terrier}; dog fido; fido = dog (2); cout << int (fido); a) 2 b) samoyed c) terrier d) the code is not syntactically correct
Computer Science & Information Technology