how can i get the date in dd mm yyyy format please help me
This question has been flagged
1
Reply
7782
Views
OpenERP Menu:
Settings --> Translations --> LanguagesOpen your Language and edit the record to change the Date Format to %d/%m/%Y
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up| Related Posts | Replies | Views | Activity | |
|---|---|---|---|---|
|
|
1
Nov 22
|
10078 | ||
|
|
1
Oct 21
|
5734 | ||
|
|
2
Nov 18
|
12967 | ||
|
|
1
Mar 15
|
5251 | ||
|
|
4
Mar 15
|
7605 |
You want to get the date in dd mm yyyy format using SQL query ?
SQL Query : select to_char(date,'DD/MM/YYYY') from table_name;