Dropping and recreating databases in Microsoft SQL Server

后端 未结 6 1820
-上瘾入骨i
-上瘾入骨i 2021-02-01 12:27

I am experimenting and learning with Microsoft SQL Server 2008 R2 SP1. I have a database where I made many experiments. Now I would like to drop and recreate it. So I extract th

6条回答
  •  执念已碎
    2021-02-01 12:57

    SQL Server 2016 (and above) support one line and atomic(?) syntax DROP DATABASE IF EXISTS database_name

    REF: https://msdn.microsoft.com/en-us/library/ms178613.aspx

提交回复
热议问题