There can be more than one column per table with the AUTO_INCREMENT attribute.
A. True
B. False
Answer: Option B
Solution (By Examveda Team)
This question asks if you can have more than one column in a table that automatically increments.Think of AUTO_INCREMENT like a counter that starts at 1 and increases by 1 every time a new row is added.
In MySQL, you can only have one column per table that acts as this automatic counter.
So the answer is False.

Join The Discussion