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
ตอบกลับ
6689
มุมมอง
OpenERP Menu:
Settings --> Translations --> LanguagesOpen your Language and edit the record to change the Date Format to %d/%m/%Y
สนุกกับการพูดคุยนี้ใช่ไหม? เข้าร่วมเลย!
สร้างบัญชีวันนี้เพื่อเพลิดเพลินไปกับฟีเจอร์พิเศษและมีส่วนร่วมกับคอมมูนิตี้ที่ยอดเยี่ยมของเรา!
ลงชื่อ| Related Posts | ตอบกลับ | มุมมอง | กิจกรรม | |
|---|---|---|---|---|
|
|
1
พ.ย. 22
|
7079 | ||
|
|
1
ต.ค. 21
|
4006 | ||
|
|
2
พ.ย. 18
|
10837 | ||
|
|
1
มี.ค. 15
|
4179 | ||
|
|
4
มี.ค. 15
|
5931 |
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;