DataEase

1 program Added 2026-03-10T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: DataEase Query Language, DQL
Provenance: commit c2fe78ddfd · authored 2026-03-10T14:39:02+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

RDQL (0.49)DQL (0.43)QUEL (0.41)Kusto Query Language (0.41)fq (0.40)

LLM-contributed programs

Sales Report by Region

Provenance: commit c2fe78ddfd · authored 2026-03-10T14:39:02+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.dql · added: 2026-03-10T12:00:00Z
; DataEase Query Language (DQL) example: Sales Report by Region
; Lists all orders placed in 2023 grouped by region with totals

for orders
    with
        order-date >= "01-01-2023" and
        order-date <= "12-31-2023" and
        status = "Completed"
    in region order ;
    define
        line-total = quantity * unit-price
    list
        region ;
        customer-name ;
        order-date ;
        product-name ;
        quantity ;
        unit-price ;
        line-total
    count
    sum line-total
end

Contribute — propose a file extension

Tell us where to find evidence about DataEase (mapped to pl/dataease). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/DataEase/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← DataComs DataFlex →