#What is the command to delete a table in SQL language?
In SQL language, the command to create a table is CREATE
, the command to modify the table is ALTER
,
delete a table The command for the table is DROP
. In addition, the commands for inserting, deleting and querying data in the table are INSERT
, UPDATE
and SELECT respectively.
Related introduction to sql:
Structured Query Language (Structured Query Language), referred to as SQL, is a special-purpose programming language. Database query and programming language for accessing data and querying, updating, and managing relational database systems.
Structured Query Language is a high-level, non-procedural programming language that allows users to work on high-level data structures. It does not require users to specify the data storage method, nor does it require users to understand the specific data storage method, so different database systems with completely different underlying structures can use the same structured query language as the interface for data input and management. Structured Query Language statements can be nested, which makes it extremely flexible and powerful.
Recommended tutorial: "sql tutorial"
The above is the detailed content of In sql language, what is the command to delete a table?. For more information, please follow other related articles on the PHP Chinese website!