Tables
DROP TABLE Statement
Tables
DROP TABLE Statement
Description
The DROP TABLE
statement deletes a table or a file.
Syntax
Here is the syntax:
DROP TABLE table_name;
And for files:
DROP TABLE files.file_name;
On execution, we get:
Query successfully completed
Please note that the uploaded files are tables as well. So to remove an uploaded file, use this DROP TABLE
statement.