Usually you could use comments in SQL.
I.e.:
Code:
-- This is a sample index
create index Index_16 on Products
(
product_name
);
or
Code:
/*==============================================================*/
/* Index: Index_16 */
/*==============================================================*/
create index Index_16 on Products
(
product_name
);