SQL guide-delete indexes, tables, and databases

Source: Internet
Author: User
Tags ibm db2
Delete Index

You can use the drop index statement to delete an index in an existing table.

Microsoft sqljet syntax (and Microsoft Access ):

DROP INDEX index_name ON table_name

Ms SQL Server syntax:

DROP INDEX table_name.index_name

IBM DB2 and Oracle and Syntax:

DROP INDEX index_name

MySQL Syntax:

ALTER TABLE table_name DROP INDEX index_name

-------------------------------------------

Delete Database

Delete a table (the table structure, attributes, and indexes will also be deleted)

DROP TABLE table_name

Delete A database:

DROP DATABASE database_name

-------------------------------------------

Trim Data Table

What if we only want to remove the data in the table and keep the table itself? You can use the truncate table command to delete only the data in the table)

TRUNCATE TABLE table_name

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.