---
title: "Understanding the Luminesce SQL query syntax"
slug: "understanding-the-luminesce-sql-query-syntax"
tags: ["luminesce ", "sql"]
updated: 2026-01-14T17:41:09Z
published: 2026-01-14T17:41:09Z
canonical: "support.lusid.com/understanding-the-luminesce-sql-query-syntax"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://support.lusid.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Understanding the Luminesce SQL query syntax

Luminesce SQL queries are written in the SQL dialect of [SQLite](https://www.sqlite.org/lang.html), with the syntactical extensions and limitations described below. [See which tools are available to write queries](/v1/docs/what-tools-are-available-to-write-luminesce-queries).

Note a query can be written either for a [data provider or a direct provider](/v1/docs/what-are-a-data-provider-and-a-direct-provider), and there are some syntactical differences between them. In particular, direct providers have an [arbitrary syntax](/v1/docs/what-are-a-data-provider-and-a-direct-provider#direct-provider) that may differ for each.

## Summary

Luminesce SQL supports most of the syntax of the [SQLite SELECT statement](https://www.sqlite.org/lang_select.html). It does not support data definition language (DDL) syntax for creating or modifying database objects.

- Common table expressions (CTE) are not supported in Luminesce `SELECT` statements but a [re-usable variable syntax](/v1/docs/understanding-the-luminesce-sql-query-syntax#variables) is available instead.
- `TYPES` statements can be used before Luminesce `SELECT` statements to force [type conversion](/v1/docs/understanding-the-luminesce-sql-query-syntax#type-conversion) on columns.
- `FOR-EACH` loops can be emulated using [APPLY statements](/v1/docs/understanding-the-luminesce-sql-query-syntax#foreach-loops).
- Most types of [JOIN clause](/v1/docs/understanding-the-luminesce-sql-query-syntax#join-clauses) are supported.
- A `WAIT` modifier is available to [pause query execution](/v1/docs/understanding-the-luminesce-sql-query-syntax#pausing-query-execution-using-wait).
- A number of [common SQL functions](/v1/docs/supported-functions-in-luminesce-sql-queries) are supported, and we've supplemented these with sets of [custom functions](/v1/docs/supported-functions-in-luminesce-sql-queries#general-custom-functions) and [statistical functions](/v1/docs/supported-functions-in-luminesce-sql-queries#statistical-custom-functions).
- A number of [PRAGMA statements](/v1/docs/understanding-the-luminesce-sql-query-syntax#pragmas) specific to Luminesce are supported.
- A number of ways to [convert to and from JSON](/v1/docs/understanding-the-luminesce-sql-query-syntax#converting-to-and-from-json) are supported.
- [Parameterised queries](/v1/docs/understanding-the-luminesce-sql-query-syntax#parameterised-queries) can be run using `:&lt;unique-name&gt;:&lt;default-value&gt;`.
- Dates must be encapsulated in `#` rather than `'` characters, so for example `#2023-11-15 15:59:59#` (though other date formats [can also be understood](https://www.sqlite.org/quirks.html#no_separate_datetime_datatype)).
- Strings must be encapsulated in `'` rather than `"` characters, so for example `PortfolioScope = 'Finbourne-Examples'`. Note SQLite interprets a column name encapsulated in `"` characters as a string literal if it doesn't match a valid column name. For this reason, we recommend encapsulating column names in `[]` characters. [Read more on this in the SQLite documentation.](https://www.sqlite.org/quirks.html#double_quoted_string_literals_are_accepted)
- Multiple lines can be commented out using `/*` and `*/` characters at the beginning and end respectively.

[See the full list of valid keywords](/v1/docs/luminesce-sql-keywords) (both inherited from SQLite and proprietary to FINBOURNE).

| **SELECT statement examples** | **Explanation** |
| --- | --- |
| `select * from Some.Provider` | Selects all the columns from `Some.Provider` |
| `select x, y from Some.Provider` | Selects the X and Y columns |
| `select * (except x, y) from Some.Provider` | Selects all the columns except X and Y. Can use the `-` character in place of `except` |
| `select ^ from Some.Provider` | Selects the main columns (those considered most important by the provider author) |
| `select ^ (except x, y) from Some.Provider` | Selects the main columns except X and Y |
| `select * from Some.Provider limit 5` | Returns only the first 5 records |

For a `Some.Provider` that is authored by FINBOURNE, the fields (columns) available to return or filter can be determined by running the following query:

```sql
select FieldName, DataType, IsMain, IsPrimaryKey, SampleValues, Description
        from Sys.Field
        where TableName = 'Some.Provider' and FieldType = 'Column';
```

## Parameters

Data providers may have parameters that can be used to filter a Luminesce query as part of a standard `WHERE` clause.

> **Note:** Direct providers do not support parameters.

You must assign values to parameters unambiguously (not under an `OR` clause), and only with the `=` operator. For example:

```sql
select * from Some.Provider where SomeParameter = 12
```

For a `Some.Provider` that is authored by FINBOURNE, available parameters can be determined by running the following query:

```sql
select FieldName, DataType, ParamDefaultValue, Description
        from Sys.Field
        where TableName = 'Some.Provider' and FieldType = 'Parameter';
```

## Variables

You can use variables to create and populate arbitrary tables of data that can then be used as part of a Luminesce query for either a data provider or a direct provider.

This is similar to a combination of the standard SQL `CREATE TABLE...INSERT INTO` statements.

| **Variable type** | **Explanation** | **Examples** |
| --- | --- | --- |
| `@tablevariable` | Stores a table of any size | `@abc = select TableName, FieldName from Sys.Field order by 1, 2;` |
| `@@scalarvariable` | Only stores a scalar value (that is, the `SELECT` statement must resolve to exactly one column and one row of data) | `@@abc = select strftime('%Y%m%d', 'now');` `@@portfolioscope = select'Finbourne-Examples';` |

## Type conversion

You can use the `TYPES` statement before any `SELECT` statement in a Luminesce query to force type conversion on columns. Note that this overrides the default SQLite behaviour of [flexible typing](https://www.sqlite.org/quirks.html#flexible_typing).

Valid types are `BIGINT`, `INT`, `DOUBLE`, `DECIMAL`, `BOOLEAN`, `TEXT`, `DATE`, `TIME` and `DATETIME`.

| **Example** | **Explanation** |
| --- | --- |
| `TYPES bigint, int, text, boolean; SELECT 1, 2, 3, 4;` | Returns columns as Int64, Int32, String and Boolean types respectively. |
| `TYPES bigint, int, , boolean; SELECT 1, 2, 3, 4;` | Returns columns 1, 2 and 4 as Int64, Int32 and Boolean types respectively, leaving column 3 to be inferred in the normal way. |
| `TYPES text; SELECT 1, 2, 3, 4;` | Returns column 1 as text and leaves all the other columns to be inferred in the normal way. |
| `TYPES double; SELECT SUM(Cost) as X FROM Products;` | Returns the result of the aggregate function as a double. |
| `@data = TYPES text; values ('018802','NR',#2000-07-13T00:00:00Z#,'LegalEntity','moodysLongRating');` | Returns column 1 as text, leaves all the other columns to be inferred in the normal way, and assigns the result to a [table variable](/v1/docs/understanding-the-luminesce-sql-query-syntax#variables). |

## FOR-EACH loops

You can use the `CROSS APPLY` or `OUTER APPLY` statement to emulate a `FOR-EACH` loop. This is useful to execute a Luminesce query in parallel on a range of parameter inputs.

| **Statement** | **Explanation** |
| --- | --- |
| `CROSS APPLY` | Similar to `INNER JOIN`, in that only records that have matching values on both sides are returned. |
| `OUTER APPLY` | Similar to `LEFT OUTER JOIN`, in that all records on the left side are returned, even when there are no matching records on the right side. |

For example, the following query uses `OUTER APPLY` with the [Lusid.Portfolio.Holding](/v1/docs/lusidportfolioholding) provider to generate a holdings report for each of the last 3 days:

```sql
@days = select date('now', '-' || Value || ' days') as dt
        from Tools.[Range] where number = 3 -- go back N days from today
        and Start = 0; -- subtract 0 days, to include today (1 would exclude today)

        select d.dt, results.* -- outer query
        from @days as d
        outer apply (
        select h.^ -- inner query
        from lusid.portfolio.holding as h
        where h.EffectiveAt = d.dt
        and h.PortfolioScope = 'EMEA'
        and h.PortfolioCode = 'Equities'
        ) as results ;
```

Note the following:

- Tables used in the inner or outer queries must be aliased, so for example `as d` in the outer query above and `as h` in the inner query.
- Columns used in the `where` clause of the inner query must be explicitly selected in the outer query, so for example `d.dt` in the inner must be referenced as `select d.dt` in the outer. Referencing as `select d.*` would result in an error.
- There must be whitespace before the closing `;` character, for example `as results ;`
- [Variables](/v1/docs/understanding-the-luminesce-sql-query-syntax#variables) (whether `@table` or `@@scalar`) are not expanded in the inner query.
- There is no `ON` clause for either `CROSS APPLY` or `OUTER APPLY`.

## JOIN clauses

Luminesce supports the following JOIN clauses: `INNER JOIN`, `LEFT (OUTER) JOIN`, `CROSS JOIN`, `FULL (OUTER) JOIN`.

Luminesce does not currently support `RIGHT (OUTER) JOIN`.

## Pausing query execution using WAIT

You can use the `WAIT` modifier immediately after any `select * from x` statement in a query to wait for code to execute before continuing.

For example, if you [create a custom view](/v1/docs/using-sysadminsetupview-to-create-custom-views) you may want to wait 5 seconds for it to appear in the Luminesce catalog before querying it:

```sql
@model_portfolios_view = use Sys.Admin.SetupView
        --provider=Test.Example.TestHoldings
        ----
        select PortfolioScope, PortfolioCode, BaseCurrency
        from
        Lusid.Portfolio
        where
        PortfolioType = 'Reference'
        enduse;
        --- Create the custom view and then wait 5 seconds
        @result = select * from @model_portfolios_view wait 5;
        --- Query the custom view, having waited for Luminesce to register it
        select * from Test.Example.Testholdings limit 1;
```

## PRAGMAs

You can use one or more of the PRAGMA statements in the following table at any point in a query to override default Luminesce settings for that query. For example, to allow a query to run for 30 minutes before timing out, specify:

```sql
pragma TimeoutSec = 1800;
```

| **PRAGMA** | **Explanation** |
| --- | --- |
| `DryRun = True \| False` | When `True`, parses the query, verifies access to provider(s) and, where possible, returns dummy data so you can examine the shape. However, does not execute the query, so (for example) write providers do not modify data. Designed for use in CI/CD pipelines where there may be downstream implications. |
| `MaxApplyParallelization = &lt;number&gt;` | Defines the maximum number of parallel provider calls within a [CROSS APPLY or OUTER APPLY](/v1/docs/understanding-the-luminesce-sql-query-syntax#foreach-loops) statement in a query. Defaults to 5. |
| `AutoIndexForJoins = True \| False` | Defaults to `False`. When `True`, auto-creates indexes on the returns of variable calculations and provider results based on join clauses that use them. This can potentially optimise any join, but improvements can be seen most notably on `FULL [OUTER] JOINS` with data of a moderate size. Note: - Currently, this option can only be enabled on the entire query, not on individual joins. - Use of this PRAGMA may reduce performance in some cases. |
| `MaxParallelVariableCalculations = &lt;number&gt;` | Defines the maximum number of variable calculations that may be performed in a query. Note if you experience a `"database is locked"` error, adding `pragma MaxParallelVariableCalculations = 1` to your query may help to resolve the issue. |
| `ProviderRetryNonResponsiveAttempts = &lt;number&gt;` | Specifies the number of times to retry a provider if it is determined to be non-responsive. Defaults to 1. |
| `TimeoutSec = &lt;seconds&gt;` | Specifies a number of seconds to wait before a query times out. |
| `QueryName = &lt;name&gt;` | Names a query. |
| `TypeDeterminationRowCount = &lt;rows&gt;` | Specifies the number of rows to use to determine the data [type](/v1/docs/understanding-the-luminesce-sql-query-syntax#type-conversion) on returned data sets (defaults to 500). Note that for [custom views](/v1/docs/using-sysadminsetupview-to-create-custom-views) it is better to prefer the `~&lt;DataType&gt;` syntax. |
| `WebApiCacheForSeconds = &lt;seconds&gt;` | For use with the Luminesce `/api/SqlBackground/*` REST APIs in the [Sql Background Execution](https://www.lusid.com/honeycomb/swagger/index.html) collection. Re-uses the results from a previous character-identical query for up to the number of seconds when run by the same user. This must be specified on the 1st and 2nd+ usages of the query. |
| `QueryDiagnostics = &lt;flag&gt; [, &lt;flag&gt;...]` | Specifies flags that can be given to the query coordinator to perform during execution for additional diagnostics. The following flags can be specified: - `TableVariables` dumps the column structure and first few rows of every [table variable](/v1/docs/understanding-the-luminesce-sql-query-syntax#variables) that requires calculation immediately after it is calculated. - `ScalarVariables` dumps the value of every [scalar variable](/v1/docs/understanding-the-luminesce-sql-query-syntax#variables) that requires calculation immediately after it is calculated. - `DependencyTree` outputs the dependency tree within the query. - `All` performs all possible additional diagnostics which are enabled through using this PRAGMA. |
| `MaxJoinFilterKeys = 500000` | Overrides the default limit of 100,000 filter rows passed down to the underlying engine before scanning the table instead. |

## Converting to and from JSON

Luminesce supports the functions exposed by the [JSON1 extension library](https://www.sqlite.org/json1.html).

You can use the dedicated [Tools.JsonExpand](/v1/docs/toolsjsonexpand) provider to emulate the SQLite `json.tree` function and convert a JSON document into a table of data objects.

To convert a table of data objects into JSON, you can use the SQLite `json_group_array` and `json_object` functions. This is required when using a provider that has a field with a `Json` suffix, for example the `PeriodsJson` field in the [Lusid.Instrument.SimpleCashFlowLoan.Writer](/v1/docs/lusidinstrumenttypewriter-providers) provider. The `PeriodsJson` field is a text field that expects a flattened array of JSON objects as a value, each representing a loan period with `PaymentDate`, `Notional` and `InterestAmount` fields. For example:

```sql
@periods = values
        (#2022-03-01#, 100, 5),
        (#2022-06-01#, 90, 4),
        (#2022-09-01#, 50, 4.5),
        (#2022-12-01#, 30, 2.0);

        @@periodsArray = select
        json_group_array(
        json_object(
        'PaymentDate', column1,
        'Notional', column2,
        'InterestAmount', column3
        )
        ) from @periods;

        @table_of_data = select 'MySimpleCashFlowLoan' as DisplayName, 'SimpleCashFlowLoan' as ClientInternal,
        #2022-01-01# as StartDate, #2023-01-01# as MaturityDate, 'GBP' as DomCcy, @@periodsArray as PeriodsJson;

        select * from Lusid.Instrument.SimpleCashFlowLoan.Writer where ToWrite = @table_of_data;
```

## Parameterised queries

[Most tools](/v1/docs/what-tools-are-available-to-write-luminesce-queries) you can use to run Luminesce queries support parameterisation using the syntax:

- For a single user-specified value: `:&lt;unique-name&gt;:&lt;default-value&gt;`
- For a fixed list of allowed values: `:&lt;unique-name&gt;:{&lt;value-1&gt;, &lt;value-2&gt; [, &lt;value-3&gt;...]}`
- For a list of allowed values or a user-specified value (note the `*`): `:&lt;unique-name&gt;:{&lt;value-1&gt;, &lt;value-2&gt; [, &lt;value-3&gt;...] *}`

Consider the following example. Note if you want spaces in the name, encapsulate it in square brackets:

```sql
select * from Lusid.Portfolio.Txn
        where PortfolioScope = 'Finbourne-Examples'
        and PortfolioCode = :[Choose fund]:{'UK-Equities','US-Equities'} #The user must choose one of these values
        and ShowNonActive = :[Show everything]:True
        and TransactionDate > :After:#2020-07-01#
        and TotalConsideration > :[For more than]:1000
        and TradeCurrency = :[Trade ccy]:{'GBP','USD','EUR' *} #The user can choose one of these values, or specify their own
```

When this query is run from either the **Data Virtualisation > Query Editor** or **Saved Queries** screen in the LUSID web app, the user is prompted to enter the following values at run time:

![](https://cdn.document360.io/d575ad81-c0ed-4980-bbd1-d59ac5c3de82/Images/Documentation/image(831).png)Note if the tool you use to run a query does not support parameterisation, the default value is used.
