11. Report-Writer Expressions and Formats : Recognition of Delimited Identifiers : How to Specify Delimited Identifiers : Multiple Delimited Identifiers
 
Share this page                  
Multiple Delimited Identifiers
Separate multiple delimited identifiers on the same line with at least one space, because Ingres perceives two adjacent double quotes ("") as an escaped double quote ("). For example, suppose you specify:
.print "abc""def"
it is interpreted as:
.print abc"def
Separating delimited identifiers with white space prevents confusion. For example, include a space between the delimited identifiers "abc" and "def":
.print "abc" "def"
It is correctly interpreted as:
.print abc def