Concept Flow - DROP TABLE and ALTER TABLE
Start
Check Command Type
DROP
Check if Table Exists
Execute DROP TABLE
Table Removed
End
The flow starts by checking if the command is DROP or ALTER. For DROP, it checks if the table exists and removes it. For ALTER, it checks the table and applies changes like adding or dropping columns.