On Oct 25, 2005, at 6:08 PM, Alfredo Cole wrote:
What is the equivalent of: select concat(col1,col2,col3) from table in SQlite?
SELECT col1 || col2 || col3 FROM table should do, no? -- Puneet Kishor
On Oct 25, 2005, at 6:08 PM, Alfredo Cole wrote:
What is the equivalent of: select concat(col1,col2,col3) from table in SQlite?
SELECT col1 || col2 || col3 FROM table should do, no? -- Puneet Kishor