Vidyalelo
MySQL · Q1131

MySQL

Programming · MySQL · question 1131

Q1131

Using indexes optimizes query performance.

A.
True
Answer
B.
False

Answer: Option A

Solution

Answer: Option A
Solution:
This question asks if using indexes helps make your MySQL queries run faster.
Here's the breakdown:
* Indexes are like a table of contents in a book. They let MySQL quickly find specific data without having to read the entire table.
* Queries are the questions you ask MySQL to retrieve information.
So, using indexes helps make your queries run faster!
Therefore, the answer is A: True.