Drop Table Query – MySQL
The Drop Table query affects the structure of the table rather than the data. It is used to remove an existing table. When you are unsure whether a table to be dropped exists or not, use the DROP TABLE IF EXISTS command. Syntax: Following is the syntax of the DROP TABLE query in MySQL − […]
February 7, 2023 | python | No comments