syntax to delete a database file is
Answers
Syntax to delete a database file :
Explanation:
- First of all, list all databases on your server.
- Use the command 'SHOW DATABASES' in the MySQL-console.
- Now copy the name of the database you want to delete.
- To do delete a database you use the command 'DROP DATABASE'.
- Drop database database_name command is the syntax.
Answer:
DROP DATABASE
Explanation:
Dropping a database deletes the database from an example of SQL Server and deletes the bodily disk documents utilized by the database. If the database or anyone of its documents is offline while it's miles dropped, the disk documents aren't deleted. These documents may be deleted manually through the use of Windows Explorer. a DELETE command eliminates matching rows, a DROP command eliminates the complete table. DELETE is a Data Manipulation Language command, DML command and is used to cast off tuples/facts from a relation/table. Whereas DROP is a Data Definition Language, DDL command and is used to cast off named factors of schema like relations/table, constraints or complete schema.
#SPJ3