Talk:String concatenation: Difference between revisions

m
added a talk section header for the first section, corrected a mispelling.
(→‎Rexx ||: new section)
m (added a talk section header for the first section, corrected a mispelling.)
 
(One intermediate revision by the same user not shown)
Line 1:
== SQL string concatenation ==
SQL has string concatentation using infix || in the style of PL/1 but does not have variables as such.
 
SQL has string concatentationconcatenation using infix || in the style of PL/1 but does not have variables as such.
 
<lang sql>create table foo ( a varchar(10),b varchar(10));
Line 8 ⟶ 10:
::: Stick with the ANSI standard; the deviants can have their own entries (or at least their own sub-solution). –[[User:Dkf|Donal Fellows]] 23:40, 16 November 2010 (UTC)
 
 
== RexxREXX || ==
 
|| may be piping in some other language(s), In Rexx it's called concatenate!