๋ถ์์ง์
where ์ ์ ๋ค์ ์ค์ฒฉํด ์์ฑ(3~4๋ฒ๊น์ง ์ถ์ฒ)
์ต์ข ์ ์ผ๋ก ๋ณด์ด๊ณ ์ถ์ ๊ฒ์ ๋งจ ์์ ์์ฑํ๊ณ , ๋ค์ด๊ฐ๊ธฐ, ๋ค์ด๊ฐ๊ธฐ ํด์ ๊ฐ์ฅ ์ฒซ ์กฐ๊ฑด์ด ๊ดํธ ๊ฐ์ฅ ์์ ์๋๋ก.
select bookname
from book
where price = ( select max(price) from book);
์๊ด ๋ถ์์ง์
๋์ผํ ํ ์ด๋ธ์ b1, b2์ ์ด๋ฆ์ ์ค์ ๋น๊ต.
select b1.title
from book b1
where b1.price > (select avg(b2.price) from book b2 where b1.publisher = b2.publisher);
exists
์กด์ฌํจ? ๋ชจ๋ ์ ํจ?(not exists)
where exists (select * from orders where cust.cid = orders.cid)
์งํฉ ์ฐ์ฐ
where orders.cid is null;
728x90
๋ฐ์ํ
0