SELECT 'abc' || 'def' : String Concatenate « Postgre SQL « PostgreSQL






SELECT 'abc' || 'def'


postgres=#
postgres=# SELECT 'abc' || 'def' AS "unspecified";
 unspecified
-------------
 abcdef
(1 row)

postgres=#
           
       








Related examples in the same category

1.Using operators with NULL values
2.String Concatenation Operator Type Resolution
3.Concatenating strings