I\'m trying to a simple concatenation in PostgreSQL and it keeps up throwing up an error message. I don\'t understand what I am doing wrong here.
select conc
The concat operator is ||, so select 'abcde' || 'fgh' should work. Also, as @jonathan.cone suggested, check out the docs.
||
select 'abcde' || 'fgh'