InterviewSolution
Saved Bookmarks
| 1. |
The AUTO_INCREMENT sequences normally begin at __________(a) 0(b) 1(c) -1(d) 2 |
|
Answer» Right answer is (b) 1 The explanation is: The AUTO_INCREMENT column attribute provides unique numbers for column identification. AUTO_INCREMENT sequences normally begin at 1 and increase monotonically like 1, 2, 3, and so on. |
|