服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - PostgreSQL - PostgreSQL 自定义自动类型转换操作(CAST)

PostgreSQL 自定义自动类型转换操作(CAST)

2021-03-05 19:45postgresql教程网 PostgreSQL

这篇文章主要介绍了PostgreSQL 自定义自动类型转换操作(CAST),具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

背景

PostgreSQL是一个强类型数据库,因此你输入的变量、常量是什么类型,是强绑定的,例如

在调用操作符时,需要通过操作符边上的数据类型,选择对应的操作符。

在调用函数时,需要根据输入的类型,选择对应的函数。

如果类型不匹配,就会报操作符不存在,或者函数不存在的错误。

?
1
2
3
4
5
postgres=# select '1' + '1';
ERROR: operator is not unique: unknown + unknown
LINE 1: select '1' + '1';
     ^
HINT: Could not choose a best candidate operator. You might need to add explicit type casts.

那么使用起来是不是很不方便呢?

PostgreSQL开放了类型转换的接口,同时也内置了很多的自动类型转换。来简化操作。

查看目前已有的类型转换:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
postgres=# \dC+
            List of casts
   Source type   |   Target type   |  Function  | Implicit? | Description
-----------------------------+-----------------------------+--------------------+---------------+-------------
 "char"      | character     | bpchar    | in assignment |
 "char"      | character varying   | text    | in assignment |
 "char"      | integer      | int4    | no   |
 "char"      | text      | text    | yes   |
 abstime      | date      | date    | in assignment |
 abstime      | integer      | (binary coercible) | no   |
 abstime      | time without time zone  | time    | in assignment |
 
 ................................
 
 timestamp without time zone | timestamp with time zone | timestamptz  | yes   |
 timestamp without time zone | timestamp without time zone | timestamp   | yes   |
 xml       | character     | (binary coercible) | in assignment |
 xml       | character varying   | (binary coercible) | in assignment |
 xml       | text      | (binary coercible) | in assignment |
(246 rows)

如果你发现有些类型转换没有内置,怎么办呢?我们可以自定义转换。

当然你也可以使用这种语法,对类型进行强制转换:

?
1
2
3
4
5
CAST(x AS typename)
 
 or
 
x::typename

如何自定义类型转换(CAST)

自定义CAST的语法如下:

?
1
2
3
4
5
6
7
8
9
10
11
CREATE CAST (source_type AS target_type)
 WITH FUNCTION function_name [ (argument_type [, ...]) ]
 [ AS ASSIGNMENT | AS IMPLICIT ]
 
CREATE CAST (source_type AS target_type)
 WITHOUT FUNCTION
 [ AS ASSIGNMENT | AS IMPLICIT ]
 
CREATE CAST (source_type AS target_type)
 WITH INOUT
 [ AS ASSIGNMENT | AS IMPLICIT ]

解释:

1、WITH FUNCTION,表示转换需要用到什么函数。

2、WITHOUT FUNCTION,表示被转换的两个类型,在数据库的存储中一致,即物理存储一致。例如text和varchar的物理存储一致。不需要转换函数。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
Two types can be binary coercible,
which means that the conversion can be performed “for free” without invoking any function.
 
This requires that corresponding values use the same internal representation.
 
For instance, the types text and varchar are binary coercible both ways.
 
Binary coercibility is not necessarily a symmetric relationship.
 
For example, the cast from xml to text can be performed for free in the present implementation,
but the reverse direction requires a function that performs at least a syntax check.
 
(Two types that are binary coercible both ways are also referred to as binary compatible.)

3、WITH INOUT,表示使用内置的IO函数进行转换。每一种类型,都有INPUT 和OUTPUT函数。使用这种方法,好处是不需要重新写转换函数。

除非有特殊需求,我们建议直接使用IO函数来进行转换。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
        List of functions
 Schema Name  | Result data type | Argument data types | Type
------------+-----------------+------------------+---------------------+--------
 pg_catalog | textin   | text    | cstring    | normal
 pg_catalog | textout   | cstring   | text    | normal
 pg_catalog | date_in   | date    | cstring    | normal
 pg_catalog | date_out  | cstring   | date    | normal
You can define a cast as an I/O conversion cast by using the WITH INOUT syntax.
 
An I/O conversion cast is performed by invoking the output function of the source data type,
and passing the resulting string to the input function of the target data type.
 
In many common cases, this feature avoids the need to write a separate cast function for conversion.
 
An I/O conversion cast acts the same as a regular function-based cast; only the implementation is different.

4、AS ASSIGNMENT,表示在赋值时,自动对类型进行转换。例如字段类型为TEXT,输入的类型为INT,那么可以创建一个 cast(int as text) as ASSIGNMENT。

