PostgreSQL 知识量:10 - 51 - 182
在 PostgreSQL 中,数据类型格式化函数用于将数据类型转换为特定的格式。以下是一些常用的数据类型格式化函数:
1. to_char(timestamp, format):将时间戳转换为指定格式的字符串。format 参数指定输出的格式,可以使用多个格式化选项进行组合。
示例:
SELECT to_char(now(), 'YYYY-MM-DD HH24:MI:SS');
2. to_char(numeric, format):将数值转换为指定格式的字符串。format 参数指定输出的格式。
示例:
SELECT to_char(12345.6789, '9999.99');
3. to_char(date, format):将日期转换为指定格式的字符串。format 参数指定输出的格式。
示例:
SELECT to_char(current_date, 'YYYY-MM-DD');
4. to_char(boolean, format):将布尔值转换为指定格式的字符串。format 参数指定输出的格式。
示例:
SELECT to_char(true, 'F'); -- 输出 'T' 或 't' 表示 true,'F' 或 'f' 表示 false。
Copyright © 2017-Now pnotes.cn. All Rights Reserved.
编程学习笔记 保留所有权利
MARK:3.0.0.20240214.P35
From 2017.2.6