SQL Server 創建數據庫基本流程

1.修改當前數據庫,用於刪除 use master go 2.如果存在數據庫,則進行刪除 if exists(select * from sys.databases where name ='test') drop database test go 3.創建數據庫 create database test go 4.使用數據庫 use test go 5.刪除表(先刪除外鍵表,再刪除主鍵) if
相關文章
相關標籤/搜索