DATABASE
Indexing optimize SQL searching or selecting query than normal query. For large amount of data when we run searching or selecting query its take time. Reducing thats time we should use SQL indexing.
CREATE INDEX index_name ON table_name (column1, column2, ...)
SHOW INDEX FROM table_name
DROP INDEX index_name ON table_name
Read what excites, achieves and moves us Read what excites, achieves and moves us