Use the CREATE INDEX command to create indexes:
— syntax index_name on table_name(column1, column2,…, columnN); — make an index on a single column make an index products_category on products(category);… — make an index on multiple columns make an index called products_category_brand on products(category, brand_id);
Vishalini.R Answered question July 5, 2023
