LATEST ON keyword

Retrieves the latest entry by timestamp for a given key or combination of keys, for scenarios where multiple time series are stored in the same table.

Syntax#

Flow chart showing the syntax of the LATEST ON keyword

where:

  • columnName used in the LATEST ON part of the clause is a TIMESTAMP column.
  • columnName list used in the PARTITION BY part of the clause is a list of columns of one of the following types: SYMBOL, STRING, BOOLEAN, SHORT, INT, LONG, LONG256, CHAR.

Description#

LATEST ON is used as part of a SELECT statement for returning the most recent records per unique time series identified by the PARTITION BY column values. This function requires a designated timestamp.

note

To use LATEST ON, a timestamp column used in the LATEST ON part needs to be specified as a designated timestamp. More information can be found in the designated timestamp page for specifying this at table creation or at query time.

To illustrate how LATEST ON is intended to be used, consider the trips table in the QuestDB demo instance. This table has a payment_type column as SYMBOL type which specifies the method of payment per trip. We can find the most recent trip for each unique method of payment with the following query:

SELECT payment_type, pickup_datetime, trip_distance
FROM trips
LATEST ON pickup_datetime PARTITION BY payment_type;
payment_typepickup_datetimetrip_distance
Dispute2014-12-31T23:55:27.000000Z1.2
Voided2019-06-27T17:56:45.000000Z1.9
Unknown2019-06-30T23:57:42.000000Z3.9
No Charge2019-06-30T23:59:30.000000Z5.2
Cash2019-06-30T23:59:54.000000Z2
Card2019-06-30T23:59:56.000000Z1

The above query returns the latest value within each time series stored in the table. Those time series are determined based on the values in the column(s) specified in the PARTITION BY part of the LATEST ON clause. In our example those time series are represented by different payment types. Then the column used in the LATEST ON part of the clause stands for the designated timestamp column for the table. This allows the database to find the latest value within each time series.

The below sections will demonstrate other ways to use the LATEST ON clause.

You can also write this query with the old syntax:

SELECT payment_type, pickup_datetime, trip_distance
FROM trips
LATEST BY payment_type;
note

The old LATEST BY syntax is deprecated and will be removed soon. While it's still supported by the database, you should use the new LATEST ON PARTITION BY syntax in your applications. There are two key requirements when using the new syntax:

  1. A timestamp column must always be specified
  2. LATEST ON has to follow the WHERE clause. In the old syntax, it was vice versa.

Examples#

For the next examples, we can create a table called balances with the following SQL:

CREATE TABLE balances (
cust_id SYMBOL,
balance_ccy SYMBOL,
balance DOUBLE,
ts TIMESTAMP
) TIMESTAMP(ts) PARTITION BY DAY;
insert into balances values ('1', 'USD', 600.5, '2020-04-21T16:03:43.504432Z');
insert into balances values ('2', 'USD', 950, '2020-04-21T16:08:34.404665Z');
insert into balances values ('2', 'EUR', 780.2, '2020-04-21T16:11:22.704665Z');
insert into balances values ('1', 'USD', 1500, '2020-04-21T16:11:32.904234Z');
insert into balances values ('1', 'EUR', 650.5, '2020-04-22T16:11:32.904234Z');
insert into balances values ('2', 'USD', 900.75, '2020-04-22T16:12:43.504432Z');
insert into balances values ('2', 'EUR', 880.2, '2020-04-22T16:18:34.404665Z');
insert into balances values ('1', 'USD', 330.5, '2020-04-22T16:20:14.404997Z');

This provides us with a table with the following content:

cust_idbalance_ccybalancets
1USD600.52020-04-21T16:01:22.104234Z
2USD9502020-04-21T16:03:43.504432Z
2EUR780.22020-04-21T16:08:34.404665Z
1USD15002020-04-21T16:11:22.704665Z
1EUR650.52020-04-22T16:11:32.904234Z
2USD900.752020-04-22T16:12:43.504432Z
2EUR880.22020-04-22T16:18:34.404665Z
1USD330.52020-04-22T16:20:14.404997Z

Single column#

When LATEST ON is provided a single column of the type SYMBOL, the query will end after all distinct symbol values are found.

Latest records by customer ID
SELECT * FROM balances
LATEST ON ts PARTITION BY cust_id;

The query returns two rows with the most recent records per unique cust_id value:

cust_idbalance_ccybalancets
2EUR880.22020-04-22T16:18:34.404665Z
1USD330.52020-04-22T16:20:14.404997Z

