OUTTER JOIN과 JOIN에서의 드라이브 CUSTOMER라는 테이블과 ORDER라는 테이블이 있다고 가정. CUSTOMER에는 custname과 zip-code,custno(pk) index는 zip-code 건수는 200만건 ORDER에는 orderno(pk),orderdate,orderprice,custno,ordername가 있다고 가정. index는 custno+orderdate 건수는 3천만건 특정지역에 사는 고객이 주문한 주문내역을 1개월치를 뽑는다고 할때 1.select B.custname, A.ordername from order A, cust B where A.custno = B.custno(+) and B.zip-code = :v1 and A.orderdate like '200504%' 와 2.select B.custname,.. 더보기 이전 1 ··· 638 639 640 641 642 643 644 ··· 713 다음