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
- Бухгалтерия
- Склад
- PoS
- Project
- MRP
Этот вопрос был отмечен
1
Ответить
6699
Представления
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!
Регистрация| Related Posts | Ответы | Просмотры | Активность | |
|---|---|---|---|---|
|
|
1
нояб. 22
|
7110 | ||
|
|
1
окт. 21
|
4016 | ||
|
|
2
нояб. 18
|
10850 | ||
|
|
1
мар. 15
|
4187 | ||
|
|
4
мар. 15
|
5942 |
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;