建立數據庫基本流程

建立數據庫基本流程 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.刪除表(先刪除外鍵表
相關文章
相關標籤/搜索