sql 2005 主外來鍵設定的兩種方法

2021-05-23 15:36:27 字數 617 閱讀 1332

create database st_db

on primary

(name="st_db",

filename="d:/project/database/st_db.mdf",

size=5mb,

filegrowth=5%

)create table 系部

(系部** char(6) not null primary key ,

系部名稱 varchar(30) not null,

系主任  char(8))go

create table 專業

(***碼 char(4) not null primary key,

專業名稱 varchar(20) not null,

系部** char(6) constraint wz references系部(系部**)

)alter table 系部

add constraint pk

primary key clustered (系部**)

alter table 專業

add constraint wz

foreign key (系部**)

references 系部(系部**)

SQL2005設定外網不給鏈結的設定問題

眾所周知,sql的安全是非常重要的,尤其是sql存在大量的資料庫,有時候鏈結乙個ip可以鏈結的sql,然後猜測注入系統,利用sql本身的漏洞注入資料。最近,老是發現sql的sa密碼自動被修改。登入sql後,安全 登陸 sa 右鍵屬性,使用者下次登陸就修改密碼,檢視密碼過期的選項是 去掉的。那怎麼回事...

設定樣式的兩種方式

設定樣式的兩種方式 classname style 獲採樣式 1 dom的style屬性只能獲取標籤中使用style設定的樣式,無法獲取嵌入 外部樣式 2 style.csstext獲取style裡面的字串 設定樣式 無論設定還是獲取只能操作行內式 注意事項 1 樣式少的時候使用 2 style是物...

Android全屏設定的兩種方式

android 有兩種方式可以設定全屏.第一種是 this.requestwindowfeature window.feature no title 取消狀態列 this.getwindow setflags windowmanager.layoutparams.flag fullscreen,wi...