create database mydb
on primary
(--配置主資料檔案的選項
name='mydatabaseone',--主資料檔案的邏輯名稱
filename ='c:\mydatabaseone.mdf',--主資料庫的檔案的實際位置
size =5mb,
filegrowth =20%
)log on
(--配置日誌檔案的選項
name ='mydatabaseone_log',--邏輯檔案的邏輯名稱
filename ='c:\mydatabaseone_log.ldf',
size =5mb,
filegrowth =5mb
)--在資料庫中建立乙個**---
--將**環境切換到mydb
use mydb
create table departments
(autoid int identity (1,1) primary key,
departmentname nvarchar(50) not null
)--通過**去刪除model 的表
use model
drop table departments
drop table table_new
1建立資料庫,資料表
1.建立資料庫 create database 資料庫名 2.刪除資料庫 drop database 資料庫名 drop database if exists 資料庫名 3.檢視所有資料庫 show databases 4.切換資料庫 use 資料庫名 5檢視所有的資料庫引擎 show engine...
建立資料庫和表
一 建立資料庫 我們知道表是屬於架構的,而架構又是屬於資料庫的。要在sql server環境中建立乙個名為testdb的資料庫,可以執行以下 if db id testdb is null create database testdb 如果不存在名為testdb的資料庫,這段 就會建立乙個新的。db...
建立資料庫和表
sql server資料庫的型別 兩種資料庫 系統資料庫 使用者資料庫 sql server資料庫包含資料和日誌資訊 主資料檔案 構造資料庫的主檔案,該檔案的副檔名必須為.mdf,sql server資料庫只能有乙個主資料檔案。日誌資料檔案 儲存了萬一失敗時用於恢復資料庫的所有日誌資訊。該檔案的副檔...