InterviewSolution
Saved Bookmarks
| 1. |
The AUTO_INCREMENT column attribute is best used with which type?(a) FLOAT(b) INT(c) CHARACTER(d) DOUBLE |
|
Answer» Correct answer is (b) INT The explanation: The AUTO_INCREMENT is a column attribute and it is best used with the integer datatypes. It automatically assigns monotonically increasing values to the AUTO_INCREMENT columns. |
|