在PostgreSQL中,to_char()函數用于將數值、日期和時間類型的值轉換為字符串。以下是to_char()常用操作方法的一些示例:
to_char(123.45, ‘999,999.99’) 返回 ‘123.45’
to_char(123.45, ‘999.99’) 返回 ‘123.45’
to_char(123.45, ‘$999.99’) 返回 ‘$123.45’
to_char(current_date, ‘YYYY-MM-DD’) 返回當前日期的字符串表示,例如 ‘2021-01-01’
to_char(current_timestamp, ‘YYYY-MM-DD HH24:MI:SS’) 返回當前日期和時間的字符串表示,例如 ‘2021-01-01 12:34:56’
to_char(current_timestamp, ‘FMMonth DD, YYYY’) 返回當前日期的字符串表示,例如 ‘January 01, 2021’
to_char(current_date, ‘FMMonth’, ‘French’) 返回當前月份的法語表示,例如 ‘janvier’
to_char(current_date, ‘FMMonth’, ‘German’) 返回當前月份的德語表示,例如 ‘Januar’
to_char(1234567.89, ‘999G999G999D99’) 返回 ‘1,234,567.89’
to_char(current_date, ‘FMMonth DD, YYYY’, ‘999G999G999’) 返回 ‘Januar 01, 2021’
這只是to_char()函數的一些常見操作方法示例,實際使用中可以根據需要進行更多的格式化操作。