Q160
There can be more than one column per table with the AUTO_INCREMENT attribute.
A.
True
B.
False
AnswerAnswer: Option B
Solution
Answer: Option B
Solution:
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.