SQL 연습문제 9-1 위니브 상품정보1(weniv_product) 테이블과 위니브 상품정보2(weniv_product2) 테이블 간 모든 정보를 조회하시오.(단, 중복 제거하여 조회하시오.) select * from `weniv.weniv_product` as pd1 union distinct select * from `weniv.weniv_product2` as pd2 SQL 연습문제 9-2 위니브 회원(weniv_user) 테이블에서 주문 이력(weniv_order)이 있는 사람의 id을 조회하세요. select id from `weniv.weniv_user` as user INTERSECT DISTINCT select user_id from `weniv.weniv_order` as orders S..