I have a field which its format is date with time as: YYYY-MM-DD HH-MM-SS for example: 2000-08-12 00:00:00 I want to get just the date part and cha
YYYY-MM-DD HH-MM-SS
2000-08-12 00:00:00
try with:
to_char(your_Field, 'dd/mm/yyyy')
You can use the to_char function to format your column:
to_char
SELECT TO_CHAR(ddatte, 'dd/Mon/yyyy') FROM mytable