Difference between revisions of "KEYLOOKUP()"

From Lianjapedia
Jump to: navigation, search
Line 3: Line 3:
  
 
==Syntax==
 
==Syntax==
KEYLOOKUP(<workarea | alias | table>, <"tagname">, <keyExpr>, <valueExpr>)
+
KEYLOOKUP(<workarea | alias | table>, <"indextagname">, <keyExpr>, <valueExpr>)
  
 
==See Also==
 
==See Also==
Line 9: Line 9:
  
 
==Description==
 
==Description==
The KEYLOOKUP() function looks up the specified index <keyExpr> in the index <tagname> of the specified <workarea | alias | table>.  The KEYLOOKUP() function then evaluates the expression <valueExpr>, and returns the value of the <valueExpr> if the <key expression> is found.  The KEYLOOKUP() function returns a null string if the <key expression> is not found.  
+
The KEYLOOKUP() function looks up the specified index <keyExpr> in the index <indextagname> of the specified <workarea | alias | table>.  The KEYLOOKUP() function then evaluates the expression <valueExpr>, and returns the value of the <valueExpr> if the <key expression> is found.  The KEYLOOKUP() function returns a null string if the <key expression> is not found.  
  
 
The current record position in the specified <workarea | alias | table> cursor is not moved so this function can also safely be used in SQL queries.  
 
The current record position in the specified <workarea | alias | table> cursor is not moved so this function can also safely be used in SQL queries.  

Revision as of 08:00, 8 December 2012

Purpose

Function to perform a cross-table lookup

Syntax

KEYLOOKUP(<workarea | alias | table>, <"indextagname">, <keyExpr>, <valueExpr>)

See Also

LOOKUP(), RLOOKUP(), SEEK(), SET RELATION

Description

The KEYLOOKUP() function looks up the specified index <keyExpr> in the index <indextagname> of the specified <workarea | alias | table>. The KEYLOOKUP() function then evaluates the expression <valueExpr>, and returns the value of the <valueExpr> if the <key expression> is found. The KEYLOOKUP() function returns a null string if the <key expression> is not found.

The current record position in the specified <workarea | alias | table> cursor is not moved so this function can also safely be used in SQL queries.

If the specified table is not already open then Lianja will open the table automatically.

This function can be used to dynamically lookup foreign key values in target tables.

It can also be used to lookup NoSQL key/value pairs.

Example

open database southwind
use orders in 0
? keylookup("employees","employeeid",orders.employeeid, employees.lastname)