-
+
Server Configuration
mylib.so> (or on some platforms,
mylib.sl>) to be preloaded from the installation's
standard library directory.
- All library names are converted to lowercase unless double-quoted.
+ All library names are converted to lower case unless double-quoted.
If more than one library is to be loaded, separate their names
with commas. This parameter can only be set at server start.
This variable specifies one or more shared libraries that are
to be preloaded at connection start. If more than one library
is to be loaded, separate their names with commas. All library
- names are converted to lowercase unless double-quoted.
+ names are converted to lower case unless double-quoted.
This parameter cannot be changed after the start of a particular
session.
-
+
Functions and Operators
|
text
- Convert string to uppercase
+ Convert string to upper case
upper('tom')
TOM
text
- Convert the first letter of each word to uppercase and the
- rest to lowercase. Words are sequences of alphanumeric
+ Convert the first letter of each word to upper case and the
+ rest to lower case. Words are sequences of alphanumeric
characters separated by non-alphanumeric characters.
initcap('hi THOMAS')
|
MONTH
- full uppercase month name (blank-padded to 9 chars)
+ full upper case month name (blank-padded to 9 chars)
|
Month
|
month
- full lowercase month name (blank-padded to 9 chars)
+ full lower case month name (blank-padded to 9 chars)
|
MON
- abbreviated uppercase month name (3 chars in English, localized lengths vary)
+ abbreviated upper case month name (3 chars in English, localized lengths vary)
|
Mon
|
mon
- abbreviated lowercase month name (3 chars in English, localized lengths vary)
+ abbreviated lower case month name (3 chars in English, localized lengths vary)
|
MM
|
DAY
- full uppercase day name (blank-padded to 9 chars)
+ full upper case day name (blank-padded to 9 chars)
|
Day
|
day
- full lowercase day name (blank-padded to 9 chars)
+ full lower case day name (blank-padded to 9 chars)
|
DY
- abbreviated uppercase day name (3 chars in English, localized lengths vary)
+ abbreviated upper case day name (3 chars in English, localized lengths vary)
|
Dy
|
dy
- abbreviated lowercase day name (3 chars in English, localized lengths vary)
+ abbreviated lower case day name (3 chars in English, localized lengths vary)
|
DDD
|
RM
- month in uppercase Roman numerals (I-XII; I=January)
+ month in upper case Roman numerals (I-XII; I=January)
|
rm
- month in lowercase Roman numerals (i-xii; i=January)
+ month in lower case Roman numerals (i-xii; i=January)
|
TZ
- uppercase time-zone name
+ upper case time-zone name
|
tz
- lowercase time-zone name
+ lower case time-zone name
|
TH suffix
- uppercase ordinal number suffix
+ upper case ordinal number suffix
DDTH, e.g., 12TH>
|
th suffix
- lowercase ordinal number suffix
+ lower case ordinal number suffix
DDth, e.g., 12th>
|
|
TH suffix
- uppercase ordinal number suffix
+ upper case ordinal number suffix
999TH
|
th suffix
- lowercase ordinal number suffix
+ lower case ordinal number suffix
999th
converter will do the work for you. Just write the sequence name enclosed
in single quotes so that it looks like a literal constant. For
compatibility with the handling of ordinary
-
SQL names, the string will be converted to lowercase
+
SQL names, the string will be converted to lower
case
unless it contains double quotes around the sequence name. Thus:
nextval('foo') operates on sequence foo>
with the column. The first input parameter is a table name with
optional schema, and the second parameter is a column name. Because
the first parameter is potentially a schema and table, it is not treated
- as a double-quoted identifier, meaning it is lowercased by default,
+ as a double-quoted identifier, meaning it is lower cased by default,
while the second parameter, being just a column name, is treated as
double-quoted and has its case preserved. The function returns a value
suitably formatted for passing to sequence functions (see
-
+
PostgreSQL>]]>
by GSSAPI).
postgres is the default. There's usually no
reason to change this unless you have a Windows environment,
- in which case it must be set to uppercase
+ in which case it must be set to upper case
POSTGRES.
-
+
This is useful when a user-supplied identifier might contain
special characters that would otherwise not be interpreted as part
of the identifier by the SQL parser, or when the identifier might
- contain uppercase characters whose case should be preserved.
+ contain upper case characters whose case should be preserved.
-
+
pgcrypto
of different hashing algorithms.
The table shows how much time it would take to try all
combinations of characters in an 8-character password, assuming
- that the password contains either only lowercase letters, or
+ that the password contains either only lower case letters, or
upper- and lower-case letters and numbers.
In the crypt-bf entries, the number after a slash is
the
iter_count parameter of
-
+
PL/pgSQL - SQL Procedural Language
All key words are case-insensitive.
- Identifiers are implicitly converted to lowercase
+ Identifiers are implicitly converted to lower case
unless double-quoted, just as they are in ordinary SQL commands.