PostgreSQL 13に符号||で文字列を結合する
環境
Windows10 64 bit
PostgreSQL 13.2
書式
文字列1 || 文字列2
使用例1
postgres=# select 'study' || 'skill' result; result ------------ studyskill (1 行)
使用例2
英字と数字を結合します
postgres=# select 'study' || 'skill' ||'4567' result; result ---------------- studyskill4567 (1 行)