我需要更改00-00-0000 to 07/02/1999
列中的条目
谢谢。
答案 0 :(得分:0)
你可能完全意味着别的东西,但正如它的措辞一样,你的问题的答案是对形式的查询:
UPDATE the_table SET the_column = "07/02/1999" WHERE the_column = "00-00-000"
答案 1 :(得分:0)
您也可以在脚本方面执行此操作,无论您的脚本语言是否具有与 PHP 中的 explode()类似的功能。
$pieces = explode ('/', $date);
然后使用'-'
$newDate = $pieces[0] . '-' . $pieces[1] . '-' . $pieces[2];
答案 2 :(得分:0)
您应该使用standard ISO-8601
对于你的问题,希望这有帮助
select date_format(cast('1999/02/07' as date), '%d/%m/%Y');
您的架构
select date_format(your_column), '%d/%m/%Y') ...
如果您寻找更新,第一个答案就是您需要的