More About INNERJOIN

You can use the INNERJOIN operator to join “left” and “right” documents based on a common numerical field. INNERJOIN only returns matching documents from the “left side” of the query.

For example, if you have order and customer documents that both contain a customer_id join key field, you can perform queries such as:

order_price>42 INNERJOIN/customer_id (customer_name:john AND customer_firstname:doe)

This returns all orders (the left-side documents) for John Doe that had an order price greater than 42.

Important: INNERJOIN queries have a significant impact on search performance.

This page discusses:

See Also
The Different Types of Search in UQL
Reserved Characters in UQL
Operands
Operators by Priority
NETVIBES Low-Level Query Language (ELLQL)