資料庫(實驗2 資料庫表)

2021-09-29 03:23:26 字數 2132 閱讀 7405

建立資料庫

//建立資料庫資料檔案

create database testbase2

on(name=testbase2_data,

filename=

'd:\張小山資料庫\lianxi2\testbase2_data.mdf'

, size=

5mb,

maxsize=

50mb,

filegrowth=20%

)//建立資料庫的日誌檔案

log on

(name=testbase2_log,

filename=

'd:\張小山資料庫\lianxi2\testbase2_log.ldf'

, size=

20mb,

maxsize=

500mb,

filegrowth=

10mb)

/1建教師表/

create table teacher

(tno

char(2

) not null,tn

char(8

) not null

,***

char(2

),age tinyint,

prof

char(10

),sal smallint,

comm smallint,

dept

char(10

))

/2建學生表/

create table student

(sno

char(2

) not null,sn

char(8

) not null

,***

char(2

),age tinyint,

dept

char(10

))

/3建課程表/

create table course

(cno

char(2

) not null,cn

char(10

) not null

,ct tinyint)

/4建選課表/

create table sc

(sno

char(2

) not null

,cno

char(2

) not null

,ct tinyint)

/5建授課表/

create table tc

(tno

char(2

) not null

,cno

char(2

) not null

, evalution char(20

))

資料庫表的刪除

/*刪除teacher表*/

drop table teacher

/*刪除student表*/

drop table student

/*刪除course表*/

drop table course

/*刪除sc表*/

drop table sc

/*刪除tc表*/

drop table tc

資料庫表的增加、修改

/*增加student的native列*/

alter table student

addnative

char(40

)null

/*修改資料庫表student中的列native*/

alter table student

alter column native

char(16

)null

資料庫實驗2

1.dbms 登入帳號管理 create login sqluser with password pswdforuser 1 create login sqluser2 with password pswdforuser 123 create login uselessuser with passw...

資料庫(2)資料庫鎖

這一段時間一直在學習關係型資料庫,準備寫乙個小專題來總結一下這一段時間的學習結果。二.事物隔離等級和鎖的關係 網上很多部落格都是直接說了一連串的鎖,什麼悲觀鎖樂觀鎖,什麼讀寫鎖,什麼排他鎖共享鎖。說的不僅語焉不詳,而且分類紊亂,希望看到這篇文章能幫助你理清思路。從鎖的實現方式來看,鎖可以分為悲觀鎖和...

南郵資料庫實驗2 小型資料庫設計

題目 自己設計乙個小型資料庫。個人比較喜歡看電影,於是用python爬了豆瓣top250的電影,做了乙個關於電影的小型資料庫,這裡只舉一小部分作為例子。關係模式 電影名稱關係模式 title mno,mname 電影評分關係模式 rating mno,mscore 電影標籤關係模式 tag mno,...