Book Contents

Book Index

Next Topic

Home

Identifiers

Identifiers (names) of objects such as tables, projections, users, etc., can be up to 63 bytes in length.

Unquoted Identifiers

Unquoted SQL identifiers must begin with one of the following:

Subsequent characters in an identifier can be:

Quoted Identifiers

Identifiers enclosed in double quote (") characters can contain any character other than a double quote itself. (To include a double quote, write two double quotes.) This allows you to use names that would otherwise be invalid, such as ones that include only numeric characters ("123" for example) or contain space characters, punctuation marks, keywords, etc.

Quoted identifiers are case-sensitive. Thus, the quoted identifiers "ABC", "ABc", and "aBc" are distinct.