Introduction to SQL

DROP INDEX index_name ON table_name Syntax for MS SQL Server: DROP INDEX table_name.index_name Syntax for IBM DB2 and Oracle: DROP INDEX index_name Syntax for MySQL: ALTER TABLE table_name DROP INDEX index_name Delete a Table or Database. To delete a table (the table structure, attributes, and indexes will also be deleted): ................
................