Rumah >pangkalan data >tutorial mysql >date-mysql插入语句怎么插入日期用什么函数?
mysqldate
sql="insert into emp(empno, ename, job, mgr, hiredate, sal, comm, deptno)" +
" values(1000,?,?,?,date_format(?,'yyyy-mm-dd'),?,?,?)";
如上 在mysql中把String转换成日期 应该怎么写,用什么函数?