Posts by Ederson Boeira • 1 point
1 post
-
0
votes2
answers155
viewsA: Convert date 20171130 to format 30/11/2017 in string
You don’t have to convert. If you are taking the data from a database, it already gets converted by select. Example: SELECT *,date_format(`data`,'%d/%m/%Y') as `data_formatada` FROM tabela So it…