?
1
2
3
4
5
6
7
8
9
10
If the cast is marked AS ASSIGNMENT then it can be invoked implicitly when assigning a value to a column of the target data type.
 
For example, supposing that foo.f1 is a column of type text, then:
 
INSERT INTO foo (f1) VALUES (42);
 
will be allowed if the cast from type integer to type text is marked AS ASSIGNMENT,
otherwise not.
 
(We generally use the term assignment cast to describe this kind of cast.)

5、AS IMPLICIT,表示在表达式中,或者在赋值操作中,都对类型进行自动转换。(包含了AS ASSIGNMENT,它只对赋值进行转换)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
If the cast is marked AS IMPLICIT then it can be invoked implicitly in any context,
whether assignment or internally in an expression.
 
(We generally use the term implicit cast to describe this kind of cast.)
 
For example, consider this query:
 
SELECT 2 + 4.0;
 
The parser initially marks the constants as being of type integer and numeric respectively.
 
There is no integer + numeric operator in the system catalogs, but there is a numeric + numeric operator.
 
The query will therefore succeed if a cast from integer to numeric is available and is marked AS IMPLICIT —
which in fact it is.
 
The parser will apply the implicit cast and resolve the query as if it had been written
 
SELECT CAST ( 2 AS numeric ) + 4.0;

6、注意,AS IMPLICIT需要谨慎使用,为什么呢?因为操作符会涉及到多个算子,如果有多个转换,目前数据库并不知道应该选择哪个?

?
1
2
3
4
5
6
7
8
9
10
11
12
13
Now, the catalogs also provide a cast from numeric to integer.
 
If that cast were marked AS IMPLICIT — (which it is not — )
 
then the parser would be faced with choosing between the above interpretation and
the alternative of casting the numeric constant to integer and applying the integer + integer operator.
 
Lacking any knowledge of which choice to prefer, it would give up and declare the query ambiguous.
 
The fact that only one of the two casts is implicit is the way in which we teach the parser to prefer resolution of
a mixed numeric-and-integer expression as numeric;
 
there is no built-in knowledge about that.

因此,建议谨慎使用AS IMPLICIT。建议使用AS IMPLICIT的CAST应该是非失真转换转换,例如从INT转换为TEXT,或者int转换为numeric。

而失真转换,不建议使用as implicit,例如numeric转换为int。

?
1
2
3
4
5
6
7
8
9
10
11
12
It is wise to be conservative about marking casts as implicit.
 
An overabundance of implicit casting paths can cause PostgreSQL to choose surprising interpretations of commands,
or to be unable to resolve commands at all because there are multiple possible interpretations.
 
A good rule of thumb is to make a cast implicitly invokable only for information-preserving
transformations between types in the same general type category.
 
For example, the cast from int2 to int4 can reasonably be implicit,
but the cast from float8 to int4 should probably be assignment-only.
 
Cross-type-category casts, such as text to int4, are best made explicit-only.

注意事项 + 例子

不能嵌套转换。例子

1、将text转换为date

错误方法

?
1
2
3
4
5
create or replace function text_to_date(text) returns date as $$
 select cast($1 as date);
$$ language sql strict;
 
create cast (text as date) with function text_to_date(text) as implicit;

嵌套转换后出现死循环

?
1
2
3
4
5
6
7
8
postgres=# select text '2017-01-01' + 1;
ERROR: stack depth limit exceeded
HINT: Increase the configuration parameter "max_stack_depth" (currently 2048kB), after ensuring the platform's stack depth limit is adequate.
CONTEXT: SQL function "text_to_date" during startup
SQL function "text_to_date" statement 1
SQL function "text_to_date" statement 1
SQL function "text_to_date" statement 1
......

正确方法

?
1
2
3
4
5
6
7
8
9
10
create or replace function text_to_date(text) returns date as $$  
 select to_date($1,'yyyy-mm-dd');
$$ language sql strict;
 
create cast (text as date) with function text_to_date(text) as implicit;
postgres=# select text '2017-01-01' + 1;
 ?column?
------------
 2017-01-02
(1 row)

我们还可以直接使用IO函数来转换:

?
1
2
3
4
5
6
7
8
postgres=# create cast (text as date) with inout as implicit;
CREATE CAST
 
postgres=# select text '2017-01-01' + 1;
 ?column?
------------
 2017-01-02
(1 row)

补充:PostgreSQL 整型int与布尔boolean的自动转换设置(含自定义cast与cast规则介绍)

背景

在使用数据库时,经常会遇到一些因为客户端输入的类型与数据库定义的类型不匹配导致的错误问题。

