Vidyalelo
MySQL · Q745

MySQL

Programming · MySQL · question 745

Q745

In MySQL, identifier names can start with a digit.

A.
True
Answer
B.
False

Answer: Option A

Solution

Answer: Option A
Solution:
This question is about how MySQL names things, like tables and columns. In programming, these names are called identifiers.

The question asks if identifiers in MySQL can start with a number (like "1table" or "2column").

The answer is False. MySQL identifiers cannot start with a number. They must start with a letter, an underscore (_), or a dollar sign ($).

So the correct answer is Option B: False.