How to convert a date that is in the format DDMMYYYY
to YYYYMMDD
?
I'm having trouble sending this data to different SQL databases, since each has been crafted and is already powered.
How to convert a date that is in the format DDMMYYYY
to YYYYMMDD
?
I'm having trouble sending this data to different SQL databases, since each has been crafted and is already powered.
If your database is MySQL you can use a mysql function when doing the insert.
DATE_FORMAT(data, '%Y-%m-%d').