This is an old revision of the document!


DRAFT

Omnidex SQL Function: TRIM

Description

The TRIM function removes any leading and/or trailing pad characters from a string. The pad character is a single character and defaults to a space character.

Syntax

TRIM([<LEADING | TRAILING | BOTH>]['character'][FROM] column | 'string')

LEADING | TRAILING | BOTH

Optional. Specifies if the leading, trailing or both leading and trailing pad characters will be removed from a string. If omitted, the FROM keyword must also be omitted. BOTH is the default.

'character'

Optional. Specify the pad character that is to be removed. If omitted, white space will be removed.

FROM

DO NOT USE if LEADING, TRAILING, or BOTH keyword was NOT specified.

string

Required. The string that will be “trimmed”.

Examples

Example 1

select company, trim(contact) from customers where company='systems'

Example 2

select company, trim(LEADING FROM contact) from customers where company='systems'

Example 3

select company, trim(TRAILING ',' FROM contact) from customers where company='systems'

 
Back to top
dev/sql/functions/trim.1278061355.txt.gz · Last modified: 2016/06/28 22:38 (external edit)