01. 마당서점의 고객이 요구하는 다음 질문에 대해 SQL 문을 작성하시오. 01) 도서번호가 1인 도서의 이름 select bookname from book where bookid = 1; 02) 가격이 20,000원 이상인 도서의 이름 select bookname from book where price >= 20000; 03) 박지성의 총 구매액 select sum(saleprice) from orders where custid = (select custid from customer where name = '박지성'); 04) 박지성이 구매한 도서의 수 select count(*) from orders where custid = 1; 05) 박지성이 구매한 도서의 출판사 수 select count(d..