Delete SQL Server database

1. graphical interface to delete

  On the right-click on the database you want to delete, and then delete it. Note that if the application or the database has user connections, check the [Close] existing connection, or can not be deleted.

    

 

 2. DROP DATABASE delete database

  drop database [Howie_Wee] - delete the database

  If you want to delete more than one database, you need to be separated by commas

  drop database [Howie_Wee], [pudding] - Delete multiple databases

Guess you like

Origin www.cnblogs.com/howie-we/p/12070888.html