Answers for "to_date(:fromdate, 'yyyy-mm-dd')"

PHP
2

php convert date from dd/mm/yyyy to yyyy-mm-dd

$date = DateTime::createFromFormat('d/m/Y', "24/04/2012");
echo $date->format('Y-m-d');
Posted by: Guest on September-14-2020
0

Convert a date to yyyy mm dd format

const formatYmd = date => date.toISOString().slice(0, 10);
formatYmd(new Date());
Posted by: Guest on October-21-2020

Code answers related to "to_date(:fromdate, 'yyyy-mm-dd')"

Browse Popular Code Answers by Language