MySQL DROP INDEX
MySQL DROP INDEX Summary: in this tutorial, you will learn how to use the MySQL DROP INDEX statement to remove existing indexes of a table. MySQL DROP INDEX statement syntax To remove an existing index from a table, you use the DROP INDEX statement as follows: DROP INDEX index_name ON table_name [algorithm_option | lock_option]; Code…
Read more