InterviewSolution
Saved Bookmarks
| 1. |
The AUTO_INCREMENT column attribute is best used with ______________(a) FLOAT(b) INT(c) CHARACTER(d) DOUBLE |
|
Answer» The correct option is (b) INT The explanation is: 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. |
|