PostgreSQL 13に型varcharからtextへの変換サンプル

2022年1月9日

環境
Windows10 64 bit
PostgreSQL 13.2

書式
cast(cast(文字列 as varchar(桁数)) as text)

使い方
varchar文字数指定あり(12桁)からtextへ変換します
操作例1

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
postgres=# select cast(cast('studyskill' as varchar(12)) as text);
text
------------
studyskill
(1)
postgres=# select cast(cast('studyskill' as varchar(12)) as text); text ------------ studyskill (1 行)
postgres=# select cast(cast('studyskill' as varchar(12)) as text);
    text
------------
 studyskill
(1 行)

操作例2

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
postgres=# select cast(cast('studyskillinarkgame' as varchar(12)) as text);
text
--------------
studyskillin
(1)
postgres=# select cast(cast('studyskillinarkgame' as varchar(12)) as text); text -------------- studyskillin (1 行)
postgres=# select cast(cast('studyskillinarkgame' as varchar(12)) as text);
     text
--------------
 studyskillin
(1 行)

 

PostgreSQL

Posted by arkgame