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
select 'abcde' || 'fgh'; select cast('abcde' as text) || cast('fgh' as text);