Drop Table

suggest change

Drop Table is used to delete the table from database.

Creating Table:

Creating a table named tbl and then deleting the created table

CREATE TABLE tbl(
    id INT NOT NULL AUTO_INCREMENT,
    title VARCHAR(100) NOT NULL,
    author VARCHAR(40) NOT NULL,
    submission_date DATE,
    PRIMARY KEY (id)
);

Dropping Table:

DROP TABLE tbl;
PLEASE NOTE

Dropping table will completely delete the table from the database and > all its information, and it will not be recovered.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents