Re: [sqlite] Join two select field together

2005-01-28 Thread [EMAIL PROTECTED]
Thank you. That answers my question. Awesome Sqlite! Darren Duncan wrote: At 9:49 PM -0400 1/28/05, [EMAIL PROTECTED] wrote: Hi All, I wonder does Sqlite have feature such as join two string fields together. e.g: Select FirstName + LastName From Username Thank you, Ming The '+' is a numerical add

Re: [sqlite] Join two select field together

2005-01-28 Thread Darren Duncan
At 9:49 PM -0400 1/28/05, [EMAIL PROTECTED] wrote: Hi All, I wonder does Sqlite have feature such as join two string fields together. e.g: Select FirstName + LastName From Username Thank you, Ming The '+' is a numerical addition; its result is the sum of 2 numbers; that is not what you want. What

[sqlite] Join two select field together

2005-01-28 Thread [EMAIL PROTECTED]
Hi All, I wonder does Sqlite have feature such as join two string fields together. e.g: Select FirstName + LastName From Username Thank you, Ming