データベース管理者は、リレーショナルデータベースではテーブルが必要ないことを発見しました。テーブルとそのデータを完全に削除するには、次のどのコマンドを使用しますか?
正解:D
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. References : The Official CompTIA IT Fundamentals (ITF+) Study Guide (FC0-U61), page 144.