mysql中如何将18 Oct 2013这样的字符串转换成标准的日期2013-10-18
发布网友
发布时间:2022-04-09 13:27
我来回答
共1个回答
热心网友
时间:2022-04-09 14:56
<?php
$a=strtotime("18 October 2013");
$b=date("Y-m-d ", $a);
echo $b;
?>追问我说的是mysql中,不是用php来写
追答select date_format(test_date,’%Y-%m-%d’) as test_date from test