Home » MYSQL » Using Sequences » Question
  1. In a MyISAM table, if the maximum value of an AUTO_INCREMENT increment column is 12 and that row is deleted, the next value generated is _____________.
    1. 1
    2. 12
    3. 14
    4. 13
    5. None of these
Correct Option: D

In the MyISAM tables, AUTO_INCREMENT sequences normally are monotonic. The values in an automatically generated series are strictly increasing. They are not reused when rows are deleted.



Your comments will be displayed only after manual approval.