mysql数据库,将2023年7月8日转为 2023-07-08格式
SELECT STR_TO_DATE('2022年03月09日', '%Y年%m月%d日') AS formatted_date;
to_char(cast("2023年7月8日" as date),"yyyy-MM-dd")