Q. What does LAST_INSERT_ID() return when no AUTO_INCREMENT value has been generated during the current connection?
β
Correct Answer: (B)
0
Explanation: This question is about MySQL's `LAST_INSERT_ID()` function, which is very helpful when working with AUTO_INCREMENT columns. An AUTO_INCREMENT column automatically assigns a unique, increasing number to each new row you insert.