mysqldate
sql=insert into emp(empno, ename, job, mgr, hiredate, sal, comm, deptno) +
values(1000,?,?,?,date_format(?,'yyyy-mm-dd'),?,?,?);
如上 在mysql中把string转换成日期 应该怎么写,用什么函数?