Skip to main content
Version: Java (Groovy)

Strings

String values can be represented in Deephaven query strings by using backticks `.

Syntax

`string`

Usage

Filter

The following example shows a query string used to filter data. This query string returns items in the Value column that are equal to the string `C`.

source = newTable(
stringCol("Value", "A" , "B", "C", "D", "E")
)

result = source.where("Value = `C`")