Which Of The Following Statement Is Used To Apply The Auto #408
Which of the following statement is used to apply the AUTO INCREMENT field on a column with a starting value other than 1?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Constraints - SQL Auto Increment - Quiz No.1.
Which of the following statement is used to apply the AUTO INCREMENT field on a column with a starting value other than 1?
column_name datatype constraint AUTOINCREMENT;
column_name datatype constraint AUTOINCREMENT = 10,5;
column_name datatype constraint AUTOINCREMENT (10,5);
column_name datatype constraint (10,5) AUTOINCREMENT;