FC0-U61 · Question #50
A database administrator finds that a table is not needed in a relational database. Which of the following commands is used to completely remove the table and its data?
The correct answer is D. DROP. DROP is the command that is used to completely remove a table and its data from a relational database. DROP is a SQL (Structured Query Language) statement that deletes the definition and contents of a database object, such as a table, index, or view. DROP cannot be undone, so it
Question
A database administrator finds that a table is not needed in a relational database. Which of the following commands is used to completely remove the table and its data?
Options
- AUPDATE
- BDELETE
- CALTER
- DDROP
How the community answered
(28 responses)- A4% (1)
- C4% (1)
- D93% (26)
Explanation
DROP is the command that is used to completely remove a table and its data from a relational database. DROP is a SQL (Structured Query Language) statement that deletes the definition and contents of a database object, such as a table, index, or view. DROP cannot be undone, so it should be used with caution. For example, the statement DROP TABLE Customers; will delete the table named Customers and all its data from the database.
Topics
Community Discussion
No community discussion yet for this question.