There cannot be more than one column per table with the AUTO_INCREMENT attribute.
A. True
B. False
Answer: Option A
Solution (By Examveda Team)
This question is about a special feature in MySQL called AUTO_INCREMENT.AUTO_INCREMENT automatically assigns unique numbers to new rows in a table. Think of it like a counter that keeps going up.
The question asks if you can have more than one column in a table using AUTO_INCREMENT. The answer is A: True.
You can only have one column per table set up to automatically increase. This ensures that each row gets a unique number.
Related Questions on MySQL Miscellaneous
How is communication established with MySQL?
A. SQL
B. Network calls
C. A programming language like C++
D. APIs
Which type of database management system is MySQL?
A. Object-oriented
B. Hierarchical
C. Relational
D. Network
Join The Discussion