1. 조건에 맞는 도서와 저자 리스트 출력처음 풀이select a.book_id, b.author_name, a.published_datefrom book a join author b on a.author_id = b.author_id where a.category = "경제" order by published_date출력 값으로 00:00:00 시간까지 출력됨. Date_format(컬럼, '%Y-%m-%d)%y > 20%Y > 2020%M > 영어%m > 숫자 고친 답select a.book_id, b.author_name, date_format(a.published_date,'%Y-%m-%d') as published_date from book a join author b on a.author_id..