Re: [GENERAL] Trying to append text to the end of a text string

2005-10-05 Thread Martijn van Oosterhout
On Thu, Oct 06, 2005 at 11:30:53AM +1300, Adam Lawrence wrote: > Hi > > I am trying to append text onto the end of a text variable. > > I have the text variable P_IDT_ID, I want to add the letter S to the end of > it, so I tried the following line in my code: > > P_IDT_ID := P_IDT_ID && cast(''

Re: [GENERAL] Trying to append text to the end of a text string

2005-10-05 Thread Jim C. Nasby
decibel=# select 'moo' || 'cow'; moocow decibel=# What database uses &&? Access? I seem to recall seeing that somewhere before, but don't remember where... Note that || is ANSI SQL. On Thu, Oct 06, 2005 at 11:30:53AM +1300, Adam Lawrence wrote: > Hi > > I am trying to append text onto the end

Re: [GENERAL] Trying to append text to the end of a text string

2005-10-05 Thread Scott Marlowe
On Wed, 2005-10-05 at 17:30, Adam Lawrence wrote: > Hi > > I am trying to append text onto the end of a text variable. > > I have the text variable P_IDT_ID, I want to add the letter S to the > end of it, so I tried the following line in my code: > > P_IDT_ID := P_IDT_ID && cast(''S'' as text