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:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
1
الرد
5298
أدوات العرض
OpenERP Menu:
Settings --> Translations --> Languages
Open your Language and edit the record to change the Date Format to %d/%m/%Y
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
|
1
نوفمبر 22
|
3888 | ||
|
1
أكتوبر 21
|
2336 | ||
|
2
نوفمبر 18
|
9341 | ||
|
1
مارس 15
|
2974 | ||
|
4
مارس 15
|
4574 |
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;