mysql中插入如下数据
“2012年1月1日”到 date类型字段
数据库表结构 huangli(day date);
sql语句格式为
insert into huangli values(STR_TO_DATE('2012年1月1日', '%Y年%m月%d日'))
Δ