The query used to remove all references for the pubs and newspubs databases from the system table is
Answers
Answered by
6
Hello here is your answer by Sujeet yaduvanshi ☝☝
Answer:-Drop database
that's all
Answer:-Drop database
that's all
Answered by
2
DROP DATABASE pubs, new pubs; is used to remove references from the pubs and newpubs from the table.
Explanation:
To delete the columns or data from the database, DROP command is used. If we need to delete the entire database we use the command DROP DATABASE and following by the name of the database. If we need to delete only the table we use the command DROP table tablename; which deletes the table. If we need to delete the index from the table we use the command DROP INDEX indexname on table;
Similar questions