Join Examsbook
Answer : 2. "DROP TABLE "
SQL में डेटाबेस से Table को रिमूव करने के लिए किस कमांड का उपयोग किया जाता है ?
5Q:
SQL में डेटाबेस से Table को रिमूव करने के लिए किस कमांड का उपयोग किया जाता है ?
- 1DELETE TABLEfalse
- 2DROP TABLEtrue
- 3ERASE TABLEfalse
- 4UNATTACH TABLEfalse
- Show Answer
- Workspace
Answer : 2. "DROP TABLE "
Explanation :
In SQL, the DROP TABLE command is used to remove a table from the database. When you execute DROP TABLE, it deletes the table along with all its data, indexes, triggers, constraints, and permissions. It should be used with caution as it permanently removes the table and all associated objects from the database.