Google News
logo
PostgreSQL - Interview Questions
What are the disadvantages of the DROP TABLE command in deleting complete data from an existing table?
In PostgreSQL, the DROP TABLE command can be used to delete complete data from an existing table, but the biggest disadvantage of using the DROP TABLE command is that it removes complete table structure from the database. If you use the DROP TABLE command to delete the table, you must re-create a table to store data.
Advertisement