sql
SQL Drop Table - How to Drop a Table in SQL
.
SQL DROP TABLE Query - How to Drop a Table in SQL
In SQL
DROP TABLE Statement is used to Drop a table from the database
If We Drop a table it Removes All the data and its Structure (Column)
From the table.
Drop table Syntax-
DROP TABLE table_name;
Drop table Example-
DROP TABLE Student;
In the above example, it will drop the
student table from the database.
.
Post a Comment
0 Comments