Indexes reduce the amount of data the database must scan.
Indexes allow the database to access only relevant rows, skipping unnecessary data. For instance, querying for a specific user's email in a 'users' table with an indexed 'email' column will be much faster, as the database quickly locates the relevant data instead of examining each row.