InterviewSolution
Saved Bookmarks
| 1. |
The column attribute provides unique numbers for identification is ______________(a) AUTO_INCREMENT(b) UNSIGNED(c) IDENTIFY(d) DESCRIBE |
|
Answer» Correct choice is (a) AUTO_INCREMENT Explanation: In MySQL, the mechanism for providing unique numbers is through the AUTO_INCREMENT column attribute. It enables the generation of sequential numbers automatically. This facilitates identification. |
|