Navigation:  NexusDB Guide > SQL Reference > SQL Functions > Numeric Value Functions >

Position Expression

Previous pageReturn to chapter overviewNext page

NexusDB V3 Manual

Position Expression

button_main button_prev button_next

NexusDB Manual V3 > SQL Reference > SQL Functions > Numeric Value Functions

Syntax

 

<position expression> ::=

<string position expression> ::=

 

 

 

POSITION ( <string value expression> IN <string value expression>

[ USING <char length units> ] )

<blob position expression> ::=

 

 

 

POSITION ( <blob value expression> IN <blob value expression> )

<char length units> ::=

 

 

|

 

CHARACTERS

OCTETS

 

Notes

 

§

The POSITION function returns the ordinal position of the first occurrence of the first string expression within the second string expression.

 

§

The USING clause shall only be specified if the IN expression is a UNICODE character string. CHARACTERS, which is implicit if the clause is omitted, returns the ordinal character position, while OCTETS returns the ordinal byte position.

 

§

The POSITION function returns the ordinal byte position when the IN expression is a binary string.

 

§

If the substring is not found within the second string, then 0 is returned.

 

§

The data type of the result is INTEGER.

 

§

If either of the arguments are null, then the result is null.

 

 

Examples

 

1) The following example lists all courses starting with 'C':

 

      SELECT *

      FROM courses

      WHERE POSITION( 'C' IN courseName ) = 1

 

2)

In the following example, the POSITION function returns 3 with the CHARACTERS char length unit implicitly specified:

 

      SELECT POSITION( 'a' IN N'Grace' )

      FROM #dummy

 

3)

In the following example, the POSITION function returns 6 with the OCTETS char length unit explicitly specified:

 

      SELECT POSITION( 'a' IN N'Grace'  USING OCTETS )

      FROM #dummy

 

 


Conformance

 

SQL:2003 standard

-

Core SQL

 

© Nexus Database Systems Pty Ltd.

nexus_logo