Разработка системы по сбору информации
Категория реферата: Рефераты по информатике, программированию
Теги реферата: заключение дипломной работы, отправить сообщение
Добавил(а) на сайт: Дмитровский.
Предыдущая страница реферата | 10 11 12 13 14 15 16 17 18 19 20 | Следующая страница реферата
CREATE INDEX tab_sum_n ON nach(tab, symma);
CREATE INDEX tab_sum_u ON ud(tab, symma);
CREATE INDEX zeh ON zeh(zeh);
CREATE INDEX ych ON ych(ych);
create table Zeh (
Zeh Char(2) not null,
KeyOrg char(3) Not Null,
Naim Char(25) not null,
CONSTRAINT PO_KeyOrg3
FOREIGN KEY(KeyOrg) REFERENCES Org(KeyOrg) ON UPDATE CASCADE);
create table Ych (
Ych Char(2) not null,
KeyOrg char(3) Not Null,
Zeh Char(2) not null,
Naim Char(15) not null,
CONSTRAINT PO_KeyOrg4
FOREIGN KEY(KeyOrg) REFERENCES Org(KeyOrg) ON UPDATE CASCADE);
create trigger kaskad_ych for zeh
Active
After
Update
As
begin
if (old.zehnew.zeh) then
Update Ych
Set Zeh=new.Zeh
Where Zeh=Old.Zeh;
end
create table Kat (
Kat Char(2) not null,
Naim Char(15) not null,
Primary Key (Kat));
create table Sist_Opl (
Sist_Opl Char(1) not null,
Naim Char(30) not null,
Primary Key (Sist_Opl));
create table Prof (
Prof Char(2) not null,
Naim Char(20) not null,
Primary Key (Prof));
Рекомендуем скачать другие рефераты по теме: доклад 2011, реферат суды.
Предыдущая страница реферата | 10 11 12 13 14 15 16 17 18 19 20 | Следующая страница реферата