例如数据库定义的是布尔类型,而输入的是整型:

?
1
2
3
4
5
6
7
8
9
10
postgres=# create table cas_test(id int, c1 boolean);
CREATE TABLE
 
postgres=# \set VERBOSITY verbose
postgres=# insert into cas_test values (1, int '1');
ERROR: 42804: column "c1" is of type boolean but expression is of type integer
LINE 1: insert into cas_test values (1, int '1');
           ^
HINT: You will need to rewrite or cast the expression.
LOCATION: transformAssignedExpr, parse_target.c:591

又或者数据库定义的是时间,用户输入的是字符串:

?
1
2
3
4
5
6
7
8
postgres=# create table tbl123(id int, crt_time timestamp);
CREATE TABLE
 
postgres=# insert into tbl123 values (1, text '2017-01-01 10:00:00');
ERROR: column "crt_time" is of type timestamp without time zone but expression is of type text
LINE 1: insert into tbl123 values (1, text '2017-01-01 10:00:00');
           ^
HINT: You will need to rewrite or cast the expression.

从错误提示来看,数据库已经很清晰的告诉你为什么了。那么怎么让数据库自动转换呢?

PostgreSQL有一个语法,支持数据类型的转换(赋值、参数、表达式 等位置的自动转换)。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
postgres=# \h create cast
Command:  CREATE CAST
Description: define a new cast
Syntax:
CREATE CAST (source_type AS target_type)
 WITH FUNCTION function_name [ (argument_type [, ...]) ]
 [ AS ASSIGNMENT | AS IMPLICIT ]
 
CREATE CAST (source_type AS target_type)
 WITHOUT FUNCTION
 [ AS ASSIGNMENT | AS IMPLICIT ]
 
CREATE CAST (source_type AS target_type)
 WITH INOUT
 [ AS ASSIGNMENT | AS IMPLICIT ]

数据库内置了很多转换法则:

?
1
2
3
4
5
6
7
8
9
postgres=# \dC
            List of casts
   Source type   |   Target type   |   Function   | Implicit? 
-----------------------------+-----------------------------+---------------------------+---------------
 abstime      | date      | date      | in assignment
 abstime      | integer      | (binary coercible)  | no
 abstime      | timestamp without time zone | timestamp     | yes
 ........
 integer      | boolean      | bool      | no

类型的自动转换实际上也是有一定的规则的,例如 赋值、参数 算是两种规则。具体含义见如下文档:

PostgreSQL 自定义自动类型转换(CAST)

我们看到整型转布尔是有内置的转换规则的,那么为什么没有自动转呢?

?
1
2
3
4
5
postgres=# \dC
            List of casts
   Source type   |   Target type   |   Function   | Implicit? 
-----------------------------+-----------------------------+---------------------------+---------------
 integer      | boolean      | bool      | no

和自动转换的规则有关,no表示不会自动转换,只有当我们强制指定转换时,才会触发转换的动作:

?
1
2
3
4
5
postgres=# select cast ((int '1') as boolean);
 bool
------
 t
(1 row)

pg_cast里面的context转换为可读的内容(e表示no, a表示assignment, 否则表示implicit)

如果让数据库赋值时自动将字符串转换为时间,自动将整型转换为布尔

1、如果数据库已经内置了转换规则,那么可以通过更新系统表的方式,修改自动转换规则。

例如,将这个INT转BOOLEAN的规则,修改为assignment的规则。

?
1
2
postgres=# update pg_cast set castcontext='a' where castsource ='integer'::regtype and casttarget='boolean'::regtype;
UPDATE 1

修改后,我们再查看这个转换规则,就变成这样了

?
1
2
3
4
5
\dC
            List of casts
   Source type   |   Target type   |   Function   | Implicit? 
-----------------------------+-----------------------------+---------------------------+---------------
 integer      | boolean      | bool      | in assignment

现在你可以将int自动写入为BOOLEAN了。

?
1
2
3
4
postgres=# create table cas_test(id int, c1 boolean);
CREATE TABLE
postgres=# insert into cas_test values (1, int '1');
INSERT 0 1

2、如果系统中没有两种类型转换的CAST规则,那么我们需要自定义一个。

例如

?
1
2
3
4
5
6
7
postgres=# create cast (text as timestamp) with inout as ASSIGNMENT;
CREATE CAST
 
            List of casts
   Source type   |   Target type   |   Function   | Implicit? 
-----------------------------+-----------------------------+---------------------------+---------------
 text      | timestamp without time zone | (binary coercible)  | in assignment

这样就可以自动将TEXT转换为TIMESTAMP了。

