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
- Financeiro
- Inventário
- PoS
- Project
- MRP
Esta pergunta foi sinalizada
1
Responder
6718
Visualizações
OpenERP Menu:
Settings --> Translations --> LanguagesOpen your Language and edit the record to change the Date Format to %d/%m/%Y
Está gostando da discussão? Não fique apenas lendo, participe!
Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!
Inscreva-se| Publicações relacionadas | Respostas | Visualizações | Atividade | |
|---|---|---|---|---|
|
|
1
nov. 22
|
7165 | ||
|
|
1
out. 21
|
4084 | ||
|
|
2
nov. 18
|
10870 | ||
|
|
1
mar. 15
|
4197 | ||
|
|
4
mar. 15
|
5976 |
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;