Multiple columns#

When multiple columns are specified in LATEST ON queries, the returned results are the most recent unique combinations of the column values. This example query returns LATEST ON customer ID and balance currency:

Latest balance by customer and currency
SELECT cust_id, balance_ccy, balance
FROM balances
LATEST ON ts PARTITION BY cust_id, balance_ccy;

The results return the most recent records for each unique combination of cust_id and balance_ccy.

cust_idbalance_ccybalanceinactivets
1EUR650.5FALSE2020-04-22T16:11:32.904234Z
2USD900.75FALSE2020-04-22T16:12:43.504432Z
2EUR880.2FALSE2020-04-22T16:18:34.404665Z
1USD330.5FALSE2020-04-22T16:20:14.404997Z
info

For a single SYMBOL column, QuestDB will know all distinct values upfront and stop scanning table contents once the latest entry has been found for each distinct symbol value. When LATEST ON is provided multiple columns, QuestDB has to scan the entire table to find distinct combinations of column values. Although scanning is fast, performance will degrade on hundreds of millions of records. If there are multiple columns in the LATEST ON clause, this will result in a full table scan.

LATEST ON over sub-query#

For this example, we can create another table called unordered_balances with the following SQL:

CREATE TABLE unordered_balances (
cust_id SYMBOL,
balance_ccy SYMBOL,
balance DOUBLE,
ts TIMESTAMP
);
insert into unordered_balances values ('2', 'USD', 950, '2020-04-21T16:08:34.404665Z');
insert into unordered_balances values ('1', 'USD', 330.5, '2020-04-22T16:20:14.404997Z');
insert into unordered_balances values ('2', 'USD', 900.75, '2020-04-22T16:12:43.504432Z');
insert into unordered_balances values ('1', 'USD', 1500, '2020-04-21T16:11:32.904234Z');
insert into unordered_balances values ('1', 'USD', 600.5, '2020-04-21T16:03:43.504432Z');
insert into unordered_balances values ('1', 'EUR', 650.5, '2020-04-22T16:11:32.904234Z');
insert into unordered_balances values ('2', 'EUR', 880.2, '2020-04-22T16:18:34.404665Z');
insert into unordered_balances values ('2', 'EUR', 780.2, '2020-04-21T16:11:22.704665Z');

Note that this table doesn't have a designated timestamp column and also contains time series that are unordered by ts column.

Due to the absent designated timestamp column, we can't use LATEST ON directly on this table, but it's possible to use LATEST ON over a sub-query:

Latest balance by customer over unordered data
(SELECT * FROM unordered_balances)
LATEST ON ts PARTITION BY cust_id;

Just like with the balances table, the query returns two rows with the most recent records per unique cust_id value:

cust_idbalance_ccybalancets
2EUR880.22020-04-22T16:18:34.404665Z
1USD330.52020-04-22T16:20:14.404997Z

Execution order#

The following queries illustrate how to change the execution order in a query by using brackets.

WHERE first#

SELECT * FROM balances
WHERE balance > 800
LATEST ON ts PARTITION BY cust_id;

This query executes WHERE before LATEST ON and returns the most recent balance which is above 800. The execution order is as follows:

  • filter out all balances below 800
  • find the latest balance by cust_id
cust_idbalance_ccybalancets
1USD15002020-04-22T16:11:22.704665Z
2EUR880.22020-04-22T16:18:34.404665Z

LATEST ON first#

(SELECT * FROM balances LATEST ON ts PARTITION BY cust_id) --note the brackets
WHERE balance > 800;

This query executes LATEST ON before WHERE and returns the most recent records, then filters out those below 800. The steps are:

  1. Find the latest balances by customer ID.
  2. Filter out balances below 800. Since the latest balance for customer 1 is equal to 330.5, it is filtered out in this step.
cust_idbalance_ccybalanceinactivets
2EUR880.2FALSE2020-04-22T16:18:34.404665Z

Combination#

It's possible to combine a time-based filter with the balance filter from the previous example to query the latest values for the 2020-04-21 date and filter out those below 800.

(balances WHERE ts in '2020-04-21' LATEST ON ts PARTITION BY cust_id)
WHERE balance > 800;

Since QuestDB allows you to omit the SELECT * FROM part of the query, we omitted it to keep the query compact.

Such a combination is very powerful since it allows you to find the latest values for a time-slice of the data and then apply a filter to them in a single query.