?
1
2
3
4
5
6
7
postgres=# insert into tbl123 values (1, text '2017-01-01 10:00:00');
INSERT 0 1
postgres=# select * from tbl123;
 id |  crt_time  
----+---------------------
 1 | 2017-01-01 10:00:00
(1 row)

删掉这个转换,就会报错。

?
1
2
3
4
5
6
7
postgres=# drop cast (text as timestamp);
DROP CAST
postgres=# insert into tbl123 values (1, text '2017-01-01 10:00:00');
ERROR: column "crt_time" is of type timestamp without time zone but expression is of type text
LINE 1: insert into tbl123 values (1, text '2017-01-01 10:00:00');
           ^
HINT: You will need to rewrite or cast the expression.

3、如果没有内置的转换函数,我们可能需要自定义转换函数来支持这种转换。

例子

自定义一个函数,用于输入TEXT,返回TIMESTAMPTZ

?
1
2
3
4
postgres=# create or replace function cast_text_to_timestamp(text) returns timestamptz as $$
 select to_timestamp($1, 'yyyy-mm-dd hh24:mi:ss');
$$ language sql strict ;
CREATE FUNCTION

建立规则

?
1
2
3
4
5
6
7
8
postgres=# create cast (text as timestamptz) with function cast_text_to_timestamp as ASSIGNMENT;
CREATE CAST
 
postgres=# \dC
            List of casts
   Source type   |   Target type   |   Function   | Implicit? 
-----------------------------+-----------------------------+---------------------------+---------------
 text      | timestamp with time zone | cast_text_to_timestamp | in assignment

现在,输入TEXT,就可以自定转换为timestamptz了。

?
1
2
3
4
postgres=# create table tbl1234(id int, crt_time timestamptz);
CREATE TABLE
postgres=# insert into tbl1234 values (1, text '2017-01-01 10:10:10');
INSERT 0 1

当然,这些类型实际上内部都有内部的存储格式,大多数时候,如果存储格式通用,就可以直接使用INOUT来转换,不需要写转换函数。

仅仅当两种类型在数据库的内部存储格式不一样的时候,需要显示的写函数来转换。

以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。如有错误或未考虑完全的地方,望不吝赐教。

原文链接:https://www.postgresql.org/docs/10/sql-createcast.html

延伸 · 阅读

精彩推荐
  • PostgreSQLPostgresql开启远程访问的步骤全纪录

    Postgresql开启远程访问的步骤全纪录

    postgre一般默认为本地连接,不支持远程访问,所以如果要开启远程访问,需要更改安装文件的配置。下面这篇文章主要给大家介绍了关于Postgresql开启远程...

    我勒个去6812020-04-30
  • PostgreSQL分布式 PostgreSQL之Citus 架构

    分布式 PostgreSQL之Citus 架构

    节点 Citus 是一种 PostgreSQL 扩展,它允许数据库服务器(称为节点)在“无共享(shared nothing)”架构中相互协调。这些节点形成一个集群,允许 PostgreSQL 保存比单...

    未知802023-05-07
  • PostgreSQLpostgresql 中的to_char()常用操作

    postgresql 中的to_char()常用操作

    这篇文章主要介绍了postgresql 中的to_char()常用操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    J符离13432021-04-12
  • PostgreSQLPostgresql查询效率计算初探

    Postgresql查询效率计算初探

    这篇文章主要给大家介绍了关于Postgresql查询效率计算的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用Postgresql具有一定的参考学习价...

    轨迹4622020-05-03
  • PostgreSQLRDS PostgreSQL一键大版本升级技术解密

    RDS PostgreSQL一键大版本升级技术解密

    一、PostgreSQL行业位置 (一)行业位置 在讨论PostgreSQL(下面简称为PG)在整个数据库行业的位置之前,我们先看一下阿里云数据库在全球的数据库行业里的...

    未知1192023-05-07
  • PostgreSQLPostgreSQL标准建表语句分享

    PostgreSQL标准建表语句分享

    这篇文章主要介绍了PostgreSQL标准建表语句分享,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    码上得天下7962021-02-27
  • PostgreSQLpostgresql 数据库中的数据转换

    postgresql 数据库中的数据转换

    postgres8.3以后,字段数据之间的默认转换取消了。如果需要进行数据变换的话,在postgresql数据库中,我们可以用"::"来进行字段数据的类型转换。...

    postgresql教程网12482021-10-08
  • PostgreSQL深入理解PostgreSQL的MVCC并发处理方式

    深入理解PostgreSQL的MVCC并发处理方式

    这篇文章主要介绍了深入理解PostgreSQL的MVCC并发处理方式,文中同时介绍了MVCC的缺点,需要的朋友可以参考下 ...

    PostgreSQL教程网3622020-04-25