Подзапросы. Подзапросы в операторах модификации удаления и вставки

Слайд 2

2 запрос
select title, price
from titles
where price = $6

1 запрос
select

2 запрос select title, price from titles where price = $6 1
price
from titles
where title = "Чтиво"

Объеденный запрос
select title, price
from titles
where price =
(select price
from titles
where title = "Чтиво")

Простой подзапрос

Слайд 3

Уровневый запрос
select au_lname, au_fname
from authors
where au_id in
(select au_id

Уровневый запрос select au_lname, au_fname from authors where au_id in (select au_id

from titleauthor
where title_id in
(select title_id
from titles
where type = "popular_child") )

соединение
select au_lname, au_fname
from authors, titles, titleauthor
where authors.au_id = titleauthor.au_id
and titles.title_id = titleauthor.title_id
and type = "popular_ child "

Несколько уровней вложенности

Слайд 4

update titles
set price = price * 2
where pub_id in

update titles set price = price * 2 where pub_id in (select
(select pub_id
from publishers
where pub_name = "ОдесаДрук")

Соединение
set price = price * 2
from titles, publishers
where titles.pub_id = publishers.pub_id
and pub_name = "ОдесаДрук"

delete salesdetail
where title_id in
(select title_id
from titles
where type = "business")

соединение
delete salesdetail
from salesdetail, titles
where salesdetail.title_id = titles.title_id
and type = "business"

Подзапросы в операторах модификации удаления и вставки

Слайд 5

if exists (select title_id
from titles
where type = "business")
begin

if exists (select title_id from titles where type = "business") begin delete
delete salesdetail
where title_id in
(select title_id
from titles
where type = "business")
end

Подзапросы в условных операторах

Слайд 6

select au_lname, au_fname
from authors
where city =
(select city

select au_lname, au_fname from authors where city = (select city from publishers
from publishers
where pub_name = "ОдесаДрук")

Подзапросы-выражения

Имя файла: Подзапросы.-Подзапросы-в-операторах-модификации-удаления-и-вставки.pptx
Количество просмотров: 20
Количество скачиваний: 0