1樓:匿名使用者
/*建立moonfox_db資料庫*/
use master
if exists(select * from sysdatabases where name='moonfox_db')
drop database moonfox_db
create database moonfox_dbon(
name='moonfox_db_data',
filename='d:\visual studio 2008 & sql server 2005\sql server\moonfox_db.mdf',
size=10,
filegrowth=2mb
)log on
(name='moonfox_db_log',
filename='d:\visual studio 2008 & sql server 2005\sql server\moonfox_db.ldf',
size=5,
filegrowth=20%
)/*建立department表*/
use moonfox_db
if exists(select * from sysobjects where name='department')
drop table department
create table department
(did int identity (1,1)primary key,--部門編號,主鍵
dname nvarchar(20),--部門名稱
address nvarchar(50),--部門地址
photo decimal(12,0),--**
)/*建立employee表*/
use moonfox_db
if exists(select * from sysobjects where name='employee')
drop table employee
create table employee
(eid int identity (1,1)primary key,--職工編號,主鍵
ename varchar(10),--職工名
gender nchar(2) check(gender='男' or gender='女'),--性別,新增限制
position nvarchar(10) check(position='員工' or position='組長' or position='經理'),--職務,新增限制
address nvarchar(50),--家庭地址
did int,--部門編號,外來鍵
foreign key(did) references department(did)--外來鍵約束
)/*建立care表*/
use moonfox_db
if exists(select * from sysobjects where name='care')
drop table care
create table care
(cid int identity (1,1)primary key,--保健卡編號,主鍵
eid int,--職工號,外來鍵
foreign key(eid) references employee(eid),--外來鍵約束
checkdate datetime,--檢查身體日期
physicalcondition nvarchar(4) check(physicalcondition='一般' or physicalcondition='差' or physicalcondition='好'),--健康狀況
)/*建立care表約束*/
alter table care
addconstraint df_checkdate default(getdate()) for checkdate--預設,預設淨時間為當前計算機時間 路徑自己修改,試圖自己做,選擇語句自己寫。我該睡覺了,抱歉,你試著在sql server中執行下,我等著休息,也不知道寫的有沒有錯誤,沒時間幫你寫省下的了。不急著用的話我明天幫你寫吧。
求sql答案,求SQL答案
老師小喬 1.c 是被長期存放在計算機內的 有組織的 統一管理的相關資料的集合。a data b information c db d dbs 2.需求分析的主要方法是 a a 自頂向下 b 自底向上 c 從左到右 d 混合策略 3.在關係運算中,選取符合條件的元組是 d 運算。a 除法 b 投影 ...
求SQL問題答案,!!!!高分求SQL問題答案,懂得大師請幫幫忙
1,if exists select name from sysobjects where name num em and type p drop procedure num em gocreate procedure num em as 員工號 userid select count userid...
非無語動詞求答案,非謂語動詞練習 求答案
高手來了。兩個考點 現代分詞做定語修furniture.動詞原型是不能做定語,只能做謂語。所以用needing.there are many pieces of furniture that need repairing.need 主動表被動。the clothes need washing the...