한국식(yyyy년 mm월 dd일 x요일)으로 어제 일자를 읽어오는 쿼리이다.
select
concat(date_format(DATE_ADD(NOW(), interval -1 day), '%Y년 %m월 %d일 ')
, case dayofweek(DATE_ADD(NOW(), interval -1 day))
when '1' then '일요일'
when '2' then '월요일'
when '3' then '화요일'
when '4' then '수요일'
when '5' then '목요일'
when '6' then '금요일'
when '7' then '토요일' end);;