SQL資料庫管理相關作業

2021-03-07 10:15:18 字數 1808 閱讀 9817

1樓:匿名使用者

use master

goif exists (select * from sys.databases where name = 'herodb')

drop database herodb

--建庫

create database herodb

go--建表

use herodb

goif object_id(n'dbo.herotypes', n'u') is  not  null

drop table herotypes

gocreate table herotypes(

herotype_id int primary key identity(10001,1),

herotype_name varchar(20) not null)go

if object_id(n'dbo.heros', n'u') is  not  null

drop table heros

gocreate table heros(

heros_id int primary key identity,

heros_name varchar(20) not null,

heros_attack int not null,

heros_defense int not null,

heros_price money not null,

heros_xdlog int not null default 0,

heros_dateup datetime ,

heros_datedown datetime,

herostype_id int not null)go

--插入資料

insert into dbo.herotypes(herotype_name)values('坦克' )

goinsert into dbo.heros(

heros_name,

heros_attack,

heros_defense,

heros_price,

heros_xdlog,

heros_dateup,

heros_datedown,

herostype_id

)values

(   '妲己',        -- heros_name - varchar(20)

2000,         -- heros_attack - int

1600,         -- heros_defense - int

1000,      -- heros_price - money

0,         -- heros_xdlog - int

'2016-05-21', -- heros_dateup - datetime

null, -- heros_datedown - datetime

10002          -- herostype_id - int)go

2樓:匿名使用者

lz看不清楚題目

把題目拍清楚點

還有這個只是需要sql語句,還是需要管理系統,比如web頁面 ** 客戶端什麼的

求學生資訊管理系統資料庫大作業(sql+ c++ 含資料庫系統和c++原始檔)

3樓:弄潮兒

這麼大的東西。一分都沒。。。。。太摳了吧

4樓:匿名使用者

大作業都找代筆啊,還不給分,唉~這年頭,都不學好

SQL資料庫恢復方法,求助大家,SQL資料庫如何還原

看你資料庫檔案裝在那個盤裡面,我想肯定不是c盤。將你的資料檔案和日誌檔案拷出來儲存好,重灌系統,重灌sql2000,之後將你儲存好的兩個檔案放在d盤下可以建立一個sql data的資料夾專門用來存放資料庫產生的資料檔案和日誌檔案,之後將這兩個檔案附加到你sql企業管理器上,設定好安全性,做好定期維護...

sql資料庫和oracle資料庫string型別欄位用orderby排序分別是根據什麼排序的啊

首先說明下oracle中沒有string型別,而是varchar型別。order by 的順序是assic 讀作 阿斯科馬 碼錶中 字元 列進行排序的。解釋 一般會根據字串的首字母 大些字母 小寫字母 特殊字元 數字。如果首位相同繼續排列第二位,直到不同的位。sql資料和oracle資料庫都沒有st...

關於SQL資料庫

樓主兄弟你好!建立資料的sql語句 資料檔案,和日誌檔案,是小括號而不是大括號 字元型資料name student data 要用 引起來 create database studenton name student data filename d student data.mdf size 1,f...