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 only time that this name seems to be necessary is if I want to remove the index with
DROP INDEX timestamp_index;
Is there any other use of the index name?
T-SQL link