# 各个图书在特定时间的借阅量,和指定时间对比,同时给出各分区占比 with t1 as( select book_id, book_title, count(if(date_format(borrow_date,'%Y%m')='202302',1,null)) as feb_2023_borrows, count(if(date_format(borrow_date,'%Y%m')='202402',1,null)) as feb_2024_borrows, count(if(date_format(borrow_date,'%Y%m')='202401',1,null)) as jan_...