All technological notes.
To remove a table from database.
-- remove a given table to recyclebin
DROP TABLE tablename;
Always exercise caution when deleting especially when it is a table.
In addition, any index that has been created based on the table is also dropped.
Any dropped table was permanently removed, and could only be recovered from backup.