Talk:String concatenation

From Rosetta Code
Revision as of 02:21, 16 November 2010 by 210.48.82.11 (talk) (sql?)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

SQL has string concatentation using infix || in the style of PL/1 but does not have variables as such.


create table foo ( a varchar(10),b varchar(10)); insert into foo values ('hello','dolly'),('l8r','g8r'); select 'greeting is ' ||a ,a ||' '|| b from foo;