In the CREATE TABLE statement, the engine name specified is case sensitive.
A. True
B. False
Answer: Option A
Solution (By Examveda Team)
Option A: TrueThis option is correct. In MySQL, the engine name specified in the CREATE TABLE statement is case sensitive. This means that specifying "MyISAM" and "myisam" would be treated as different storage engines.
Option B: False
This option is incorrect. The engine name specified in the CREATE TABLE statement is indeed case sensitive in MySQL, contrary to what this option suggests.
Conclusion:
The engine name specified in the CREATE TABLE statement in MySQL is case sensitive, making Option A: True the correct answer.
niceeeeee