--create
create database 教務系統2
go
use 教務系統2
go
---------------------------------------
create table 課程(
課程編號 char(5) not null primary key,
名稱 nvarchar(30) not null,
學分 int not null
)
骯票特咖任 - > 計算欄位 compute 與 預設值 DEFAULT
--default值與計算欄位的定義
create table 員工(
身分證字號 char(10) primary key,
姓名 nvarchar(30) not null,
城市 nvarchar(3) default '高雄市',
街道 nvarchar(50),
電話 varchar(16) not null,
薪水 money not null default 23000,
保險 money not null,
扣稅 as 薪水*0.05, -- 計算欄位
淨所得 as 薪水-保險-薪水*0.05
)
流水編號
可看出哪裡被刪除過
且可定義
--identity唯一識別值(流水號)
create table 教授(
流水編號 bigint identity,
--流水編號 bigint identity(1000,50),
教授編號 char(4) primary key,
職稱 nvarchar(4) not null,
科系 varchar(5) not null,
身分證字號 char(10) not null
)
約束一定要有值且不能重複 primary key
一定層度上有某種約束
約束 (型態)
----------Constraints (條件約束)----------
--primary key constraints
create table 訂單明細(
訂單編號 char(10) not null,
商品編號 char(5) not null,
價格 money not null,
數量 money not null
)
定義的層級
教授編號 char(4) primary key
( 欄位層級 )
primary key(訂單編號,商品編號)
( 資料表層級 ) 組合兩鍵當作組合索引鍵
條件式約束 check constraints
create table 商品(
商品編號 char(5) not null primary key,
定價 money not null check(定價>=0),)
將條件式約束取名稱
庫存數量 int not null constraint check_庫存量不小於1 check(庫存數量>=0),
unique constraints 唯一條件約束
選擇主鍵原則
重籍索引長度不會變動 效能會比 長度會變動好
具有代表性
交替鍵 具有主鍵特性 不能重複 但因為不是主鍵所以准許null
--unique constraints
create table 會員資料(
會員編號 char(8) primary key,
姓名 nvarchar(20) not null,
身分證字號 char(10) unique,
帳號 varchar(20) not null unique,
密碼 varchar(20) not null
)
foreign key constraints 限制關聯
資料庫圖表
--foreign key constraints
create table 班級(
學號 char(4),
課程編號 char(5),
教授編號 char(4),
上課時間 datetime,
教室 varchar(8),
primary key(學號,課程編號,教授編號),
foreign key(學號) references 學生(學號) on delete no action on update no action,
foreign key(課程編號) references 課程(課程編號) on delete cascade on update cascade,
foreign key(教授編號) references 教授(教授編號) on delete cascade on update no action
)
on delete no action on update no action
不可刪除 不可更新
on delete cascade on update cascade
on delete cascade on update no action
級聯反應(cascade):它指一系列連續事件,並且前面一種事件能激發後面一種事件
查看 關聯約資料庫圖表 右鍵新增資料圖表
修改 alter table 資料表資料定義
--alter table
alter table 教授
add foreign key(身分證字號) references 員工(身分證字號)
create table 訂單(
訂單編號 char(10) not null primary key,
訂單日期 datetime
)
alter table 訂單明細
add foreign key(訂單編號) references 訂單(訂單編號)
go
alter table 訂單明細
add foreign key(商品編號) references 商品(商品編號)
--增加一個欄位
alter table 課程
add 備註 nvarchar(max) not null
go
--修改欄位
alter table 課程
alter column 備註 nvarchar(50)
完整動作 要修改訂單 增加欄位會員編號 1.要讓資料型態相同 原因是關聯KEY
GO 執行完後 才能下 關聯KEY
alter table 訂單
add 會員編號 char(8) not null
go
alter table 訂單
add foreign key(會員編號) references 會員資料(會員編號)
增加 必須是 修改式增加連原始屬性也必須KEY IN
刪除 增加 修改 相關約束 都必須用他的 NICK NAME
alter table 商品
drop constraint CK__商品__定價__31EC6D26
alter table 課程
drop column 備註
drop table 訂單