在实际应用中,对于具体的数据计算我们会找相应的函数来实现。而计算需求不同的表达,往往会使得我们使用不同的函数或方式来实现。或者也可以说,同一计算可以使用多种不同的表达方式实现。
PostgreSQL 提供非常丰富的类型及函数,具体可参与相关帮助文档。
以下我们通过实例来展示几个常用的函数表达场景
首先,我们创建示例数据如下
CREATE TABLE table_test ( id int PRIMARY KEY, test_name varchar(10), -- 名称 group_code varchar(10), -- 组号 create_at timestamp, -- 创建时间 status bool, -- 状态 test_desc varchar(100) -- 描述);-- 插入以下示例数据INSERT INTO table_test (id, test_name, group_code, create_at, status, test_desc) VALUES(1, '一号', '01', now(), true, '评为A'),(2, '一号', '01', now(), true, '评为A'),(3, '二号', '02', now(), true, '评为B'),(4, '三号', '01', now(), null, '评