When SQL Meets Lambda Expressions

0
1χλμ.

A few modern SQL dialects have started introducing lambda expressions

ARRAY types are a part of the ISO/IEC 9075 SQL standard. The standard specifies how to:

  • Construct arrays
  • Nest data into arrays (e.g. by means of aggregation or subqueries)
  • Unnest data from arrays into tables

But it is very unopinionated when it comes to function support. The ISO/IEC 9075-2:2023(E) 6.47 <array value expression> specifies concatenation of arrays, whereas the 6.48 <array value function> section lists a not extremely useful TRIM_ARRAY function, exclusively (using which you can remove the last N elements of an array, something I have yet to encounter a use-case for)

The implementations fare better. Many of them have a ton of useful functions, and since recently , there are a couple of more modern SQL dialects out there who have started experimenting with lambda expressions in SQL, when working with ARRAY types. These dialects include, mostly:

  • ClickHouse
  • Databricks
  • DuckDB
  • Snowflake
  • Trino

Take the ARRAY_FILTER function, for example. With jOOQ you might write something like this, where you apply a filter that keeps only even numbers in an array:

arrayFilter(array(1, 2, 2, 3), e -> e.mod(2).eq(0))

The corresponding jOOQ API is simply:

public static <T> Field<T[]> arrayFilter(
    Field<T[]> array, 
    Function1<? super Field<T>, ? extends Condition> predicate
) { ... }

So, jOOQ can simply map Java (or Kotlin, Scala) lambda expressions to a SQL lambda expression, without any magic. You just construct an expression of the right type, as always with jOOQ.

The result of such an expression might look like this:

+--------------+
| array_filter |
+--------------+
| [ 2, 2 ]     |
+--------------+

In DuckDB, for example, the above is translated to:

array_filter(
  ARRAY[1, 2, 2, 3],
  e -> (e % 2) = 0
)

If the dialect doesn’t support the lambda style syntax, the function can easily be emulated using a subquery that unnests the array, applies a WHERE clause corresponding to the lambda, and collects the results back into an array, e.g. in PostgreSQL:

(
  SELECT coalesce(
    array_agg(e),
    CAST(ARRAY[] AS int[])
  )
  FROM UNNEST(ARRAY[1, 2, 2, 3]) t (e)
  WHERE mod(e, 2) = 0
)

This works just the same way when the array isn’t just a static array literal, but an array expression, e.g. TABLE.ARRAY_FIELD.

Related functions include:

Προωθημένο
Προωθημένο
Προωθημένο
Προωθημένο
Προωθημένο
Αναζήτηση
Προωθημένο
Virtuala FansOnly
CDN FREE
Cloud Convert
Κατηγορίες
Διαβάζω περισσότερα
Art
Créer une forêt réaliste dans Blender : le guide ultime pour les amateurs de 3D
Blender, tutorial 3D, forêt réaliste, Yeho Studios, assets gratuits, scène nature, débutants...
από Romane Alice 2025-08-04 03:49:35 1 2χλμ.
Food
Flavored Spirits Market Share, Segmentation of Top Companies, and Forecast 2032
Flavored Spirits Market Overview Flavored Spirits Market Share Expected to Grow at a CAGR of...
από Cassie Tyler 2025-06-04 11:26:48 0 2χλμ.
Παιχνίδια
Introducing the Machine Payments Protocol: A New Standard for Seamless Transactions
machine payments protocol, MPP, Tempo, Stripe, PaymentIntents API, internet-native payments, open...
από Thea Lara 2026-03-26 04:05:24 0 221
Sports
Top Mistakes New Users Make on Mahadev Book and How to Avoid Them
Online betting platforms are growing rapidly in India, especially during cricket tournaments like...
από BagivI KadaN 2026-03-27 18:50:23 0 86
Health
Advances in Reproductive Technologies Driving the Veterinary Artificial Insemination Market
A new growth forecast report titled Veterinary Artificial Insemination Market Size, Share,...
από Emma Verghise 2026-02-09 14:40:38 0 64
Προωθημένο
Virtuala https://virtuala.site