SQL 基础
SQL 简介
SQL 入门
SQL 语法
SQL 创建数据库
SQL 创建表
SQL Constraints
SQL Insert
SQL Select
SQL Where
SQL AND & OR
SQL IN & Between
SQL Order By
SQL Top/Limit
SQL Distinct
SQL Update
SQL Delete
SQL Truncate Table
SQL Drop
SQL 连接
SQL Joining Tables
SQL Inner Join
SQL Left Join
SQL Right Join
SQL Full Join
SQL Cross Join
高级 SQL
SQL Union
SQL Like
SQL Alter Table
SQL Aliases
SQL Group By
SQL Having
SQL Create View
SQL Create Index
SQL Dates and Times
SQL Cloning Tables
SQL 临时表
SQL 子查询
SQL 注入
SQL 参考
SQL 数据类型
MySQL 数据类型
SQL Server 数据类型
SQL 方法
SQL Drop - SQL基础教程 - 笔下光年
网站首页
SQL Drop
In this tutorial you will learn how to delete database and table using SQL. ## Removing a Table from Database You can use the `DROP TABLE` statement to easily delete the database tables that you no longer need. The `DROP TABLE` statement permanently erase all data from the table, as well as the metadata that defines the table in the data dictionary. ## Syntax The `DROP TABLE` removes one or more tables. The syntax can be given with: ```sql DROP TABLE table1_name, table2_name, ...; ``` Here, table1_name, table2_name, ... are the names of the tables that you want to delete. <div class="callout callout-danger mb-3">Warning: Dropping a database or table is irreversible. So, be careful while using the DROP statement, because database system generally do not display any alert like "Are you sure?". It will immediately delete the database or table and all of its data.</div> Let's try to remove a database table using the `DROP TABLE` statement. If you remember back to create table chapter, we've created a table persons in our demo database. The following statement will remove this table permanently from the database. ```sql DROP TABLE persons; ``` After executing the above command, if you try to perform any operation on the persons table, like selecting the records from it, you'll get an error message. ## Removing Database Similarly, you can delete a database using the `DROP DATABASE` statement. The following command will permanently remove the demo database from the database server. ```sql DROP DATABASE demo; ``` Now if you try to select the demo database using the `USE demo`; statement, you'll get an error message saying "Unknown database" or "Database does not exist".
上一篇:
SQL Truncate Table
下一篇:
SQL 连接