다형성 쿼리
select i from Item i
where type(i) IN (Book, Movie)select i from i
where i.DTYPE in (‘B’, ‘M’)select i from Item i
where treat(i as Book).auther = 'kim'select i.* from Item i
where i.DTYPE = 'B' and i.auther = 'kim'Last updated
select i from Item i
where type(i) IN (Book, Movie)select i from i
where i.DTYPE in (‘B’, ‘M’)select i from Item i
where treat(i as Book).auther = 'kim'select i.* from Item i
where i.DTYPE = 'B' and i.auther = 'kim'Last updated