In SQL, when I create a database index, I\'m required to give the index a name, as in
CREATE INDEX timestamp_index ON hit (timestamp);
The
Sometimes it's necessary to do index hinting, whereby you tell the query engine what index it should be using. If your indexes don't have named, you can't do this.