Re: [GENERAL] concatenation issue ( 8.4 )

2009-09-18 Thread Alban Hertroys
On 18 Sep 2009, at 18:25, Raymond O'Donnell wrote: On 18/09/2009 16:52, Jonathan Vanasco wrote: I have a table with name_first name_middle name_last if i try concatenating as such: SELECT name_first || ' ' || name_middle || ' ' || name_last FROM mytable ; I end

Re: [GENERAL] concatenation issue ( 8.4 )

2009-09-18 Thread Raymond O'Donnell
On 18/09/2009 16:52, Jonathan Vanasco wrote: > I have a table with > name_first > name_middle > name_last > > if i try concatenating as such: > SELECT > name_first || ' ' || name_middle || ' ' || name_last > FROM > mytable > ; > > I end up with NULL as the

[GENERAL] concatenation issue ( 8.4 )

2009-09-18 Thread Jonathan Vanasco
I have a table with name_first name_middle name_last if i try concatenating as such: SELECT name_first || ' ' || name_middle || ' ' || name_last FROM mytable ; I end up with NULL as the concatenated string whenever a