TIBCO EBX®
Documentation > Developer Guide > SQL in EBX®
Navigation modeDocumentation > Developer Guide > SQL in EBX®

EBX® SQL functions

The table below lists all the EBX® built-in SQL functions, along with their syntax. Some functions may have optional parameters: they are surrounded by square brackets.

Operator syntax

Description and example(s)

FK_AS_STRING('referencedDatasetName', 'referencedTableName', tableRefValue)

Returns the string representation of a tableRef value. See QueryBuilder to know more about dataset registered names

SELECT e.name FROM employee e WHERE FK_AS_STRING('_public', '/root/department', e.department) = '1' :  Smith

SELECT FK_AS_STRING('_public', '/root/department', e.department) FROM employee e WHERE e.name = 'Smith' :  1

Documentation > Developer Guide > SQL in EBX®