Posts by Jean Mayer • 31 points
2 posts
-
2
votes1
answer5358
viewsA: How to select a date in the dd/mm/yyyy format in mysql?
I was doing it the wrong way. I ended up trying it again and it worked. SELECT DATE_FORMAT(STR_TO_DATE('campo', '%Y-%m-%d'), '%d/%m/%Y') FROM 'tabela'
-
1
votes1
answer5358
viewsQ: How to select a date in the dd/mm/yyyy format in mysql?
Good morning/late/evening I need to select a field TYPE DATE in mysql, the data is in the format yyyy-mm-dd, I need you to come back dd/mm/yyyy. Is there any way to do this in select? I’ve seen…