sqlreferences
⑴ sql Reference是個什麼東西
是一本sql的使用手冊,包括語法、函數等等,oracle官方網站的文檔中心有下載.
⑵ sql :dri就是references么
不是`
references 是建外鍵時所用的一個關鍵字
⑶ SQL(問題)
=================================================
alter table t2
add constraint fk_class foreign key (class) references t1(class)
=================================================
你是問的你絕陪州上個問題里的東東吧,這是創建外鍵約束的固定格式。
意思是在t2表中"class"欄位上創建外鍵約束fk_class,
相關聯的是t1表中的"class"欄位上創建的主鍵(此單詞意思為:涉及/參考)
通過外鍵的意思「一個表中的數據依賴於另一個表中的數據,亂纖以保證數據的一致性,也就是說外並蔽鍵的值必須與相關的主鍵值相匹配」,你應該能明白這個才對啊...
⑷ sql為什麼reference語句無效
因為起到了混淆作用。無效的表別名或者列引用,因為在我的sql中dev是表名起到了混淆作用,因此一開始並沒有反應過來。
⑸ sql里的FK外鍵和 references是什麼關系constraint 又是什麼,什麼時候該用它
假設兩張表,表1(學號,姓名,性別),學號為主鍵. 表2(學號,課程,成績). 可以為表2的學號定義外鍵(FOREIGN KEY),該外鍵的取值范圍參照(REFERENCES)表1的學號
CONSTRAINT是對某棗和差列定義約束, 如上表1中棚慶的"性別",可以定義約束凳皮,將取值限定為不是"男",就是"女". CHECK(性別 IN ('男','女')) .請參考:
http://..com/question/212606515.html
⑹ sql用命令創建主鍵與外鍵。
創建SQL的主鍵和外鍵約束的方法:
--在創建表時就可以對欄位加上約束:
create table Student
(
StudentNo int PRIMARY KEY IDENTITY(1,1), --加主鍵約束,還有標識列屬性(兩者構成實體完整性)
StudentName nvarchar(15) not null, --加非空約束,不加"not null" 默認為:可以為空
StudentSchool text(20) FOREIGN KEY REFERENCES SchoolTable(SchoolName), --加外鍵約束,格式:FOREIGN KEY REFERENCES 關聯的表名(欄位名)
StudentAge int DEFAULT ((0)), --加默認值約束
StudentSex nvarchar(2) CHECK(StudentSex=N'男' or StudentSex=N'女') --加檢查約束,格式:check (條件表達式)
)
--如果在表創建好了以後再加約束,則格式分別為:
-- 主鍵:
alter table 表名
add constraint PK_欄位名--"PK"為主鍵的縮寫,欄位名為要在其上創建主鍵的欄位名,'PK_欄位名'就為約束名
primary key (欄位名) --欄位名同上
--唯一約束:
alter table 表名
add constraint UQ_欄位名
unique (欄位名)
--外鍵約束:
alter table 表名
add constraint FK_欄位名--"FK"為外鍵的縮寫
foreign key (欄位名) references 關聯的表名(關聯的欄位名) --注意'關聯的表名'和'關聯的欄位名'
alter table 表A add constraint FK_B foreign key (ticket_no) references 表B(ticket_no)
alter table 表A add constraint FK_C foreign key (person_no) references 表C(person_no)
alter table 成績表 add constraint FK_StudentNo foreign key (StudentNo) references Student (StudentNo)
ON UPDATE CASCADE ON DELETE CASCADE
級聯更新,級聯刪除,這樣在刪除主表Student時,成績表中該學生的所有成績都會刪除。
--檢查約束:
alter table 表名
add constraint CK_欄位名
check (條件表達式) --條件表達式中的條件用關系運算符連接
--默認值約束:
alter table 表名
add constraint DF_欄位名
default '默認值' for 欄位名--其中的'默認值'為你想要默認的值,注意'for'
--刪除創建的約束:
alter table 表名
drop constraint 約束名--約束名為你前面創建的如:PK_欄位這樣的約束名
--注意:如果約束是在創建表的時候創建的,則不能用命令刪除
--只能在'企業管理器'裡面刪除
參考資料 : http://www.studyofnet.com/news/92.html
希望以上的回答能夠幫到你
⑺ SQL資料庫的、外鍵和查詢
增加外鍵
創建表的時候增加外鍵:在所有的表欄位之後,使用foreign key(外鍵欄位) references 外部表(主鍵欄位)
在新增表之後增加外鍵:修改表結構,使用alter table 表名 add [constraint 外鍵名字] foreign key(外鍵欄位) references 父表(主鍵欄位);
修改外鍵&刪除外鍵
alter table 表名 drop foreign key 外鍵名;
外鍵條件
外鍵要存在,首先必須保證表的存儲引擎是innodb
列類型必須與父表的主鍵類型一致
一張表中的外鍵名字不能重復
增加外鍵的欄位數據已經存在,必須保證數據與父表主鍵要求對應
外鍵約束
有三種約束模式
district:嚴格模式(默認的)
cascade:級聯模式
set null:置空模式
語法:foreign key(外鍵欄位) references 父表(主鍵欄位) on delete 模式 on update 模式;
聯合查詢
基本語法:
select 語句1
union [union 選項]
select 語句2……
union 選項
all:保留所有,不管重復
distinct:去重,默認的
子查詢(sub query)
按位置分類
from子查詢
where子查詢
exists子查詢
按結果分類
標量子查詢
列子查詢
行子查詢
表子查詢
子查詢
列子查詢
=any等價於in; -- 其中一個即可
any等價於some; -- 二者是一樣的
=all為全部
-- 創建外鍵
create table my_foreign1(
idint primary key auto_increment,
name varchar (20)not null comment
'學生姓名',
c_idint comment'班級id',
-- 增加外鍵
foreign key(c_id)references
my_class(id)
)charset utf8;
-- 創建表
create table my_foreign2(
idint primary key auto_increment,
name varchar (20)not null comment
'學生姓名',
c_idint comment'班級id' -- 普通欄位
)charset utf8;
-- 增加外鍵
alter table my_foreign2add
-- 指定外鍵的名字
constraint student_class_1 -- 可以指定多個外鍵 但是名字不能相同
-- 指定外鍵的欄位
foreign key(c_id)
-- 引用父表主鍵
references my_class(id);
-- 刪除外鍵
alter table my_foreign1drop
foreign key my_foreign1_ibfk_1; -- my_foreign1_ibfk_1 通過外鍵的名字來刪
-- 插入數據;外鍵欄位在父表不存在
insert into my_foreign2values (
null,'郭富城',4); -- 沒有4號班級
insert into my_foreign2values (
null,'項羽',1);
insert into my_foreign2values (
null,'劉邦',2);
insert into my_foreign2values (
null,'韓信',3);
-- 更新父表的記錄
update my_classset id=4 where id=1; -- 失敗;id=1記錄已經被學生引用
update my_foreign2set c_id=2 where id=4; -- 更新
update my_classset id=4 where id=3; -- 可以;沒有學生引用此班級
-- mysql中添加外鍵約束遇到一下情況:
-- cannot add foreign key constraint
-- 出現這個問題的原因是,外鍵的使用:
-- 1. 外鍵欄位不能為該表的主鍵;
-- 2. 外鍵欄位參考欄位必須為參考表的主鍵
-- 插入數據
insert into my_foreign1values (
null,'馬超','3'
);
-- 增加外鍵
alter table my_foreign1add
foreign key(c_id)references
my_class(id); -- 失敗;因為沒有3號班了
-- 創建外鍵,指定模式;刪除置空;更新級聯
create table my_foreign3(
idint primary key auto_increment,
name varchar (20)not null,
c_idint,
-- 增加外鍵
foreign key (c_id)
-- 引用表
references my_class(id)
-- 指定刪除模式
on delete set null
-- 指定更新模式
on update cascade
)charset utf8;
-- 插入數據
insert into my_foreign3values (
null,'劉備',1),
(null,'曹操',1),
(null,'孫權',1),
(null,'祝賀量',2),
(null,'周瑜',2);
-- 解除My_foreign2表的外鍵
alter table my_foreign2drop
foreign key student_class_1;
-- 更新父表主鍵
update my_classset id=3 where id=1;
-- 刪除父表主鍵
delete from my_classwhere id=2;
-- 聯合查詢
select * from my_class
union -- 默認去重
select * from my_class;
select * from my_class
union all -- 不去重
select * from my_class;
select id,c_name,roomfrom my_class
union all -- 不去重
select name,number,idfrom my_student;
-- 需求;男生升序;女生降序(年齡)
(select * from my_student
where sex='男'
order by ageasc limit9999999)
union
(select * from my_student
where sex='女'
order by agedesc limit9999999);
select * from my_studentwhere
c_id=(
-- 標量子查詢
select idfrom my_classwhere
c_name='python1903');-- id一定只有一個值(一行一列)
insert into my_classvalues (1,
'python1907','B407');
-- 列子查詢
select * from my_studentwhere
c_idin(select idfrom my_class);
-- any,some,all
select * from my_studentwhere
c_id=any(select idfrom my_class);
select * from my_studentwhere
c_id=some(select idfrom my_class);
select * from my_studentwhere
c_id=all(select idfrom my_class);
select * from my_studentwhere
c_id!=any(select idfrom my_class); -- 所有結果(null除外)
select * from my_studentwhere
c_id!=some(select idfrom my_class); -- 所有結果(null除外)
select * from my_studentwhere
c_id!=all(select idfrom my_class); -- 所有2號班級(null除外)
select * from my_studentwhere
age=(select max(age)from
my_student)
and
height=(select max(height))from
my_student);
-- 行子查詢
select * from my_student
-- (age,height)稱之內為行元素
where (age,height)=(select max(
age),max(height)from my_student);
update my_studentset height=188
where name='王五';
select * from my_studentorder by
agedesc,heightdesc limit1;
select * from my_studentorder by
heightdesc;
-- 表子查詢
select * from my_studentgroup by
c_idorder by heightdesc; -- 每個班選出第一個學生再按身高排序
select * from (select * from
my_studentorder by heightdesc)
as studentgroup by student.c_id;
⑻ sql里的FK外鍵和 references是什麼關系constraint 又是什麼,什麼時候該用它
假設兩張表,表1(學號,姓名,性別),學號為主鍵.
表2(學號,課程,成績).
可以為表2的學號定義外鍵(FOREIGN
KEY),該外鍵的取值范圍參照(REFERENCES)表1的學號
CONSTRAINT是對某列定義約束,
如上表1中的"性別",可以定義約束,將取值限定為不是"男",就是"女".
CHECK(性別
IN
('男','女'))
.請參考:
http://..com/question/212606515.html
⑼ sql references什麼意思
單獨一個單詞在sql中並沒有什麼含義,references是在為表創建外鍵時的一個固定語法里的詞度。
作用
保持數據一致性,完整性,主要目的是控制存儲在外鍵表中的數據。 使兩張表形成關聯,外鍵只能引用外表中的列的值或使用空值。
學號在成績表中是主鍵,在學生表中是外鍵。如果不使用外鍵,表1的學號欄位插了一個值(比如20140999999),但是這個值在表2中並沒有,這個時候,資料庫允許插入,並不會對插入的數據做關系檢查。
⑽ 關於資料庫語言SQL中references的用法
這樣寫的意思應該是本表的Cpno是外鍵,參照本表的Cno主鍵。這樣建立的不是兩個表外鍵關系,而是同一個表。我覺得這樣S、T和C之間的實體關系有些亂。理順course.student和teacher之間的關系是正確添加外鍵的關鍵。
如何添加表的外鍵關系,請看如下實例:
CREATE DATABASE CLOTH_INFO
CREATE TABLE User_info
(
id INT(4) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id)(主鍵)
)
CREATE TABLE cloth_info(
id_number INT(4) NOT NULL AUTO_INCREMENT,
PRIMARY KEY(id_number)(主鍵)
)
CREATE TABLE cloth_sale_info(
id_number INT(4) NOT NULL,
cloth_id INT(4) REFERENCES cloth_info(id_number),(外鍵)
user_id INT(4) REFERENCES User_info(id)(外鍵)
)
CREATE TABLE cloth_store_info(
id_number INT(4) NOT NULL ,
cloth_id INT(4) REFERENCES cloth_info(id_number)(外鍵)
)