how can i get the date in dd mm yyyy format please help me
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Účtovníctvo
- Sklady
- PoS
- Project
- MRP
This question has been flagged
1
Odpoveď
6024
Zobrazenia
OpenERP Menu:
Settings --> Translations --> Languages
Open 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!
RegistráciaRelated Posts | Replies | Zobrazenia | Aktivita | |
---|---|---|---|---|
|
1
nov 22
|
5602 | ||
|
1
okt 21
|
3283 | ||
|
2
nov 18
|
10191 | ||
|
1
mar 15
|
3591 | ||
|
4
mar 15
|
5225 |
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;