select *
from cal_calendar_holiday c
where c.is_deleted=0
and c.start_date >= #{dto.startDate}
and c.end_date <= #{dto.endDate}
and str_to_date(#{dto.calDate},'%Y-%m-%d') between c.start_date and c.end_date
and c.title like concat('%',#{dto.title},'%')